import { FC } from 'react'; import NextLink from 'next/link'; import { cn } from '@/utils/styling'; import { LinkProps } from '.'; export const Link: FC = ({ children, link, openInNewTab, rel, className, style }) => ( {children} );