import Link from 'next/link';
import React from 'react';
interface AnimatedLinkProps {
href: string;
children: React.ReactNode;
className?: string;
underlineColor?: string;
textColor?: string;
}
const AnimatedLink = ({
href,
children,
className = '',
underlineColor = 'bg-black dark:bg-white',
textColor = 'text-black dark:text-white'
}: AnimatedLinkProps) => {
return (
{children}
);
};
export default AnimatedLink;