ant-design/components/rate/demo/character.md

33 lines
642 B
Markdown
Raw Normal View History

---
order: 5
title:
zh-CN: 其他字符
2017-03-06 14:23:38 +08:00
en-US: Other Character
---
## zh-CN
可以将星星替换为其他字符,比如字母,数字,字体图标甚至中文。
## en-US
2017-03-06 14:23:38 +08:00
Replace the default star to other character like alphabet, digit, iconfont or even Chinese word.
```tsx
import { HeartOutlined } from '@ant-design/icons';
2022-05-23 14:37:16 +08:00
import { Rate } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
<Rate character={<HeartOutlined />} allowHalf />
<br />
2017-03-06 14:23:38 +08:00
<Rate character="A" allowHalf style={{ fontSize: 36 }} />
<br />
2017-03-06 14:23:38 +08:00
<Rate character="好" allowHalf />
</>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```