import React, { type Ref } from 'react'; import { classNames } from '../../utils'; import { Icon, type IconName } from '../Icon'; import styles from './HighlighIcon.module.css'; import type { IconSize } from '../Icon/Icon'; export type HighlightIconVariant = | 'alert' | 'info' | 'success' | 'warning' | 'neutral' | 'apricot' | 'blue' | 'carbon' | 'emerald' | 'forest' | 'grolive' | 'lemon' | 'ocean' | 'pink' | 'peach' | 'purple'; type Size = 24 | 32 | 40 | 56; export type HighlightIconProps = { ref?: Ref; /** * className for the element. */ className?: string; /** * The icon to display in the component. */ name: IconName; /** * The size of the element. * @default l */ size?: Size; /** * The visual style of the HighlightIcon. * @default warning */ variant?: HighlightIconVariant; }; const getIconSize = (highlightIconSize: Size): IconSize => { switch (highlightIconSize) { case 24: return 's'; case 32: case 40: return 'm'; default: return 'l'; } }; export const HighlightIcon = ({ className, name, size = 56, variant = 'warning', ref, ...rest }: HighlightIconProps) => { return (
); };