import { IProgressInfoProps } from '../types'; import { Icon } from '../../icon'; const ProgressInfo: React.FC = props => { const { type, percent, format, state, color } = props; if (state === 'success') { return ( ); } if (state === 'exception') { return ( ); } return <>{format(percent)}; }; export default ProgressInfo;