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.

11 lines (10 loc) 296 B
import type { IconifyIcon } from "@iconify/types"; type $$ComponentProps = { icon: IconifyIcon; width?: string; height?: string; class?: string; }; declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">; type Icon = ReturnType<typeof Icon>; export default Icon;