import { Ref, RefAttributes } from "react"; import { IconDefinition } from "../../types/icon"; import { ForwardedRefComponent } from "../../types/components"; export interface IconProps extends RefAttributes { /** Custom class name for setting specific CSS */ className?: string; /** Icon type */ icon: IconDefinition; /** Spin the icon */ spin?: boolean; } export declare type IconRef = Ref; declare const Icon: ForwardedRefComponent; export { Icon };