import { type PropsOf, Slot, component$ } from '@builder.io/qwik'; import { cn } from '@qwik-ui/utils'; const Root = component$>(({ ...props }) => { return (
); }); const Image = component$>(({ ...props }) => ( )); const Fallback = component$>(({ ...props }) => { return (
); }); export const Avatar = { Root, Image, Fallback, };