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