mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
d2c541b4e2
* 🎬 improve Input demo code * style: fix Input.Search height stretched by suffix close #23523 * fix react key warning * ✅ fix demo snapshot
35 lines
583 B
Markdown
35 lines
583 B
Markdown
---
|
|
order: 11
|
|
title:
|
|
zh-CN: 带移除图标
|
|
en-US: With clear icon
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
带移除图标的输入框,点击图标删除所有内容。
|
|
|
|
## en-US
|
|
|
|
Input box with the remove icon, click the icon to delete everything.
|
|
|
|
```jsx
|
|
import { Input } from 'antd';
|
|
|
|
const { TextArea } = Input;
|
|
|
|
const onChange = e => {
|
|
console.log(e);
|
|
};
|
|
|
|
ReactDOM.render(
|
|
<>
|
|
<Input placeholder="input with clear icon" allowClear onChange={onChange} />
|
|
<br />
|
|
<br />
|
|
<TextArea placeholder="textarea with clear icon" allowClear onChange={onChange} />
|
|
</>,
|
|
mountNode,
|
|
);
|
|
```
|