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