mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
34af3ec550
* feat: component token naming rules * dcos: update * feat: modal token rename * feat: rename result token * feat: statsitic token rename * feat: steps token remane * chore: update snapshot * chore: fix lint * feat: semantic part component * revert: button & notification * revert: files * chore: code clean
33 lines
771 B
TypeScript
33 lines
771 B
TypeScript
import React from 'react';
|
|
import { Button, Col, ConfigProvider, Row, Statistic } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<ConfigProvider
|
|
theme={{
|
|
components: {
|
|
Statistic: {
|
|
titleFontSize: 20,
|
|
contentFontSize: 20,
|
|
},
|
|
},
|
|
}}
|
|
>
|
|
<Row gutter={16}>
|
|
<Col span={12}>
|
|
<Statistic title="Active Users" value={112893} />
|
|
</Col>
|
|
<Col span={12}>
|
|
<Statistic title="Account Balance (CNY)" value={112893} precision={2} />
|
|
<Button style={{ marginTop: 16 }} type="primary">
|
|
Recharge
|
|
</Button>
|
|
</Col>
|
|
<Col span={12}>
|
|
<Statistic title="Active Users" value={112893} loading />
|
|
</Col>
|
|
</Row>
|
|
</ConfigProvider>
|
|
);
|
|
|
|
export default App;
|