'use client'; import { cn } from '@/utils/cn'; import { AvatarImage } from '@radix-ui/react-avatar'; import type { VariantProps } from 'class-variance-authority'; import { cva } from 'class-variance-authority'; import type { IServiceProfile } from '@openpanel/db'; import { Avatar, AvatarFallback } from '../ui/avatar'; interface ProfileAvatarProps extends VariantProps, Partial> { className?: string; } const variants = cva('', { variants: { size: { default: 'h-8 w-8 rounded [&>span]:rounded', sm: 'h-6 w-6 rounded [&>span]:rounded', xs: 'h-4 w-4 rounded [&>span]:rounded', }, }, defaultVariants: { size: 'default', }, }); export function ProfileAvatar({ avatar, firstName, className, size, }: ProfileAvatarProps) { return ( {avatar && } {firstName?.at(0) ?? '🫣'} ); }