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