I have to disable link in the image so that the user can not click on that image what can I do ?
code -
<a href={fb} target="_blank" onClick={(e) => {
  e.stopPropagation();
}}>
 <span style={{ fontSize: '17px', color: '#1930f42a' }} >
    <img className='logo' src={Fb} height={28} />
 </span>
</a>
 
     
    