mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 13:09:40 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
516 B
516 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
通过前缀和后缀添加单位。
en-US
Add unit through prefix
and suffix
.
import { Statistic, Row, Col } from 'antd';
import { LikeOutlined } from '@ant-design/icons';
export default () => (
<Row gutter={16}>
<Col span={12}>
<Statistic title="Feedback" value={1128} prefix={<LikeOutlined />} />
</Col>
<Col span={12}>
<Statistic title="Unmerged" value={93} suffix="/ 100" />
</Col>
</Row>
);