UNPKG

@sjsf/shadcn4-theme

Version:

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

10 lines (9 loc) 428 B
import { type WithElementRef } from "../../../utils.js"; import type { HTMLAttributes } from "svelte/elements"; import type { Snippet } from "svelte"; type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & { children?: Snippet; }; declare const FieldSeparator: import("svelte").Component<$$ComponentProps, {}, "ref">; type FieldSeparator = ReturnType<typeof FieldSeparator>; export default FieldSeparator;