import { type ComponentPropsWithoutRef, forwardRef } from "react" import { Link as WouterLink, type LinkProps as WouterLinkProps } from "wouter" import { cn } from "../../libs/utils" export type LinkProps = WouterLinkProps & ComponentPropsWithoutRef<"a"> export const Link = forwardRef( ({ className, ...props }, ref) => { return ( ) }, ) Link.displayName = "Link"