import Link from "next/link";
import type { LinkProps } from "next/link";
type CustomLinkProps = LinkProps & {
target?: string;
rel?: string;
className?: string;
children?: unknown;
rest?: unknown;
};
const CustomLink = ({ href, target, rel, className, children, ...rest }: CustomLinkProps) => (
{children}
);
export default CustomLink;