"use client" import { cn } from "@lib/utils" import * as AvatarPrimitive from "@radix-ui/react-avatar" import type * as React from "react" function Avatar({ className, ...props }: React.ComponentProps) { return ( ) } function AvatarImage({ className, ...props }: React.ComponentProps) { return ( ) } function AvatarFallback({ className, ...props }: React.ComponentProps) { return ( ) } export { Avatar, AvatarImage, AvatarFallback }