import { cn } from "@/lib/utils"; interface Props { avatarUrl?: string; className?: string; } const UserAvatar = (props: Props) => { const { avatarUrl, className } = props; return (