UNPKG

@sjsf/shadcn-theme

Version:

The shadcn-svelte based theme for svelte-jsonschema-form

12 lines (11 loc) 352 B
import type { LabelProps } from '../types/label'; declare module '@sjsf/form' { interface UiOptions { shadcnLabel?: LabelProps; } } declare const Label: import("svelte").Component<import("@sjsf/form/fields/components").ComponentCommonProps & { title: string; }, {}, "">; type Label = ReturnType<typeof Label>; export default Label;