diff --git a/packages/ui/src/based-avatar.tsx b/packages/ui/src/based-avatar.tsx index a411146..24dc136 100644 --- a/packages/ui/src/based-avatar.tsx +++ b/packages/ui/src/based-avatar.tsx @@ -4,12 +4,12 @@ import type { ComponentProps } from 'react'; import * as AvatarPrimitive from '@radix-ui/react-avatar'; import { User } from 'lucide-react'; -import { AvatarImage, cn } from '@gib/ui'; +import { cn } from '@gib/ui'; type BasedAvatarProps = ComponentProps & { src?: string | null; fullName?: string | null; - imageProps?: Omit, 'data-slot'>; + imageProps?: Omit, 'data-slot'>; fallbackProps?: ComponentProps; userIconProps?: ComponentProps; };