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) 362 B
import type { IconifyIcon } from "@iconify/types"; import type { SVGAttributes } from "svelte/elements"; type $$ComponentProps = { icon: IconifyIcon; size?: number; } & Omit<SVGAttributes<SVGElement>, "width" | "height">; declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">; type Icon = ReturnType<typeof Icon>; export default Icon;