ant-design/components/input/demo/search-input.md
07akioni 2549e8176b
docs: Input, use Space to refactor search-input demo (#28799)
* docs: Input, use Space to refactor search-input demo

* fix

* test: update snap
2021-01-10 21:42:44 +08:00

56 lines
1.1 KiB
Markdown

---
order: 4
title:
zh-CN: 搜索框
en-US: Search box
---
## zh-CN
带有搜索按钮的输入框。
## en-US
Example of creating a search box by grouping a standard input with a search button.
```jsx
import { Input, Space } from 'antd';
import { AudioOutlined } from '@ant-design/icons';
const { Search } = Input;
const suffix = (
<AudioOutlined
style={{
fontSize: 16,
color: '#1890ff',
}}
/>
);
const onSearch = value => console.log(value);
ReactDOM.render(
<Space direction="vertical">
<Search placeholder="input search text" onSearch={onSearch} style={{ width: 200 }} />
<Search placeholder="input search text" allowClear onSearch={onSearch} style={{ width: 200 }} />
<Search placeholder="input search text" onSearch={onSearch} enterButton />
<Search
placeholder="input search text"
allowClear
enterButton="Search"
size="large"
onSearch={onSearch}
/>
<Search
placeholder="input search text"
enterButton="Search"
size="large"
suffix={suffix}
onSearch={onSearch}
/>
</Space>,
mountNode,
);
```