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
31 lines
516 B
Markdown
31 lines
516 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 单位
|
|
en-US: Unit
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
通过前缀和后缀添加单位。
|
|
|
|
## en-US
|
|
|
|
Add unit through `prefix` and `suffix`.
|
|
|
|
```jsx
|
|
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>
|
|
);
|
|
```
|