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.

9 lines (8 loc) 335 B
import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; type $$ComponentProps = { children: Snippet; } & HTMLAttributes<HTMLDivElement>; declare const RadioAnim3: import("svelte").Component<$$ComponentProps, {}, "">; type RadioAnim3 = ReturnType<typeof RadioAnim3>; export default RadioAnim3;