mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 13:08:41 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
575 B
575 B
order | title | ||||
---|---|---|---|---|---|
11 |
|
zh-CN
带移除图标的输入框,点击图标删除所有内容。
en-US
Input box with the remove icon, click the icon to delete everything.
import { Input } from 'antd';
const { TextArea } = Input;
const onChange = e => {
console.log(e);
};
export default () => (
<>
<Input placeholder="input with clear icon" allowClear onChange={onChange} />
<br />
<br />
<TextArea placeholder="textarea with clear icon" allowClear onChange={onChange} />
</>
);