import { FC, SVGProps, PropsWithChildren, HTMLAttributes } from 'react'; type IIconComponent = FC>; export interface IIconBaseProps extends PropsWithChildren> { } export type IIconComponentType = FC; export default function generateIcon(IconComponent: IIconComponent): IIconComponentType; export {};