UNPKG

m3-svelte

Version:
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;