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) • 532 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 TextFieldOutlinedMultiline: import("svelte").Component<$$ComponentProps, {}, "value">;
type TextFieldOutlinedMultiline = ReturnType<typeof TextFieldOutlinedMultiline>;
export default TextFieldOutlinedMultiline;