mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
f37f471373
* feat: expand rate character * fix: demo * fix: snap * Update components/rate/index.zh-CN.md Co-authored-by: 偏右 <afc163@gmail.com> * fix Co-authored-by: 偏右 <afc163@gmail.com>
31 lines
595 B
Markdown
31 lines
595 B
Markdown
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 其他字符
|
|
en-US: Other Character
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
可以将星星替换为其他字符,比如字母,数字,字体图标甚至中文。
|
|
|
|
## en-US
|
|
|
|
Replace the default star to other character like alphabet, digit, iconfont or even Chinese word.
|
|
|
|
```jsx
|
|
import { Rate } from 'antd';
|
|
import { HeartOutlined } from '@ant-design/icons';
|
|
|
|
ReactDOM.render(
|
|
<>
|
|
<Rate character={<HeartOutlined />} allowHalf />
|
|
<br />
|
|
<Rate character="A" allowHalf style={{ fontSize: 36 }} />
|
|
<br />
|
|
<Rate character="好" allowHalf />
|
|
</>,
|
|
mountNode,
|
|
);
|
|
```
|