import React from 'react' import './Progress.css' interface ProgressProps{ width?:string bgColor?:string loaderColor?:string styles?:{} } const Progress:React.FC=(props)=>{ const { width, bgColor, loaderColor, styles } = props return(
) } export default Progress;