import { default as Icon } from './Icon';
import * as CONSTANTS from './Icon.constants';
import { Props, IconScale as IconScaleType, IconWeight as IconWeightType } from './Icon.types';
export { CONSTANTS as ICON_CONSTANTS };

export type IconProps = Props;
export type IconScale = IconScaleType;
export type IconWeight = IconWeightType;

export default Icon;
