-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathBackLink.stories.tsx.snap
More file actions
43 lines (41 loc) · 1.15 KB
/
BackLink.stories.tsx.snap
File metadata and controls
43 lines (41 loc) · 1.15 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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Components/BackLink OpenInNewTabLink smoke-test 1`] = `
<div class="nhsuk-back-link">
<a class="nhsuk-back-link__link"
href="/"
target="_blank"
rel="noopener noreferrer"
>
<svg class="nhsuk-icon nhsuk-icon__chevron-left"
xmlns="http://www.w3.org/2000/svg"
viewbox="0 0 24 24"
aria-hidden="true"
height="24"
width="24"
>
<path d="M8.5 12c0-.3.1-.5.3-.7l5-5c.4-.4 1-.4 1.4 0s.4 1 0 1.4L10.9 12l4.3 4.3c.4.4.4 1 0 1.4s-1 .4-1.4 0l-5-5c-.2-.2-.3-.4-.3-.7z">
</path>
</svg>
Link
</a>
</div>
`;
exports[`Components/BackLink StandardLink smoke-test 1`] = `
<div class="nhsuk-back-link">
<a class="nhsuk-back-link__link"
href="/"
>
<svg class="nhsuk-icon nhsuk-icon__chevron-left"
xmlns="http://www.w3.org/2000/svg"
viewbox="0 0 24 24"
aria-hidden="true"
height="24"
width="24"
>
<path d="M8.5 12c0-.3.1-.5.3-.7l5-5c.4-.4 1-.4 1.4 0s.4 1 0 1.4L10.9 12l4.3 4.3c.4.4.4 1 0 1.4s-1 .4-1.4 0l-5-5c-.2-.2-.3-.4-.3-.7z">
</path>
</svg>
Link
</a>
</div>
`;