import React from 'react'; import { Tooltip } from 'antd'; import styles from './index.less'; export interface IMiniProgressProps { target: number; targetLabel?: string; color?: string; strokeWidth?: number; percent?: number; style?: React.CSSProperties; } const MiniProgress: React.SFC = ({ targetLabel, target, color = 'rgb(19, 194, 194)', strokeWidth, percent, }) => { return (
); }; export default MiniProgress;