Skip to content

Commit 14c98f8

Browse files
committed
svg til egen fil
1 parent 640edbe commit 14c98f8

File tree

3 files changed

+28
-25
lines changed

3 files changed

+28
-25
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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;

src/components/_common/page-navigation-menu-v2/PageNavigationMenuV2.module.scss

-5
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,3 @@
99
.list {
1010
@include common.unstyled-list();
1111
}
12-
13-
.icon {
14-
width: 1rem;
15-
height: 1rem;
16-
}

src/components/_common/page-navigation-menu-v2/PageNavigationMenuV2.tsx

+2-20
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React from 'react';
2+
import ArrowRightAngle from './ArrowRightAngle';
23
import { LenkeBase } from '../lenke/LenkeBase';
34
import { AnchorLink } from 'components/parts/page-navigation-menu/PageNavigationMenuPart';
45
import { Heading } from '@navikt/ds-react';
@@ -38,26 +39,7 @@ export const PageNavigationMenuV2 = ({ anchorLinks = [] }: Props) => {
3839
// )}
3940
// id={linkId}
4041
>
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 />
6143
{anchorLink.linkText}
6244
</LenkeBase>
6345
</li>

0 commit comments

Comments
 (0)