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