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