datahub/site/components/CustomLink.js
2023-04-11 11:24:01 -03:00

17 lines
306 B
JavaScript

import Link from "next/link";
export default function CustomLink({ as, href, ...otherProps }) {
return (
<>
<Link legacyBehavior as={as} href={href}>
<a {...otherProps} />
</Link>
<style jsx>{`
a {
color: tomato;
}
`}</style>
</>
);
}