import {forwardRef, Fragment} from 'react'; import type {SVGIconProps} from './svgIcon'; import {SvgIcon} from './svgIcon'; interface Props extends SVGIconProps { isCircled?: boolean; } const IconClose = forwardRef( ({isCircled = false, ...props}, ref) => { return ( {isCircled ? ( ) : ( )} ); } ); IconClose.displayName = 'IconClose'; export {IconClose};