@sjsf/shadcn4-theme
Version:
The shadcn-svelte based theme for svelte-jsonschema-form
9 lines (8 loc) • 352 B
TypeScript
import type { HTMLAttributes } from "svelte/elements";
import type { Snippet } from "svelte";
type $$ComponentProps = HTMLAttributes<HTMLDivElement> & {
children?: Snippet;
};
declare const FieldSeparator: import("svelte").Component<$$ComponentProps, {}, "">;
type FieldSeparator = ReturnType<typeof FieldSeparator>;
export default FieldSeparator;