2018-09-15 00:00:16 +08:00
|
|
|
---
|
|
|
|
order: 20
|
|
|
|
debug: true
|
|
|
|
title:
|
|
|
|
zh-CN: 后缀图标
|
|
|
|
en-US: Suffix
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
基本使用。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Basic Usage.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
2022-05-23 14:37:16 +08:00
|
|
|
import { MehOutlined, SmileOutlined } from '@ant-design/icons';
|
2019-08-13 14:07:17 +08:00
|
|
|
import { Select } from 'antd';
|
2022-05-23 14:37:16 +08:00
|
|
|
import React from 'react';
|
2018-09-15 00:00:16 +08:00
|
|
|
|
2019-11-28 12:34:33 +08:00
|
|
|
const smileIcon = <SmileOutlined />;
|
|
|
|
const mehIcon = <MehOutlined />;
|
2018-09-15 00:00:16 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const handleChange = (value: string) => {
|
2018-09-15 00:00:16 +08:00
|
|
|
console.log(`selected ${value}`);
|
2022-05-19 09:46:26 +08:00
|
|
|
};
|
2018-09-15 00:00:16 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => (
|
2020-03-14 00:04:54 +08:00
|
|
|
<>
|
2019-05-07 14:57:32 +08:00
|
|
|
<Select
|
|
|
|
suffixIcon={smileIcon}
|
|
|
|
defaultValue="lucy"
|
|
|
|
style={{ width: 120 }}
|
|
|
|
onChange={handleChange}
|
2022-09-19 18:01:16 +08:00
|
|
|
options={[
|
|
|
|
{
|
|
|
|
value: 'jack',
|
|
|
|
label: 'Jack',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'lucy',
|
|
|
|
label: 'Lucy',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'disabled',
|
|
|
|
label: 'Disabled',
|
|
|
|
disabled: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'Yiminghe',
|
|
|
|
label: 'yiminghe',
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
<Select
|
|
|
|
suffixIcon={mehIcon}
|
|
|
|
defaultValue="lucy"
|
|
|
|
style={{ width: 120 }}
|
|
|
|
disabled
|
|
|
|
options={[
|
|
|
|
{
|
|
|
|
value: 'lucy',
|
|
|
|
label: 'Lucy',
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
2022-04-03 23:27:45 +08:00
|
|
|
</>
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|