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