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.

28 lines
591 B

---
order: 1
title:
zh-CN: 多色图标
en-US: Two-tone icon and colorful icon
---
## zh-CN
可以通过设置 `theme` 属性为 `twoTone` 来渲染双色图标,并且可以设置主题色。
## en-US
Specific them property `theme` to `twoTone` to render two-tone icons. You can also set the primary color.
````jsx
import { Icon } from 'antd';
ReactDOM.render(
<div className="icons-list">
<Icon type="smile" theme="twoTone" />
<Icon type="coffee" theme="twoTone" />
6 years ago
<Icon type="check-circle" theme="twoTone" twoToneColor="#eb2f96" />
</div>,
mountNode
);
````