@@ -3,6 +3,7 @@ import { HiOutlineChevronLeft } from "@react-icons/all-files/hi/HiOutlineChevron
3
3
import { Link } from "gatsby" ;
4
4
import { IoMdClose } from "@react-icons/all-files/io/IoMdClose" ;
5
5
import { IoIosArrowDropdownCircle } from "@react-icons/all-files/io/IoIosArrowDropdownCircle" ;
6
+ import { IoIosArrowForward } from "@react-icons/all-files/io/IoIosArrowForward" ;
6
7
import { componentsData } from "../../sections/Projects/Sistent/components/content" ;
7
8
8
9
import TOCWrapper from "./toc.style" ;
@@ -35,14 +36,14 @@ const TOC = () => {
35
36
</ Link >
36
37
< div className = "toc-toggle-btn" >
37
38
{ expand ? (
38
- < IoMdClose
39
+ < IoIosArrowDown
39
40
className = "toc-menu-icon"
40
41
onClick = { function ( ) {
41
42
setExpand ( ! expand ) ;
42
43
} }
43
44
/>
44
45
) : (
45
- < IoIosArrowDropdownCircle
46
+ < IoIosArrowForward
46
47
className = "toc-menu-icon"
47
48
onClick = { function ( ) {
48
49
setExpand ( ! expand ) ;
@@ -69,7 +70,10 @@ const TOC = () => {
69
70
onClick = { ( ) => setExpandIdentity ( ( prev ) => ! prev ) }
70
71
>
71
72
Identity
72
- { expandIdenity ? < IoIosArrowUp /> : < IoIosArrowDown /> }
73
+ { expandIdenity ?
74
+ < IoIosArrowDown style = { { zIndex : 2 } } /> :
75
+ < IoIosArrowForward style = { { zIndex : 2 } } />
76
+ }
73
77
</ li >
74
78
{ expandIdenity && (
75
79
< div className = "identity-sublinks" >
@@ -129,7 +133,10 @@ const TOC = () => {
129
133
onClick = { ( ) => setExpandComponent ( ( prev ) => ! prev ) }
130
134
>
131
135
Components
132
- { expandComponent ? < IoIosArrowUp /> : < IoIosArrowDown /> }
136
+ { expandComponent ?
137
+ < IoIosArrowDown style = { { zIndex : 2 } } /> :
138
+ < IoIosArrowForward style = { { zIndex : 2 } } />
139
+ }
133
140
</ li >
134
141
{ expandComponent && (
135
142
< div className = "components-sublinks" >
0 commit comments