mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-06 07:56:28 +08:00

* docs: add general components TS demo * docs: add layout components TS demo * docs: add navigation components TS demo * docs: add data entry components TS demo * chore(deps): add types for qs * docs: add data display TS demo * docs: add feedback components TS demo * docs: add other components TS demo * chore(deps): add types * docs: unified demo code style * docs: fix lint error * docs: add demo TS type * docs: fix demo TS type * test: update snapshot * docs: fix TS demo * feat: update Rate character type * docs: fix lint error * feat: update Rate character type * feat: update Rate character type
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 React from 'react';
import { Rate } from 'antd';
import { HeartOutlined } from '@ant-design/icons';
const App: React.FC = () => (
<>
<Rate character={<HeartOutlined />} allowHalf />
<br />
<Rate character="A" allowHalf style={{ fontSize: 36 }} />
<br />
<Rate character="好" allowHalf />
</>
);
export default App;