mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
484 B
484 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
通过前缀和后缀添加单位。
en-US
Add unit through prefix
and suffix
.
import { Statistic, Row, Col, Icon } from 'antd';
ReactDOM.render(
<Row gutter={16}>
<Col span={12}>
<Statistic title="Feedback" value={1128} prefix={<Icon type="like" />} />
</Col>
<Col span={12}>
<Statistic title="Unmerged" value={93} suffix="/ 100" />
</Col>
</Row>,
mountNode,
);