import * as React from 'react'; import Avatar from '@mui/material/Avatar'; import Card from '@mui/material/Card'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; import { Clock as ClockIcon } from '@phosphor-icons/react/dist/ssr/Clock'; export interface LateVehiclesProps { amount: number; } export function LateVehicles({ amount }: LateVehiclesProps): React.JSX.Element { return ( {amount} Late vehicles ); }