import { AnchorHTMLAttributes, DetailedHTMLProps } from "react"; import { twMerge } from "tailwind-merge"; export default function Link({ ...props }: DetailedHTMLProps< AnchorHTMLAttributes, HTMLAnchorElement >) { return ( {props.children} ); }