import * as AvatarPrimitive from "@rn-primitives/avatar"; import * as React from "react"; import { cn } from "../../lib/utils"; function Avatar({ className, ...props }: AvatarPrimitive.RootProps & { ref?: React.RefObject; }) { return ( ); } function AvatarImage({ className, ...props }: AvatarPrimitive.ImageProps & { ref?: React.RefObject; }) { return ( ); } function AvatarFallback({ className, ...props }: AvatarPrimitive.FallbackProps & { ref?: React.RefObject; }) { return ( ); } export { Avatar, AvatarFallback, AvatarImage };