FLASHback1/bingo
0
1export function ExternalLink({2 href,3 children4}: {5 href: string6 children: React.ReactNode7}) {8 return (9 <a10 href={href}11 target="_blank"12 rel="noreferrer"13 className="inline-flex flex-1 justify-center gap-1 underline"14 >15 <span>{children}</span>16 <svg17 aria-hidden="true"18 height="7"19 viewBox="0 0 6 6"20 width="7"21 className="opacity-70"22 >23 <path24 d="M1.25215 5.54731L0.622742 4.9179L3.78169 1.75597H1.3834L1.38936 0.890915H5.27615V4.78069H4.40513L4.41109 2.38538L1.25215 5.54731Z"25 fill="currentColor"26 ></path>27 </svg>28 </a>29 )30}31 