@sjsf/shadcn-theme
Version:
The shadcn-svelte based theme for svelte-jsonschema-form
6 lines (5 loc) • 311 B
TypeScript
import type { WithElementRef } from "bits-ui";
import type { HTMLTextareaAttributes } from "svelte/elements";
declare const Textarea: import("svelte").Component<Omit<WithElementRef<HTMLTextareaAttributes>, "children">, {}, "ref" | "value">;
type Textarea = ReturnType<typeof Textarea>;
export default Textarea;