mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
642 B
642 B
order | title | ||||
---|---|---|---|---|---|
5 |
|
zh-CN
可以将星星替换为其他字符,比如字母,数字,字体图标甚至中文。
en-US
Replace the default star to other character like alphabet, digit, iconfont or even Chinese word.
import { HeartOutlined } from '@ant-design/icons';
import { Rate } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
<Rate character={<HeartOutlined />} allowHalf />
<br />
<Rate character="A" allowHalf style={{ fontSize: 36 }} />
<br />
<Rate character="好" allowHalf />
</>
);
export default App;