---
order: 20
debug: true
title:
zh-CN: 后缀图标
en-US: Suffix
---
## zh-CN
基本使用。
## en-US
Basic Usage.
```jsx
import { Select } from 'antd';
import { SmileOutlined, MehOutlined } from '@ant-design/icons';
const smileIcon = ;
const mehIcon = ;
const { Option } = Select;
function handleChange(value) {
console.log(`selected ${value}`);
}
ReactDOM.render(
<>
>,
mountNode,
);
```