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