--- 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. ```tsx import React from 'react'; import { Input, Space } from 'antd'; import { AudioOutlined } from '@ant-design/icons'; const { Search } = Input; const suffix = ( ); const onSearch = (value: string) => console.log(value); const App: React.FC = () => ( ); export default App; ```