import { Typography } from '@mui/material'; type SmallIconProps = { title: string; }; function SmallIcon({ title }: SmallIconProps) { return ( {title?.substring(0, 1).toUpperCase()} ); } export { SmallIcon }; export type { SmallIconProps };