import {forwardRef, Fragment} from 'react'; import {css} from '@emotion/react'; import theme from 'sentry/utils/theme'; import {SvgIcon, SVGIconProps} from './svgIcon'; interface Props extends SVGIconProps { direction?: 'up' | 'right' | 'down' | 'left'; isCircled?: boolean; } const IconChevron = forwardRef( ({isCircled = false, direction = 'up', ...props}, ref) => { return ( {isCircled ? ( ) : ( )} ); } ); IconChevron.displayName = 'IconChevron'; export {IconChevron};