import { VitamixId } from '@vtmn/icons/dist/vitamix/font/vitamix'; import * as React from 'react'; import { VtmnIconColor, VtmnIconSize, VtmnIconVariant } from './types'; export interface VtmnIconProps extends React.HTMLAttributes { /** * The size of the icon in pixels. * @defaultValue 24 **/ size?: VtmnIconSize; /** * The legacy color of the icon. * @defaultValue undefined * @deprecated use the "variant" prop instead **/ color?: VtmnIconColor; /** * The variant of the icon. * @defaultValue 'default' */ variant?: VtmnIconVariant; /** * The value of the icon. **/ value: VitamixId; } export declare const VtmnIcon: React.FC; declare const MemoVtmnIcon: React.NamedExoticComponent; export default MemoVtmnIcon;