import React from 'react' import styles from './progress.module.scss' const Progress: React.FC> = props => { const { percent = 0 } = props return (
{(percent ?? 0).toString().substring(0,4)}%
) } export default Progress