ant-design/components/statistic/demo/unit.md

34 lines
571 B
Markdown
Raw Normal View History

---
order: 1
title:
zh-CN: 单位
en-US: Unit
---
## zh-CN
通过前缀和后缀添加单位。
## en-US
Add unit through `prefix` and `suffix`.
```tsx
import { LikeOutlined } from '@ant-design/icons';
2022-05-21 22:14:15 +08:00
import { Col, Row, Statistic } from 'antd';
import React from 'react';
const App: React.FC = () => (
<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>
);
export default App;
```