drfeely.com/components/ArtLink.tsx

20 lines
364 B
TypeScript
Raw Normal View History

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