import React from 'react'; import { Wrapper, Current } from './style'; import { IProgress } from './types'; const Line = function(props: IProgress) { const { current, ...rest } = props; return ( ); }; Line.defaultProps = { width: 100, height: 3, }; export default Line;