import type { HTMLAttributes, Ref } from 'react';
import type { IntrinsicComponent, StylableComponent } from './utils/types';
export interface IconProps extends IntrinsicComponent>, StylableComponent {
size?: number;
width?: string | number;
height?: string | number;
color?: string;
color2?: string;
stroke?: string;
stroke2?: string;
viewBox?: string;
ref?: Ref;
}