import * as React from 'react'; import Avatar from '@mui/material/Avatar'; import Card from '@mui/material/Card'; import CardContent from '@mui/material/CardContent'; import LinearProgress from '@mui/material/LinearProgress'; import Stack from '@mui/material/Stack'; import type { SxProps } from '@mui/material/styles'; import Typography from '@mui/material/Typography'; import { ListBulletsIcon } from '@phosphor-icons/react/dist/ssr/ListBullets'; export interface TasksProgressProps { sx?: SxProps; value: number; } export function TasksProgress({ value, sx }: TasksProgressProps): React.JSX.Element { return ( Task Progress {value}%
); }