import clsx from 'clsx'; import { FC } from 'react'; import Link from 'next/link'; export interface InlineLinkProps extends React.ComponentPropsWithoutRef<'span'> { to: string; } const InlineLink: FC = ({ to, className, ...rest }) => { return ( ); }; export default InlineLink;