@fuxui/base
Version:
ui kit - svelte 5 + tailwind 4 - base components
17 lines (16 loc) • 535 B
TypeScript
import type { WithElementRef } from 'bits-ui';
import type { HTMLAttributes } from 'svelte/elements';
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
avatarClass?: string;
imageClass?: string;
fallbackClass?: string;
users: {
src?: string;
alt?: string;
fallback?: string;
}[];
class?: string;
};
declare const AvatarGroup: import("svelte").Component<$$ComponentProps, {}, "ref">;
type AvatarGroup = ReturnType<typeof AvatarGroup>;
export default AvatarGroup;