claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
11 lines • 351 B
TypeScript
export type StatusDotStatus = 'success' | 'warning' | 'error' | 'info' | 'default' | 'custom';
export type StatusDotSize = 'sm' | 'md' | 'lg';
export interface StatusDotProps {
status?: StatusDotStatus;
size?: StatusDotSize;
pulse?: boolean;
color?: string;
label?: string;
class?: string;
}
//# sourceMappingURL=types.d.ts.map