Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
451 Bytes
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>
)
}