Commit 378082e 1 parent e403550 commit 378082e Copy full SHA for 378082e
File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,11 @@ export const HeaderContentContainer = styled.div`
29
29
white-space: nowrap;
30
30
` ;
31
31
32
+ export const NavOptionButton = styled . button `
33
+ cursor: pointer;
34
+ background: none;
35
+ ` ;
36
+
32
37
export const NewTemplateButton = styled . button `
33
38
cursor: pointer;
34
39
Original file line number Diff line number Diff line change 1
1
import { Link } from 'react-router-dom' ;
2
2
3
3
import { logoIcon , newTemplateIcon , userMenuIcon } from '@/assets/images' ;
4
- import { Button , Flex , Heading , Text } from '@/components' ;
4
+ import { Flex , Heading , Text } from '@/components' ;
5
5
import * as S from './Header.style' ;
6
6
7
7
const Header = ( ) => (
@@ -33,11 +33,11 @@ const Logo = () => (
33
33
34
34
const NavOption = ( { route, name } : { route : string ; name : string } ) => (
35
35
< Link to = { route } >
36
- < Button size = 'medium' variant = 'text' >
36
+ < S . NavOptionButton >
37
37
< Text . Medium weight = 'bold' color = '#393E46' >
38
38
{ name }
39
39
</ Text . Medium >
40
- </ Button >
40
+ </ S . NavOptionButton >
41
41
</ Link >
42
42
) ;
43
43
You can’t perform that action at this time.
0 commit comments