import type { CLASSES } from './vars'; import type { BaseProps } from '../types'; export {}; export interface IconProps extends BaseProps<'icon', typeof CLASSES>, Omit, 'children'> { children: React.FunctionComponentElement>; size?: number | string | [number | string, number | string]; theme?: 'primary' | 'success' | 'warning' | 'danger'; rotate?: number; spin?: boolean; spinSpeed?: number | string; }