-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathActionLink.stories.tsx.snap
More file actions
55 lines (53 loc) · 1.51 KB
/
ActionLink.stories.tsx.snap
File metadata and controls
55 lines (53 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Components/ActionLink OpenLinkInNewTab smoke-test 1`] = `
<div class="nhsuk-action-link">
<a class="nhsuk-action-link__link"
href="#"
target="_blank"
rel="noopener noreferrer"
>
<svg class="nhsuk-icon nhsuk-icon__arrow-right-circle"
xmlns="http://www.w3.org/2000/svg"
viewbox="0 0 24 24"
aria-hidden="true"
height="36"
width="36"
>
<path d="M0 0h24v24H0z"
fill="none"
>
</path>
<path d="M12 2a10 10 0 0 0-9.95 9h11.64L9.74 7.05a1 1 0 0 1 1.41-1.41l5.66 5.65a1 1 0 0 1 0 1.42l-5.66 5.65a1 1 0 0 1-1.41 0 1 1 0 0 1 0-1.41L13.69 13H2.05A10 10 0 1 0 12 2z">
</path>
</svg>
<span class="nhsuk-action-link__text">
Link
</span>
</a>
</div>
`;
exports[`Components/ActionLink StandardLink smoke-test 1`] = `
<div class="nhsuk-action-link">
<a class="nhsuk-action-link__link"
href="#"
>
<svg class="nhsuk-icon nhsuk-icon__arrow-right-circle"
xmlns="http://www.w3.org/2000/svg"
viewbox="0 0 24 24"
aria-hidden="true"
height="36"
width="36"
>
<path d="M0 0h24v24H0z"
fill="none"
>
</path>
<path d="M12 2a10 10 0 0 0-9.95 9h11.64L9.74 7.05a1 1 0 0 1 1.41-1.41l5.66 5.65a1 1 0 0 1 0 1.42l-5.66 5.65a1 1 0 0 1-1.41 0 1 1 0 0 1 0-1.41L13.69 13H2.05A10 10 0 1 0 12 2z">
</path>
</svg>
<span class="nhsuk-action-link__text">
Link
</span>
</a>
</div>
`;