UNPKG

claritykit-svelte

Version:

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

17 lines 513 B
interface Props { label?: string; description?: string; required?: boolean; disabled?: boolean; readonly?: boolean; error?: string | null; success?: string | null; hint?: string; size?: 'sm' | 'md' | 'lg'; inline?: boolean; hideLabel?: boolean; } declare const FormFieldStories: import("svelte").Component<Props, {}, "">; type FormFieldStories = ReturnType<typeof FormFieldStories>; export default FormFieldStories; //# sourceMappingURL=FormFieldStories.svelte.d.ts.map