"use client"; import { Avatar as AvatarPrimitive } from "radix-ui"; import * as React from "react"; import { cn } from "@turbostarter/ui"; 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 };