import {forwardRef} from 'react'; import {useTheme} from '@emotion/react'; import {SvgIcon, type SVGIconProps} from 'sentry/icons/svgIcon'; interface Props extends SVGIconProps { bars?: 0 | 1 | 2 | 3; } const IconCellSignal = forwardRef(({bars = 3, ...props}, ref) => { const theme = useTheme(); const firstBarColor = bars > 0 ? theme.gray300 : theme.gray100; const secondBarColor = bars > 1 ? theme.gray300 : theme.gray100; const thirdBarColor = bars > 2 ? theme.gray300 : theme.gray100; return ( ); }); IconCellSignal.displayName = 'IconCellSignal'; export {IconCellSignal};