--- 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 = ( ); const onSearch = value => console.log(value); ReactDOM.render( , mountNode, ); ```