@sjsf/shadcn4-theme
Version:
The shadcn-svelte based theme for svelte-jsonschema-form
13 lines (12 loc) • 462 B
TypeScript
import { type WithElementRef } from "../../../utils.js";
import type { HTMLAttributes } from "svelte/elements";
import type { Snippet } from "svelte";
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
children?: Snippet;
errors?: {
message?: string;
}[];
};
declare const FieldError: import("svelte").Component<$$ComponentProps, {}, "ref">;
type FieldError = ReturnType<typeof FieldError>;
export default FieldError;