import React from 'react'; import { iconMap } from './iconMap'; import { type ComposableProps } from '../../../lib/slot'; export type IconName = keyof typeof iconMap; export interface IconProps extends Omit, 'children'> { name: IconName; size?: number | string | 'xs' | 'sm' | 'md' | 'lg' | 'xl'; color?: string; className?: string; style?: React.CSSProperties; } export declare const Icon: React.FC; export default Icon; //# sourceMappingURL=Icon.d.ts.map