cjd-parkball
Version:
> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用
27 lines (20 loc) • 608 B
Markdown
---
category: 2
title: 多色图标
title_en: 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 'parkball';
ReactDOM.render(
<div className="icons-list">
<Icon type="smile" theme="twoTone" />
<Icon type="heart" theme="twoTone" twoToneColor="#eb2f96" />
<Icon type="check-circle" theme="twoTone" twoToneColor="#52c41a" />
</div>,
mountNode
);
````