import { AllHTMLAttributes, SVGProps } from 'react'; export interface Icon { tag: keyof JSX.IntrinsicElements; attrs: AllHTMLAttributes & SVGProps; children?: this[] | string; }