UNPKG

claritykit-svelte

Version:

A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility

12 lines 364 B
export type SkeletonVariant = 'text' | 'avatar' | 'card' | 'button'; export type SkeletonSize = 'sm' | 'md' | 'lg'; export interface SkeletonProps { variant?: SkeletonVariant; size?: SkeletonSize; width?: number | string; height?: number | string; lines?: number; animate?: boolean; class?: string; } //# sourceMappingURL=types.d.ts.map