import { JSX } from "solid-js/jsx-runtime"; export type IconNode = [elementName: keyof JSX.IntrinsicElements, attrs: Record][]; export type SVGAttributes = Partial>; export interface IconProps extends SVGAttributes { key?: string | number; color?: string; size?: string | number; strokeWidth?: string | number; title?: string; class?: string; }