@@ -5,6 +5,8 @@ import dynamic from 'next/dynamic'
5
5
import Dropdown from '@components/Dropdown'
6
6
import routes from '@utils/routes'
7
7
import { FiMoreHorizontal } from 'react-icons/fi'
8
+ import { AiOutlineFontColors } from 'react-icons/ai'
9
+ import { MdFeaturedPlayList } from 'react-icons/md'
8
10
9
11
const ThemeSwitch = dynamic ( ( ) => import ( '@components/layout/ThemeSwitch' ) , {
10
12
ssr : false ,
@@ -34,23 +36,19 @@ const AppHeader: React.FC<Props> = ({ className }) => {
34
36
</ div >
35
37
< div >
36
38
< Dropdown buttonLabel = { < FiMoreHorizontal /> } >
37
- < ul className = "w-40 space-y-4 py-2" >
39
+ < ul className = "w-40 space-y-4 py-2 text-sm " >
38
40
< li >
39
41
< Link { ...routes . COMPONENTS } >
40
- < a
41
- className = "text-green-600 hover:underline"
42
- title = "components"
43
- >
42
+ < a className = "text-primary hover:underline" title = "components" >
43
+ < MdFeaturedPlayList className = "inline mr-2" />
44
44
Components
45
45
</ a >
46
46
</ Link >
47
47
</ li >
48
48
< li >
49
49
< Link { ...routes . TYPOGRAPHY } >
50
- < a
51
- className = "text-green-600 hover:underline"
52
- title = "Typography"
53
- >
50
+ < a className = "text-primary hover:underline" title = "Typography" >
51
+ < AiOutlineFontColors className = "inline mr-2" />
54
52
Typography
55
53
</ a >
56
54
</ Link >
@@ -59,7 +57,7 @@ const AppHeader: React.FC<Props> = ({ className }) => {
59
57
< hr className = "dark:border-gray-700" />
60
58
</ li >
61
59
< li className = "flex items-center justify-between" >
62
- < span className = "mr-auto text-sm text- gray-600" > Theme</ span >
60
+ < span className = "mr-auto text-gray-600" > Theme</ span >
63
61
< ThemeSwitch />
64
62
</ li >
65
63
</ ul >
0 commit comments