import { SVGAttributes } from 'vue'; type IconNode = [elementName: string, attrs: Record][]; type IconProps = { color?: string; size?: number | string; class?: string; } & Partial; export type { IconNode, IconProps };