import React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps & { isCircled?: boolean; }; const IconAdd = React.forwardRef(function IconAdd( {isCircled = false, ...props}: Props, ref: React.Ref ) { return ( {isCircled ? ( ) : ( )} ); }); IconAdd.displayName = 'IconAdd'; export {IconAdd};