File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,10 @@ import { MdChevronRight } from "react-icons/md"
6
6
import { ChildOnlyProp } from "@/lib/types"
7
7
import { DeveloperDocsLink } from "@/lib/interfaces"
8
8
9
- import { BaseLink , LinkProps } from "@/components/Link"
10
-
11
9
import docLinks from "../data/developer-docs-links.yaml"
12
10
13
11
import { HStack } from "./ui/flex"
12
+ import { BaseLink , LinkProps } from "./ui/Link"
14
13
15
14
export const dropdownIconContainerVariant = {
16
15
open : {
@@ -44,12 +43,7 @@ const LinkContainer = ({ children }: ChildOnlyProp) => {
44
43
const SideNavLink = ( { children, ...props } : LinkProps ) => {
45
44
return (
46
45
< BaseLink
47
- w = "full"
48
- textDecoration = "none"
49
- color = "text"
50
- fontWeight = "normal"
51
- _hover = { { textDecoration : "none" , color : "primary.base" } }
52
- _active = { { color : "primary.base" } }
46
+ className = "w-full font-normal text-body no-underline hover:text-primary"
53
47
{ ...props }
54
48
>
55
49
{ children }
You can’t perform that action at this time.
0 commit comments