UNPKG

compote-ui

Version:

An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.

9 lines (8 loc) 299 B
import type { AvatarRootBaseProps } from '@ark-ui/svelte/avatar'; export type AvatarSize = 'sm' | 'md' | 'lg' | 'xl'; export interface AvatarProps extends Omit<AvatarRootBaseProps, 'children' | 'asChild' | 'ref'> { src?: string; alt?: string; fallback?: string; size?: AvatarSize; }