import type { SxProps, Theme } from '@mui/material'; import { Badge } from '@mui/material'; // import { SmallAvatarSkeleton } from '../SmallAvatar.js'; import { AvatarDefault, // AvatarDefaultBadge, AvatarSkeleton, } from './Avatar.style.js'; export const AvatarBadgedDefault: React.FC<{ sx?: SxProps; }> = ({ sx }) => { return ( } sx={sx} > ); }; export const AvatarBadgedSkeleton: React.FC<{ sx?: SxProps; }> = ({ sx }) => { return ( } sx={sx} > ); };