import { Box, LinearProgress } from '@mui/material'; type LinearWithIconProps = { icon: any; value: number; }; function LinearWithIcon({ icon, value, ...others }: LinearWithIconProps) { return ( {icon} ); } export { LinearWithIcon }; export type { LinearWithIconProps };