File tree 3 files changed +28
-25
lines changed
3 files changed +28
-25
lines changed Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ const ArrowRightAngle : React . FC = ( ) => (
4
+ < svg
5
+ xmlns = "http://www.w3.org/2000/svg"
6
+ width = "16"
7
+ height = "16"
8
+ fill = "none"
9
+ viewBox = "0 0 24 24"
10
+ focusable = "false"
11
+ aria-hidden = "true"
12
+ >
13
+ < g
14
+ stroke-linecap = "round"
15
+ stroke-linejoin = "round"
16
+ stroke-width = "2"
17
+ stroke = "currentColor"
18
+ transform = "translate(-2 7)"
19
+ >
20
+ < path d = "M4.5 5v6c0 1.1.9 2 2 2H19" />
21
+ < path d = "M14.5 8.5 19 13l-4.5 4.5" />
22
+ </ g >
23
+ </ svg >
24
+ ) ;
25
+
26
+ export default ArrowRightAngle ;
Original file line number Diff line number Diff line change 9
9
.list {
10
10
@include common .unstyled-list ();
11
11
}
12
-
13
- .icon {
14
- width : 1rem ;
15
- height : 1rem ;
16
- }
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
+ import ArrowRightAngle from './ArrowRightAngle' ;
2
3
import { LenkeBase } from '../lenke/LenkeBase' ;
3
4
import { AnchorLink } from 'components/parts/page-navigation-menu/PageNavigationMenuPart' ;
4
5
import { Heading } from '@navikt/ds-react' ;
@@ -38,26 +39,7 @@ export const PageNavigationMenuV2 = ({ anchorLinks = [] }: Props) => {
38
39
// )}
39
40
// id={linkId}
40
41
>
41
- < svg
42
- xmlns = "http://www.w3.org/2000/svg"
43
- width = "16"
44
- height = "16"
45
- fill = "none"
46
- viewBox = "0 0 24 24"
47
- focusable = "false"
48
- aria-hidden = "true"
49
- >
50
- < g
51
- stroke-linecap = "round"
52
- stroke-linejoin = "round"
53
- stroke-width = "2"
54
- stroke = "currentColor"
55
- transform = "translate(-2 7)"
56
- >
57
- < path d = "M4.5 5v6c0 1.1.9 2 2 2H19" />
58
- < path d = "M14.5 8.5 19 13l-4.5 4.5" />
59
- </ g >
60
- </ svg >
42
+ < ArrowRightAngle />
61
43
{ anchorLink . linkText }
62
44
</ LenkeBase >
63
45
</ li >
You can’t perform that action at this time.
0 commit comments