Tag.js (391B)
1 function Tag() { 2 return ( 3 <svg 4 className="icon" 5 viewBox="0 0 24 24" 6 strokeLinecap="round" 7 strokeLinejoin="round" 8 strokeWidth="2" 9 aria-hidden="true" 10 > 11 <path d="M20.59,13.41l-7.17,7.17a2,2,0,0,1-2.83,0L2,12V2H12l8.59,8.59A2,2,0,0,1,20.59,13.41Z"></path> 12 <line x1="7" y1="7" x2="7" y2="7"></line> 13 </svg> 14 ); 15 } 16 17 export default Tag;