my blog https://overreacted.io
at 0453903294a46e17a609fc5a2dd2b1e24e81bc06 16 lines 323 B view raw
1import Link from "./Link"; 2 3export default function TextLink({ 4 className, 5 ...props 6}: React.ComponentProps<typeof Link>) { 7 return ( 8 <Link 9 {...props} 10 className={[ 11 "underline decoration-[--link] decoration-1 underline-offset-4 text-[--link]", 12 className, 13 ].join(" ")} 14 /> 15 ); 16}