Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 1x | function LocationIcon({ className }: { className?: string }) { return ( <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" className={className} > <path fillRule="evenodd" clipRule="evenodd" d="M5.35998 1.24943C5.55691 1.2002 5.80306 1.2002 5.99998 1.2002C8.2646 1.2002 10.1354 3.07096 10.1354 5.33558C10.1354 7.94481 8.06768 9.71712 6.83691 10.554C6.59075 10.7017 6.29537 10.8002 5.99998 10.8002C5.7046 10.8002 5.40921 10.751 5.16306 10.554C3.98152 9.71712 1.96306 7.99404 1.8646 5.48327C1.81537 3.41558 3.29229 1.54481 5.35998 1.24943ZM4.03075 5.13818C4.03075 4.0551 4.9169 3.16895 5.99998 3.16895C7.08306 3.16895 7.96921 4.0551 7.96921 5.13818C7.96921 6.22125 7.08306 7.10741 5.99998 7.10741C4.9169 7.10741 4.03075 6.22125 4.03075 5.13818Z" fill="#7800ff" /> </svg> ); } export default LocationIcon; |