import React from 'react'; import classnames from 'classnames'; import { IconColor, Display } from '../../../helpers/constants/design-system'; import { Box, BoxProps } from '../box'; import type { PolymorphicRef } from '../box'; import { IconSize, IconProps, IconComponent } from './icon.types'; export const Icon: IconComponent = React.forwardRef( ( { name, size = IconSize.Md, color = IconColor.inherit, className = '', style, ...props }: IconProps, ref?: PolymorphicRef, ) => ( )} /> ), );