UNPKG

m3-svelte

Version:

M3 Svelte implements the Material 3 design system in Svelte. See the [website](https://ktibow.github.io/m3-svelte/) for demos and usage instructions.

10 lines (9 loc) 320 B
import type { Snippet } from "svelte"; type $$ComponentProps = { headline: string; children: Snippet; close: () => void; }; declare const StandardSideSheet: import("svelte").Component<$$ComponentProps, {}, "">; type StandardSideSheet = ReturnType<typeof StandardSideSheet>; export default StandardSideSheet;