import { HTMLAttributes } from 'react';
export interface IconProps extends HTMLAttributes {
className?: string;
children?: React.ReactNode;
containerSize?: 'collapse' | '12' | '16' | '24' | '32';
iconSize?: 'auto' | '8' | '10' | '12' | '16' | '24';
}