import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; import { cn } from "@/lib/utils"; import { User } from "lucide-react"; interface UserAvatarProps { src?: string | null; alt?: string | null; className?: string; } export function UserAvatar({ src, alt, className }: UserAvatarProps) { return ( {src && ( )} ); }