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