blob: a878d3a2ae1b6decae85ac748513871cdc6e674f (
plain)
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
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Radio Radio - disabled 1`] = `
<div
className="sdc-radio "
>
<label>
<input
checked={false}
className="sdc-radio__input"
data-test-id={undefined}
disabled={true}
name="grp2"
onChange={[Function]}
type="radio"
value="1"
/>
<span
className="sdc-radio__label"
>
This is the radio label
</span>
</label>
</div>
`;
exports[`Radio Radio - unchecked 1`] = `
<div
className="sdc-radio "
>
<label>
<input
checked={false}
className="sdc-radio__input"
data-test-id={undefined}
disabled={undefined}
name="grp4"
onChange={[Function]}
type="radio"
value="1"
/>
<span
className="sdc-radio__label"
>
This is the radio label
</span>
</label>
</div>
`;
|