1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import React from 'react';
- import { Row, Col, Card, Statistic } from 'antd';
- import { ArrowDownOutlined, ArrowUpOutlined, LikeOutlined } from '@ant-design/icons';
-
- export default (props) => {
- return (
- <Row gutter={24}>
- <Col span={6}>
- <Card>
- <Statistic title="Feedback" value={1128} prefix={<LikeOutlined />} />
- </Card>
- </Col>
- <Col span={6}>
- <Card>
- <Statistic title="Unmerged" value={93} suffix="/ 100" />
- </Card>
- </Col>
- <Col span={6}>
- <Card>
- <Statistic
- title="Active"
- value={11.28}
- precision={2}
- valueStyle={{ color: '#3f8600' }}
- prefix={<ArrowUpOutlined />}
- suffix="%"
- />
- </Card>
- </Col>
- <Col span={6}>
- <Card>
- <Statistic
- title="Idle"
- value={9.3}
- precision={2}
- valueStyle={{ color: '#cf1322' }}
- prefix={<ArrowDownOutlined />}
- suffix="%"
- />
- </Card>
- </Col>
- </Row>
- )
- }
|