import { CSSProperties } from 'react'; export interface IIconProps { style?: CSSProperties; width?: number | string; className?: string; isActive?: boolean; height?: number | string; color?: string; secondColor?: string; viewBox?: string; bgColor?: string; strokeColor?: string; onClick?: (e: any) => void; }