/// import { allColorsType } from '@kano/kbc-tokens/lib/all-colors'; import './styles/main.scss'; export declare type TIconSizes = "smaller" | "small" | "base" | "mid" | "large" | "larger" | "largest"; export interface IconProps { name: string; size?: TIconSizes; animate?: boolean; noClass?: boolean; color?: allColorsType; } declare const KbcIcon: ({ name, size, color, animate, noClass }: IconProps) => JSX.Element; export default KbcIcon; //# sourceMappingURL=kbc-icons.d.ts.map