mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-22 17:13:27 +08:00
387 B
387 B
order | title | ||||
---|---|---|---|---|---|
11 |
|
zh-CN
带移除图标的输入框,点击图标删除所有内容。
en-US
Input type of password.
import { Input } from 'antd';
const onChange = e => {
console.log(e);
};
ReactDOM.render(
<Input placeholder="input with clear icon" allowClear onChange={onChange} />,
mountNode,
);