import { CSSProperties, RefObject, AriaAttributes } from 'react'; export interface HTMLProps extends AriaAttributes { className?: string; } export interface IconProps extends HTMLProps { path: string; ref?: RefObject; title?: string | null; description?: string | null; size?: number | string | null; color?: string | null; horizontal?: boolean; vertical?: boolean; rotate?: number; spin?: boolean | number; style?: CSSProperties; inStack?: boolean; }