import Link from "next/link"; import { ReactNode } from "react"; interface Props { className?: string; href: string; children?: ReactNode; } const GenericButton = ({ className, href, children }: Props) => { return ( {children} ); }; export default GenericButton;