import Link from 'next/link' import { Info } from 'phosphor-react' import { Box } from '../elements/LayoutPrimitives' import { theme } from '../tokens/stitches.config' import { TooltipWrapped } from './Tooltip' type InfoLinkProps = { href: string } const TooltipStyle = { backgroundColor: '#F9D354', color: '#0A0806', } export function InfoLink(props: InfoLinkProps): JSX.Element { return ( ) }