import { cn } from "../../../core/utils/cn.ts"; export interface LinkProps { href: string; children: React.ReactNode; className?: string; } export const Link = ({ href, children, className }: LinkProps) => ( {children} );