You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
import React from 'react';
|
|
import { AudioOutlined } from '@ant-design/icons';
|
|
import { Input, Space } from 'antd';
|
|
|
|
const { Search } = Input;
|
|
|
|
const suffix = (
|
|
<AudioOutlined
|
|
style={{
|
|
fontSize: 16,
|
|
color: '#1890ff',
|
|
}}
|
|
/>
|
|
);
|
|
|
|
const onSearch = (value: string) => console.log(value);
|
|
|
|
const App: React.FC = () => (
|
|
<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
|
|
addonBefore="https://"
|
|
placeholder="input search text"
|
|
allowClear
|
|
onSearch={onSearch}
|
|
style={{ width: 304 }}
|
|
/>
|
|
<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>
|
|
);
|
|
|
|
export default App;
|
|
|