import type { AnchorHTMLAttributes } from "react"; import { cn } from "../../lib/cn"; export function Link({ children, className, ...props }: AnchorHTMLAttributes) { return ( {children} ); }