import { Box, LinearProgress, Typography } from '@mui/material'; type LinearWithLabelProps = { value: number; }; function LinearWithLabel({ value, ...others }: LinearWithLabelProps) { return ( {`${Math.round(value)}%`} ); } export { LinearWithLabel }; export type { LinearWithLabelProps };