mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 11:08:45 +08:00
691 B
691 B
order | title | ||||
---|---|---|---|---|---|
11 |
|
zh-CN
带移除图标的输入框,点击图标删除所有内容。
en-US
Input box with the remove icon, click the icon to delete everything.
import { Input } from 'antd';
import React from 'react';
const { TextArea } = Input;
const onChange = (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => {
console.log(e);
};
const App: React.FC = () => (
<>
<Input placeholder="input with clear icon" allowClear onChange={onChange} />
<br />
<br />
<TextArea placeholder="textarea with clear icon" allowClear onChange={onChange} />
</>
);
export default App;