mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-23 09:54:16 +08:00
a80d6b7231
1. allow custom charactor 2. add className and onHoverChange close #4870
559 B
559 B
order | title | ||||
---|---|---|---|---|---|
4 |
|
zh-CN
可以将星星替换为其他字符,比如字母,数字,字体图标甚至中文。
en-US
Replace the default star to other charactor like alphabet, digit, iconfont or even Chinese word.
import { Rate, Icon } from 'antd';
ReactDOM.render(
<div>
<Rate charactor={<Icon type="heart" />} allowHalf />
<br />
<Rate charactor="A" allowHalf style={{ fontSize: 36 }} />
<br />
<Rate charactor="好" allowHalf />
</div>
, mountNode);