m3-svelte
Version:
M3 Svelte implements the Material 3 design system in Svelte. See the [website](https://kendell.dev/m3-svelte/) for demos and usage instructions.
14 lines (13 loc) • 500 B
TypeScript
import type { IconifyIcon } from "@iconify/types";
import type { HTMLTextareaAttributes } from "svelte/elements";
type $$ComponentProps = {
label: string;
leadingIcon?: IconifyIcon;
disabled?: boolean;
required?: boolean;
error?: boolean;
value?: string;
} & HTMLTextareaAttributes;
declare const TextFieldMultiline: import("svelte").Component<$$ComponentProps, {}, "value">;
type TextFieldMultiline = ReturnType<typeof TextFieldMultiline>;
export default TextFieldMultiline;