import { Avatar as ShadAvatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'; import { User } from 'lucide-react'; import { cn } from 'helpers/cn'; type AvatarProps = { src?: string | null; className?: string; } & React.ComponentProps; export const Avatar = ({ src = '', className, ...props }: AvatarProps) => { return ( ); };