"use client"; import { Avatar as AvatarPrimitive } from "@base-ui/react/avatar"; import type React from "react"; import { cn } from "@/lib/utils"; export function Avatar({ className, ...props }: AvatarPrimitive.Root.Props): React.ReactElement { return ( ); } export function AvatarImage({ className, ...props }: AvatarPrimitive.Image.Props): React.ReactElement { return ( ); } export function AvatarFallback({ className, ...props }: AvatarPrimitive.Fallback.Props): React.ReactElement { return ( ); } export { AvatarPrimitive };