Files
www_veda_2025/public/images/components/link.jsx
2025-08-25 11:24:16 +02:00

15 lines
265 B
JavaScript

import NextLink from 'next/link'
import { clsx } from 'clsx'
export function Link({ href, className, children, ...props }) {
return (
<NextLink
href={href}
className={clsx(className)}
{...props}
>
{children}
</NextLink>
)
}