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.
13 lines (12 loc) • 406 B
TypeScript
import type { HTMLInputAttributes } from "svelte/elements";
type $$ComponentProps = {
label: string;
value?: string;
required?: boolean;
disabled?: boolean;
error?: boolean;
datePickerTitle?: string;
} & HTMLInputAttributes;
declare const DateField: import("svelte").Component<$$ComponentProps, {}, "value">;
type DateField = ReturnType<typeof DateField>;
export default DateField;