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