import classNames from 'classnames' import IconCheck from '~/icons/compiled/Check' import { colorStringToHexCode } from '~/utils/color' export default function EnvironmentColor({ color, selected = false, size = 'md', }: { color: string | null | undefined selected?: boolean size?: 'sm' | 'md' }) { return ( {selected && color !== 'none' && } ) }