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.
9 lines (8 loc) • 305 B
TypeScript
import type { Snippet } from "svelte";
type $$ComponentProps = {
children: Snippet;
close: (reason: "esc" | "click" | "low") => void;
};
declare const BottomSheet: import("svelte").Component<$$ComponentProps, {}, "">;
type BottomSheet = ReturnType<typeof BottomSheet>;
export default BottomSheet;