UNPKG

@sjsf/shadcn4-theme

Version:

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

9 lines (8 loc) 390 B
import { type WithElementRef } from "../../../utils.js"; import type { HTMLAttributes } from "svelte/elements"; type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLLegendElement>> & { variant?: "legend" | "label"; }; declare const FieldLegend: import("svelte").Component<$$ComponentProps, {}, "ref">; type FieldLegend = ReturnType<typeof FieldLegend>; export default FieldLegend;