import { SearchOutlined } from '@ant-design/icons'; import React from 'react'; import { Button, Input, Select, Space } from 'antd'; const { Search } = Input; const options = [ { value: 'zhejiang', label: 'Zhejiang', }, { value: 'jiangsu', label: 'Jiangsu', }, ]; const App: React.FC = () => ( } placeholder="large size" /> ); export default App;