ant-design/components/statistic/demo/unit.md
2022-05-23 14:37:16 +08:00

571 B

order title
1
zh-CN en-US
单位 Unit

zh-CN

通过前缀和后缀添加单位。

en-US

Add unit through prefix and suffix.

import { LikeOutlined } from '@ant-design/icons';
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;