File size: 451 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import { Box } from "@chakra-ui/react"
import Link, { type LinkProps } from "next/link"
export const Anchor = (props: LinkProps) => {
return (
<Box
asChild
css={{
color: "fg",
textDecoration: "underline",
textUnderlineOffset: "3px",
textDecorationThickness: "2px",
textDecorationColor: "border.emphasized",
fontWeight: "500",
}}
>
<Link {...props} />
</Box>
)
}
|