drfeely.com/website/components/ArtLink.tsx

20 lines
335 B
TypeScript
Raw Normal View History

2023-09-05 17:34:41 +00:00
import Link from "next/link";
const ArtLink = (props: any) => {
return (
<div>
<Link
{...props}
className={
"underline transition-all duration-300 hover:drop-shadow " +
props.className
}
>
{props.children}
</Link>
</div>
);
};
export default ArtLink;