@digigov/react-icons 1.0.0-6b93ebf2 → 1.0.0-871b6be5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AccessibilityIcon/__snapshots__/index.test.tsx.snap +0 -315
- package/AccessibilityIcon/index.test.js +13 -69
- package/ArrowIcon/__snapshots__/index.test.tsx.snap +1 -1
- package/CheckIcon/__snapshots__/index.test.tsx.snap +0 -259
- package/CheckIcon/index.test.js +13 -69
- package/MoreVertIcon/__snapshots__/index.test.tsx.snap +0 -294
- package/MoreVertIcon/index.test.js +13 -61
- package/UncheckIcon/__snapshots__/index.test.tsx.snap +0 -222
- package/UncheckIcon/index.test.js +15 -63
- package/es/AccessibilityIcon/__snapshots__/index.test.tsx.snap +0 -315
- package/es/AccessibilityIcon/index.test.js +13 -69
- package/es/ArrowIcon/__snapshots__/index.test.tsx.snap +1 -1
- package/es/CheckIcon/__snapshots__/index.test.tsx.snap +0 -259
- package/es/CheckIcon/index.test.js +13 -69
- package/es/MoreVertIcon/__snapshots__/index.test.tsx.snap +0 -294
- package/es/MoreVertIcon/index.test.js +13 -61
- package/es/UncheckIcon/__snapshots__/index.test.tsx.snap +0 -222
- package/es/UncheckIcon/index.test.js +15 -63
- package/esm/AccessibilityIcon/__snapshots__/index.test.tsx.snap +0 -315
- package/esm/AccessibilityIcon/index.test.js +13 -69
- package/esm/ArrowIcon/__snapshots__/index.test.tsx.snap +1 -1
- package/esm/CheckIcon/__snapshots__/index.test.tsx.snap +0 -259
- package/esm/CheckIcon/index.test.js +13 -69
- package/esm/MoreVertIcon/__snapshots__/index.test.tsx.snap +0 -294
- package/esm/MoreVertIcon/index.test.js +13 -61
- package/esm/UncheckIcon/__snapshots__/index.test.tsx.snap +0 -222
- package/esm/UncheckIcon/index.test.js +15 -63
- package/package.json +3 -3
- package/src/AccessibilityIcon/__snapshots__/index.test.tsx.snap +0 -315
- package/src/AccessibilityIcon/index.test.tsx +0 -21
- package/src/ArrowIcon/__snapshots__/index.test.tsx.snap +1 -1
- package/src/CheckIcon/__snapshots__/index.test.tsx.snap +0 -259
- package/src/CheckIcon/index.test.tsx +0 -21
- package/src/MoreVertIcon/__snapshots__/index.test.tsx.snap +0 -294
- package/src/MoreVertIcon/index.test.tsx +0 -18
- package/src/UncheckIcon/__snapshots__/index.test.tsx.snap +0 -222
- package/src/UncheckIcon/index.test.tsx +0 -18
|
@@ -33,43 +33,6 @@ exports[`renders the CheckIcon with no props 1`] = `
|
|
|
33
33
|
</CheckIcon>
|
|
34
34
|
`;
|
|
35
35
|
|
|
36
|
-
exports[`renders the CheckIcon with prop size=l 1`] = `
|
|
37
|
-
<CheckIcon
|
|
38
|
-
size="lg"
|
|
39
|
-
>
|
|
40
|
-
<ForwardRef(Icon)
|
|
41
|
-
icon="check"
|
|
42
|
-
size="lg"
|
|
43
|
-
>
|
|
44
|
-
<ForwardRef(SvgIcon)
|
|
45
|
-
className="govgr-svg-icon--check"
|
|
46
|
-
size="lg"
|
|
47
|
-
>
|
|
48
|
-
<ForwardRef(Base)
|
|
49
|
-
aria-hidden="true"
|
|
50
|
-
as="svg"
|
|
51
|
-
className="govgr-svg-icon--check govgr-svg-icon--lg govgr-svg-icon"
|
|
52
|
-
focusable="false"
|
|
53
|
-
viewBox="0 0 24 24"
|
|
54
|
-
>
|
|
55
|
-
<svg
|
|
56
|
-
aria-hidden="true"
|
|
57
|
-
className="govgr-svg-icon--check govgr-svg-icon--lg govgr-svg-icon"
|
|
58
|
-
focusable="false"
|
|
59
|
-
viewBox="0 0 24 24"
|
|
60
|
-
>
|
|
61
|
-
<check>
|
|
62
|
-
<polygon
|
|
63
|
-
points="9.49 14.94 4.16 9.67 1.84 12.01 9.5 19.6 22.16 7.05 19.84 4.7 9.5 14.94"
|
|
64
|
-
/>
|
|
65
|
-
</check>
|
|
66
|
-
</svg>
|
|
67
|
-
</ForwardRef(Base)>
|
|
68
|
-
</ForwardRef(SvgIcon)>
|
|
69
|
-
</ForwardRef(Icon)>
|
|
70
|
-
</CheckIcon>
|
|
71
|
-
`;
|
|
72
|
-
|
|
73
36
|
exports[`renders the CheckIcon with prop size=m 1`] = `
|
|
74
37
|
<CheckIcon
|
|
75
38
|
size="md"
|
|
@@ -107,43 +70,6 @@ exports[`renders the CheckIcon with prop size=m 1`] = `
|
|
|
107
70
|
</CheckIcon>
|
|
108
71
|
`;
|
|
109
72
|
|
|
110
|
-
exports[`renders the CheckIcon with prop size=s 1`] = `
|
|
111
|
-
<CheckIcon
|
|
112
|
-
size="sm"
|
|
113
|
-
>
|
|
114
|
-
<ForwardRef(Icon)
|
|
115
|
-
icon="check"
|
|
116
|
-
size="sm"
|
|
117
|
-
>
|
|
118
|
-
<ForwardRef(SvgIcon)
|
|
119
|
-
className="govgr-svg-icon--check"
|
|
120
|
-
size="sm"
|
|
121
|
-
>
|
|
122
|
-
<ForwardRef(Base)
|
|
123
|
-
aria-hidden="true"
|
|
124
|
-
as="svg"
|
|
125
|
-
className="govgr-svg-icon--check govgr-svg-icon--sm govgr-svg-icon"
|
|
126
|
-
focusable="false"
|
|
127
|
-
viewBox="0 0 24 24"
|
|
128
|
-
>
|
|
129
|
-
<svg
|
|
130
|
-
aria-hidden="true"
|
|
131
|
-
className="govgr-svg-icon--check govgr-svg-icon--sm govgr-svg-icon"
|
|
132
|
-
focusable="false"
|
|
133
|
-
viewBox="0 0 24 24"
|
|
134
|
-
>
|
|
135
|
-
<check>
|
|
136
|
-
<polygon
|
|
137
|
-
points="9.49 14.94 4.16 9.67 1.84 12.01 9.5 19.6 22.16 7.05 19.84 4.7 9.5 14.94"
|
|
138
|
-
/>
|
|
139
|
-
</check>
|
|
140
|
-
</svg>
|
|
141
|
-
</ForwardRef(Base)>
|
|
142
|
-
</ForwardRef(SvgIcon)>
|
|
143
|
-
</ForwardRef(Icon)>
|
|
144
|
-
</CheckIcon>
|
|
145
|
-
`;
|
|
146
|
-
|
|
147
73
|
exports[`renders the CheckIcon with prop size=xl 1`] = `
|
|
148
74
|
<CheckIcon
|
|
149
75
|
size="xl"
|
|
@@ -181,80 +107,6 @@ exports[`renders the CheckIcon with prop size=xl 1`] = `
|
|
|
181
107
|
</CheckIcon>
|
|
182
108
|
`;
|
|
183
109
|
|
|
184
|
-
exports[`renders the CheckIcon with prop variant=dark 1`] = `
|
|
185
|
-
<CheckIcon
|
|
186
|
-
variant="dark"
|
|
187
|
-
>
|
|
188
|
-
<ForwardRef(Icon)
|
|
189
|
-
icon="check"
|
|
190
|
-
variant="dark"
|
|
191
|
-
>
|
|
192
|
-
<ForwardRef(SvgIcon)
|
|
193
|
-
className="govgr-svg-icon--check"
|
|
194
|
-
variant="dark"
|
|
195
|
-
>
|
|
196
|
-
<ForwardRef(Base)
|
|
197
|
-
aria-hidden="true"
|
|
198
|
-
as="svg"
|
|
199
|
-
className="govgr-svg-icon--check govgr-svg-icon--dark govgr-svg-icon"
|
|
200
|
-
focusable="false"
|
|
201
|
-
viewBox="0 0 24 24"
|
|
202
|
-
>
|
|
203
|
-
<svg
|
|
204
|
-
aria-hidden="true"
|
|
205
|
-
className="govgr-svg-icon--check govgr-svg-icon--dark govgr-svg-icon"
|
|
206
|
-
focusable="false"
|
|
207
|
-
viewBox="0 0 24 24"
|
|
208
|
-
>
|
|
209
|
-
<check>
|
|
210
|
-
<polygon
|
|
211
|
-
points="9.49 14.94 4.16 9.67 1.84 12.01 9.5 19.6 22.16 7.05 19.84 4.7 9.5 14.94"
|
|
212
|
-
/>
|
|
213
|
-
</check>
|
|
214
|
-
</svg>
|
|
215
|
-
</ForwardRef(Base)>
|
|
216
|
-
</ForwardRef(SvgIcon)>
|
|
217
|
-
</ForwardRef(Icon)>
|
|
218
|
-
</CheckIcon>
|
|
219
|
-
`;
|
|
220
|
-
|
|
221
|
-
exports[`renders the CheckIcon with prop variant=error 1`] = `
|
|
222
|
-
<CheckIcon
|
|
223
|
-
variant="error"
|
|
224
|
-
>
|
|
225
|
-
<ForwardRef(Icon)
|
|
226
|
-
icon="check"
|
|
227
|
-
variant="error"
|
|
228
|
-
>
|
|
229
|
-
<ForwardRef(SvgIcon)
|
|
230
|
-
className="govgr-svg-icon--check"
|
|
231
|
-
variant="error"
|
|
232
|
-
>
|
|
233
|
-
<ForwardRef(Base)
|
|
234
|
-
aria-hidden="true"
|
|
235
|
-
as="svg"
|
|
236
|
-
className="govgr-svg-icon--check govgr-svg-icon--error govgr-svg-icon"
|
|
237
|
-
focusable="false"
|
|
238
|
-
viewBox="0 0 24 24"
|
|
239
|
-
>
|
|
240
|
-
<svg
|
|
241
|
-
aria-hidden="true"
|
|
242
|
-
className="govgr-svg-icon--check govgr-svg-icon--error govgr-svg-icon"
|
|
243
|
-
focusable="false"
|
|
244
|
-
viewBox="0 0 24 24"
|
|
245
|
-
>
|
|
246
|
-
<check>
|
|
247
|
-
<polygon
|
|
248
|
-
points="9.49 14.94 4.16 9.67 1.84 12.01 9.5 19.6 22.16 7.05 19.84 4.7 9.5 14.94"
|
|
249
|
-
/>
|
|
250
|
-
</check>
|
|
251
|
-
</svg>
|
|
252
|
-
</ForwardRef(Base)>
|
|
253
|
-
</ForwardRef(SvgIcon)>
|
|
254
|
-
</ForwardRef(Icon)>
|
|
255
|
-
</CheckIcon>
|
|
256
|
-
`;
|
|
257
|
-
|
|
258
110
|
exports[`renders the CheckIcon with prop variant=error and size= xl 1`] = `
|
|
259
111
|
<CheckIcon
|
|
260
112
|
size="xl"
|
|
@@ -295,80 +147,6 @@ exports[`renders the CheckIcon with prop variant=error and size= xl 1`] = `
|
|
|
295
147
|
</CheckIcon>
|
|
296
148
|
`;
|
|
297
149
|
|
|
298
|
-
exports[`renders the CheckIcon with prop variant=focus 1`] = `
|
|
299
|
-
<CheckIcon
|
|
300
|
-
variant="focus"
|
|
301
|
-
>
|
|
302
|
-
<ForwardRef(Icon)
|
|
303
|
-
icon="check"
|
|
304
|
-
variant="focus"
|
|
305
|
-
>
|
|
306
|
-
<ForwardRef(SvgIcon)
|
|
307
|
-
className="govgr-svg-icon--check"
|
|
308
|
-
variant="focus"
|
|
309
|
-
>
|
|
310
|
-
<ForwardRef(Base)
|
|
311
|
-
aria-hidden="true"
|
|
312
|
-
as="svg"
|
|
313
|
-
className="govgr-svg-icon--check govgr-svg-icon--focus govgr-svg-icon"
|
|
314
|
-
focusable="false"
|
|
315
|
-
viewBox="0 0 24 24"
|
|
316
|
-
>
|
|
317
|
-
<svg
|
|
318
|
-
aria-hidden="true"
|
|
319
|
-
className="govgr-svg-icon--check govgr-svg-icon--focus govgr-svg-icon"
|
|
320
|
-
focusable="false"
|
|
321
|
-
viewBox="0 0 24 24"
|
|
322
|
-
>
|
|
323
|
-
<check>
|
|
324
|
-
<polygon
|
|
325
|
-
points="9.49 14.94 4.16 9.67 1.84 12.01 9.5 19.6 22.16 7.05 19.84 4.7 9.5 14.94"
|
|
326
|
-
/>
|
|
327
|
-
</check>
|
|
328
|
-
</svg>
|
|
329
|
-
</ForwardRef(Base)>
|
|
330
|
-
</ForwardRef(SvgIcon)>
|
|
331
|
-
</ForwardRef(Icon)>
|
|
332
|
-
</CheckIcon>
|
|
333
|
-
`;
|
|
334
|
-
|
|
335
|
-
exports[`renders the CheckIcon with prop variant=gray 1`] = `
|
|
336
|
-
<CheckIcon
|
|
337
|
-
variant="gray"
|
|
338
|
-
>
|
|
339
|
-
<ForwardRef(Icon)
|
|
340
|
-
icon="check"
|
|
341
|
-
variant="gray"
|
|
342
|
-
>
|
|
343
|
-
<ForwardRef(SvgIcon)
|
|
344
|
-
className="govgr-svg-icon--check"
|
|
345
|
-
variant="gray"
|
|
346
|
-
>
|
|
347
|
-
<ForwardRef(Base)
|
|
348
|
-
aria-hidden="true"
|
|
349
|
-
as="svg"
|
|
350
|
-
className="govgr-svg-icon--check govgr-svg-icon--gray govgr-svg-icon"
|
|
351
|
-
focusable="false"
|
|
352
|
-
viewBox="0 0 24 24"
|
|
353
|
-
>
|
|
354
|
-
<svg
|
|
355
|
-
aria-hidden="true"
|
|
356
|
-
className="govgr-svg-icon--check govgr-svg-icon--gray govgr-svg-icon"
|
|
357
|
-
focusable="false"
|
|
358
|
-
viewBox="0 0 24 24"
|
|
359
|
-
>
|
|
360
|
-
<check>
|
|
361
|
-
<polygon
|
|
362
|
-
points="9.49 14.94 4.16 9.67 1.84 12.01 9.5 19.6 22.16 7.05 19.84 4.7 9.5 14.94"
|
|
363
|
-
/>
|
|
364
|
-
</check>
|
|
365
|
-
</svg>
|
|
366
|
-
</ForwardRef(Base)>
|
|
367
|
-
</ForwardRef(SvgIcon)>
|
|
368
|
-
</ForwardRef(Icon)>
|
|
369
|
-
</CheckIcon>
|
|
370
|
-
`;
|
|
371
|
-
|
|
372
150
|
exports[`renders the CheckIcon with prop variant=light 1`] = `
|
|
373
151
|
<CheckIcon
|
|
374
152
|
variant="light"
|
|
@@ -406,43 +184,6 @@ exports[`renders the CheckIcon with prop variant=light 1`] = `
|
|
|
406
184
|
</CheckIcon>
|
|
407
185
|
`;
|
|
408
186
|
|
|
409
|
-
exports[`renders the CheckIcon with prop variant=primary 1`] = `
|
|
410
|
-
<CheckIcon
|
|
411
|
-
variant="primary"
|
|
412
|
-
>
|
|
413
|
-
<ForwardRef(Icon)
|
|
414
|
-
icon="check"
|
|
415
|
-
variant="primary"
|
|
416
|
-
>
|
|
417
|
-
<ForwardRef(SvgIcon)
|
|
418
|
-
className="govgr-svg-icon--check"
|
|
419
|
-
variant="primary"
|
|
420
|
-
>
|
|
421
|
-
<ForwardRef(Base)
|
|
422
|
-
aria-hidden="true"
|
|
423
|
-
as="svg"
|
|
424
|
-
className="govgr-svg-icon--check govgr-svg-icon--primary govgr-svg-icon"
|
|
425
|
-
focusable="false"
|
|
426
|
-
viewBox="0 0 24 24"
|
|
427
|
-
>
|
|
428
|
-
<svg
|
|
429
|
-
aria-hidden="true"
|
|
430
|
-
className="govgr-svg-icon--check govgr-svg-icon--primary govgr-svg-icon"
|
|
431
|
-
focusable="false"
|
|
432
|
-
viewBox="0 0 24 24"
|
|
433
|
-
>
|
|
434
|
-
<check>
|
|
435
|
-
<polygon
|
|
436
|
-
points="9.49 14.94 4.16 9.67 1.84 12.01 9.5 19.6 22.16 7.05 19.84 4.7 9.5 14.94"
|
|
437
|
-
/>
|
|
438
|
-
</check>
|
|
439
|
-
</svg>
|
|
440
|
-
</ForwardRef(Base)>
|
|
441
|
-
</ForwardRef(SvgIcon)>
|
|
442
|
-
</ForwardRef(Icon)>
|
|
443
|
-
</CheckIcon>
|
|
444
|
-
`;
|
|
445
|
-
|
|
446
187
|
exports[`renders the CheckIcon with prop variant=success 1`] = `
|
|
447
188
|
<CheckIcon
|
|
448
189
|
variant="success"
|
|
@@ -6,42 +6,21 @@ import CheckIcon from '@digigov/react-icons/CheckIcon';
|
|
|
6
6
|
it('renders the CheckIcon with no props', () => {
|
|
7
7
|
expect(mount(<CheckIcon />)).toMatchSnapshot();
|
|
8
8
|
});
|
|
9
|
-
it('renders the CheckIcon with prop size=s', () => {
|
|
10
|
-
expect(mount(<CheckIcon size="sm" />)).toMatchSnapshot();
|
|
11
|
-
});
|
|
12
9
|
it('renders the CheckIcon with prop size=m', () => {
|
|
13
10
|
expect(mount(<CheckIcon size="md" />)).toMatchSnapshot();
|
|
14
11
|
});
|
|
15
|
-
it('renders the CheckIcon with prop size=l', () => {
|
|
16
|
-
expect(mount(<CheckIcon size="lg" />)).toMatchSnapshot();
|
|
17
|
-
});
|
|
18
12
|
it('renders the CheckIcon with prop size=xl', () => {
|
|
19
13
|
expect(mount(<CheckIcon size="xl" />)).toMatchSnapshot();
|
|
20
14
|
});
|
|
21
|
-
it('renders the CheckIcon with prop variant=dark', () => {
|
|
22
|
-
expect(mount(<CheckIcon variant="dark" />)).toMatchSnapshot();
|
|
23
|
-
});
|
|
24
15
|
it('renders the CheckIcon with prop variant=light', () => {
|
|
25
16
|
expect(mount(<CheckIcon variant="light" />)).toMatchSnapshot();
|
|
26
17
|
});
|
|
27
|
-
it('renders the CheckIcon with prop variant=gray', () => {
|
|
28
|
-
expect(mount(<CheckIcon variant="gray" />)).toMatchSnapshot();
|
|
29
|
-
});
|
|
30
|
-
it('renders the CheckIcon with prop variant=primary', () => {
|
|
31
|
-
expect(mount(<CheckIcon variant="primary" />)).toMatchSnapshot();
|
|
32
|
-
});
|
|
33
18
|
it('renders the CheckIcon with prop variant=success', () => {
|
|
34
19
|
expect(mount(<CheckIcon variant="success" />)).toMatchSnapshot();
|
|
35
20
|
});
|
|
36
21
|
it('renders the CheckIcon with prop variant=warning', () => {
|
|
37
22
|
expect(mount(<CheckIcon variant="warning" />)).toMatchSnapshot();
|
|
38
23
|
});
|
|
39
|
-
it('renders the CheckIcon with prop variant=error', () => {
|
|
40
|
-
expect(mount(<CheckIcon variant="error" />)).toMatchSnapshot();
|
|
41
|
-
});
|
|
42
|
-
it('renders the CheckIcon with prop variant=focus', () => {
|
|
43
|
-
expect(mount(<CheckIcon variant="focus" />)).toMatchSnapshot();
|
|
44
|
-
});
|
|
45
24
|
it('renders the CheckIcon with prop variant=warning and size=s', () => {
|
|
46
25
|
expect(mount(<CheckIcon variant="warning" size="sm" />)).toMatchSnapshot();
|
|
47
26
|
});
|
|
@@ -94,55 +94,6 @@ exports[`renders the MoreVertIcon with prop size=l 1`] = `
|
|
|
94
94
|
</MoreVertIcon>
|
|
95
95
|
`;
|
|
96
96
|
|
|
97
|
-
exports[`renders the MoreVertIcon with prop size=m 1`] = `
|
|
98
|
-
<MoreVertIcon
|
|
99
|
-
size="md"
|
|
100
|
-
>
|
|
101
|
-
<ForwardRef(Icon)
|
|
102
|
-
icon="moreVert"
|
|
103
|
-
size="md"
|
|
104
|
-
>
|
|
105
|
-
<ForwardRef(SvgIcon)
|
|
106
|
-
className="govgr-svg-icon--moreVert"
|
|
107
|
-
size="md"
|
|
108
|
-
>
|
|
109
|
-
<ForwardRef(Base)
|
|
110
|
-
aria-hidden="true"
|
|
111
|
-
as="svg"
|
|
112
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--md govgr-svg-icon"
|
|
113
|
-
focusable="false"
|
|
114
|
-
viewBox="0 0 24 24"
|
|
115
|
-
>
|
|
116
|
-
<svg
|
|
117
|
-
aria-hidden="true"
|
|
118
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--md govgr-svg-icon"
|
|
119
|
-
focusable="false"
|
|
120
|
-
viewBox="0 0 24 24"
|
|
121
|
-
>
|
|
122
|
-
<moreVert>
|
|
123
|
-
<circle
|
|
124
|
-
cx="12"
|
|
125
|
-
cy="5"
|
|
126
|
-
r="2"
|
|
127
|
-
/>
|
|
128
|
-
<circle
|
|
129
|
-
cx="12"
|
|
130
|
-
cy="12"
|
|
131
|
-
r="2"
|
|
132
|
-
/>
|
|
133
|
-
<circle
|
|
134
|
-
cx="12"
|
|
135
|
-
cy="19"
|
|
136
|
-
r="2"
|
|
137
|
-
/>
|
|
138
|
-
</moreVert>
|
|
139
|
-
</svg>
|
|
140
|
-
</ForwardRef(Base)>
|
|
141
|
-
</ForwardRef(SvgIcon)>
|
|
142
|
-
</ForwardRef(Icon)>
|
|
143
|
-
</MoreVertIcon>
|
|
144
|
-
`;
|
|
145
|
-
|
|
146
97
|
exports[`renders the MoreVertIcon with prop size=s 1`] = `
|
|
147
98
|
<MoreVertIcon
|
|
148
99
|
size="sm"
|
|
@@ -192,55 +143,6 @@ exports[`renders the MoreVertIcon with prop size=s 1`] = `
|
|
|
192
143
|
</MoreVertIcon>
|
|
193
144
|
`;
|
|
194
145
|
|
|
195
|
-
exports[`renders the MoreVertIcon with prop size=xl 1`] = `
|
|
196
|
-
<MoreVertIcon
|
|
197
|
-
size="xl"
|
|
198
|
-
>
|
|
199
|
-
<ForwardRef(Icon)
|
|
200
|
-
icon="moreVert"
|
|
201
|
-
size="xl"
|
|
202
|
-
>
|
|
203
|
-
<ForwardRef(SvgIcon)
|
|
204
|
-
className="govgr-svg-icon--moreVert"
|
|
205
|
-
size="xl"
|
|
206
|
-
>
|
|
207
|
-
<ForwardRef(Base)
|
|
208
|
-
aria-hidden="true"
|
|
209
|
-
as="svg"
|
|
210
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--xl govgr-svg-icon"
|
|
211
|
-
focusable="false"
|
|
212
|
-
viewBox="0 0 24 24"
|
|
213
|
-
>
|
|
214
|
-
<svg
|
|
215
|
-
aria-hidden="true"
|
|
216
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--xl govgr-svg-icon"
|
|
217
|
-
focusable="false"
|
|
218
|
-
viewBox="0 0 24 24"
|
|
219
|
-
>
|
|
220
|
-
<moreVert>
|
|
221
|
-
<circle
|
|
222
|
-
cx="12"
|
|
223
|
-
cy="5"
|
|
224
|
-
r="2"
|
|
225
|
-
/>
|
|
226
|
-
<circle
|
|
227
|
-
cx="12"
|
|
228
|
-
cy="12"
|
|
229
|
-
r="2"
|
|
230
|
-
/>
|
|
231
|
-
<circle
|
|
232
|
-
cx="12"
|
|
233
|
-
cy="19"
|
|
234
|
-
r="2"
|
|
235
|
-
/>
|
|
236
|
-
</moreVert>
|
|
237
|
-
</svg>
|
|
238
|
-
</ForwardRef(Base)>
|
|
239
|
-
</ForwardRef(SvgIcon)>
|
|
240
|
-
</ForwardRef(Icon)>
|
|
241
|
-
</MoreVertIcon>
|
|
242
|
-
`;
|
|
243
|
-
|
|
244
146
|
exports[`renders the MoreVertIcon with prop variant=dark 1`] = `
|
|
245
147
|
<MoreVertIcon
|
|
246
148
|
variant="dark"
|
|
@@ -290,55 +192,6 @@ exports[`renders the MoreVertIcon with prop variant=dark 1`] = `
|
|
|
290
192
|
</MoreVertIcon>
|
|
291
193
|
`;
|
|
292
194
|
|
|
293
|
-
exports[`renders the MoreVertIcon with prop variant=error 1`] = `
|
|
294
|
-
<MoreVertIcon
|
|
295
|
-
variant="error"
|
|
296
|
-
>
|
|
297
|
-
<ForwardRef(Icon)
|
|
298
|
-
icon="moreVert"
|
|
299
|
-
variant="error"
|
|
300
|
-
>
|
|
301
|
-
<ForwardRef(SvgIcon)
|
|
302
|
-
className="govgr-svg-icon--moreVert"
|
|
303
|
-
variant="error"
|
|
304
|
-
>
|
|
305
|
-
<ForwardRef(Base)
|
|
306
|
-
aria-hidden="true"
|
|
307
|
-
as="svg"
|
|
308
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--error govgr-svg-icon"
|
|
309
|
-
focusable="false"
|
|
310
|
-
viewBox="0 0 24 24"
|
|
311
|
-
>
|
|
312
|
-
<svg
|
|
313
|
-
aria-hidden="true"
|
|
314
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--error govgr-svg-icon"
|
|
315
|
-
focusable="false"
|
|
316
|
-
viewBox="0 0 24 24"
|
|
317
|
-
>
|
|
318
|
-
<moreVert>
|
|
319
|
-
<circle
|
|
320
|
-
cx="12"
|
|
321
|
-
cy="5"
|
|
322
|
-
r="2"
|
|
323
|
-
/>
|
|
324
|
-
<circle
|
|
325
|
-
cx="12"
|
|
326
|
-
cy="12"
|
|
327
|
-
r="2"
|
|
328
|
-
/>
|
|
329
|
-
<circle
|
|
330
|
-
cx="12"
|
|
331
|
-
cy="19"
|
|
332
|
-
r="2"
|
|
333
|
-
/>
|
|
334
|
-
</moreVert>
|
|
335
|
-
</svg>
|
|
336
|
-
</ForwardRef(Base)>
|
|
337
|
-
</ForwardRef(SvgIcon)>
|
|
338
|
-
</ForwardRef(Icon)>
|
|
339
|
-
</MoreVertIcon>
|
|
340
|
-
`;
|
|
341
|
-
|
|
342
195
|
exports[`renders the MoreVertIcon with prop variant=error and size= xl 1`] = `
|
|
343
196
|
<MoreVertIcon
|
|
344
197
|
size="xl"
|
|
@@ -440,104 +293,6 @@ exports[`renders the MoreVertIcon with prop variant=focus 1`] = `
|
|
|
440
293
|
</MoreVertIcon>
|
|
441
294
|
`;
|
|
442
295
|
|
|
443
|
-
exports[`renders the MoreVertIcon with prop variant=gray 1`] = `
|
|
444
|
-
<MoreVertIcon
|
|
445
|
-
variant="gray"
|
|
446
|
-
>
|
|
447
|
-
<ForwardRef(Icon)
|
|
448
|
-
icon="moreVert"
|
|
449
|
-
variant="gray"
|
|
450
|
-
>
|
|
451
|
-
<ForwardRef(SvgIcon)
|
|
452
|
-
className="govgr-svg-icon--moreVert"
|
|
453
|
-
variant="gray"
|
|
454
|
-
>
|
|
455
|
-
<ForwardRef(Base)
|
|
456
|
-
aria-hidden="true"
|
|
457
|
-
as="svg"
|
|
458
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--gray govgr-svg-icon"
|
|
459
|
-
focusable="false"
|
|
460
|
-
viewBox="0 0 24 24"
|
|
461
|
-
>
|
|
462
|
-
<svg
|
|
463
|
-
aria-hidden="true"
|
|
464
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--gray govgr-svg-icon"
|
|
465
|
-
focusable="false"
|
|
466
|
-
viewBox="0 0 24 24"
|
|
467
|
-
>
|
|
468
|
-
<moreVert>
|
|
469
|
-
<circle
|
|
470
|
-
cx="12"
|
|
471
|
-
cy="5"
|
|
472
|
-
r="2"
|
|
473
|
-
/>
|
|
474
|
-
<circle
|
|
475
|
-
cx="12"
|
|
476
|
-
cy="12"
|
|
477
|
-
r="2"
|
|
478
|
-
/>
|
|
479
|
-
<circle
|
|
480
|
-
cx="12"
|
|
481
|
-
cy="19"
|
|
482
|
-
r="2"
|
|
483
|
-
/>
|
|
484
|
-
</moreVert>
|
|
485
|
-
</svg>
|
|
486
|
-
</ForwardRef(Base)>
|
|
487
|
-
</ForwardRef(SvgIcon)>
|
|
488
|
-
</ForwardRef(Icon)>
|
|
489
|
-
</MoreVertIcon>
|
|
490
|
-
`;
|
|
491
|
-
|
|
492
|
-
exports[`renders the MoreVertIcon with prop variant=light 1`] = `
|
|
493
|
-
<MoreVertIcon
|
|
494
|
-
variant="light"
|
|
495
|
-
>
|
|
496
|
-
<ForwardRef(Icon)
|
|
497
|
-
icon="moreVert"
|
|
498
|
-
variant="light"
|
|
499
|
-
>
|
|
500
|
-
<ForwardRef(SvgIcon)
|
|
501
|
-
className="govgr-svg-icon--moreVert"
|
|
502
|
-
variant="light"
|
|
503
|
-
>
|
|
504
|
-
<ForwardRef(Base)
|
|
505
|
-
aria-hidden="true"
|
|
506
|
-
as="svg"
|
|
507
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--light govgr-svg-icon"
|
|
508
|
-
focusable="false"
|
|
509
|
-
viewBox="0 0 24 24"
|
|
510
|
-
>
|
|
511
|
-
<svg
|
|
512
|
-
aria-hidden="true"
|
|
513
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--light govgr-svg-icon"
|
|
514
|
-
focusable="false"
|
|
515
|
-
viewBox="0 0 24 24"
|
|
516
|
-
>
|
|
517
|
-
<moreVert>
|
|
518
|
-
<circle
|
|
519
|
-
cx="12"
|
|
520
|
-
cy="5"
|
|
521
|
-
r="2"
|
|
522
|
-
/>
|
|
523
|
-
<circle
|
|
524
|
-
cx="12"
|
|
525
|
-
cy="12"
|
|
526
|
-
r="2"
|
|
527
|
-
/>
|
|
528
|
-
<circle
|
|
529
|
-
cx="12"
|
|
530
|
-
cy="19"
|
|
531
|
-
r="2"
|
|
532
|
-
/>
|
|
533
|
-
</moreVert>
|
|
534
|
-
</svg>
|
|
535
|
-
</ForwardRef(Base)>
|
|
536
|
-
</ForwardRef(SvgIcon)>
|
|
537
|
-
</ForwardRef(Icon)>
|
|
538
|
-
</MoreVertIcon>
|
|
539
|
-
`;
|
|
540
|
-
|
|
541
296
|
exports[`renders the MoreVertIcon with prop variant=primary 1`] = `
|
|
542
297
|
<MoreVertIcon
|
|
543
298
|
variant="primary"
|
|
@@ -636,55 +391,6 @@ exports[`renders the MoreVertIcon with prop variant=success 1`] = `
|
|
|
636
391
|
</MoreVertIcon>
|
|
637
392
|
`;
|
|
638
393
|
|
|
639
|
-
exports[`renders the MoreVertIcon with prop variant=warning 1`] = `
|
|
640
|
-
<MoreVertIcon
|
|
641
|
-
variant="warning"
|
|
642
|
-
>
|
|
643
|
-
<ForwardRef(Icon)
|
|
644
|
-
icon="moreVert"
|
|
645
|
-
variant="warning"
|
|
646
|
-
>
|
|
647
|
-
<ForwardRef(SvgIcon)
|
|
648
|
-
className="govgr-svg-icon--moreVert"
|
|
649
|
-
variant="warning"
|
|
650
|
-
>
|
|
651
|
-
<ForwardRef(Base)
|
|
652
|
-
aria-hidden="true"
|
|
653
|
-
as="svg"
|
|
654
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--warning govgr-svg-icon"
|
|
655
|
-
focusable="false"
|
|
656
|
-
viewBox="0 0 24 24"
|
|
657
|
-
>
|
|
658
|
-
<svg
|
|
659
|
-
aria-hidden="true"
|
|
660
|
-
className="govgr-svg-icon--moreVert govgr-svg-icon--warning govgr-svg-icon"
|
|
661
|
-
focusable="false"
|
|
662
|
-
viewBox="0 0 24 24"
|
|
663
|
-
>
|
|
664
|
-
<moreVert>
|
|
665
|
-
<circle
|
|
666
|
-
cx="12"
|
|
667
|
-
cy="5"
|
|
668
|
-
r="2"
|
|
669
|
-
/>
|
|
670
|
-
<circle
|
|
671
|
-
cx="12"
|
|
672
|
-
cy="12"
|
|
673
|
-
r="2"
|
|
674
|
-
/>
|
|
675
|
-
<circle
|
|
676
|
-
cx="12"
|
|
677
|
-
cy="19"
|
|
678
|
-
r="2"
|
|
679
|
-
/>
|
|
680
|
-
</moreVert>
|
|
681
|
-
</svg>
|
|
682
|
-
</ForwardRef(Base)>
|
|
683
|
-
</ForwardRef(SvgIcon)>
|
|
684
|
-
</ForwardRef(Icon)>
|
|
685
|
-
</MoreVertIcon>
|
|
686
|
-
`;
|
|
687
|
-
|
|
688
394
|
exports[`renders the MoreVertIcon with prop variant=warning and size=s 1`] = `
|
|
689
395
|
<MoreVertIcon
|
|
690
396
|
size="sm"
|
|
@@ -9,36 +9,18 @@ it('renders the MoreVertIcon with no props', () => {
|
|
|
9
9
|
it('renders the MoreVertIcon with prop size=s', () => {
|
|
10
10
|
expect(mount(<MoreVertIcon size="sm" />)).toMatchSnapshot();
|
|
11
11
|
});
|
|
12
|
-
it('renders the MoreVertIcon with prop size=m', () => {
|
|
13
|
-
expect(mount(<MoreVertIcon size="md" />)).toMatchSnapshot();
|
|
14
|
-
});
|
|
15
12
|
it('renders the MoreVertIcon with prop size=l', () => {
|
|
16
13
|
expect(mount(<MoreVertIcon size="lg" />)).toMatchSnapshot();
|
|
17
14
|
});
|
|
18
|
-
it('renders the MoreVertIcon with prop size=xl', () => {
|
|
19
|
-
expect(mount(<MoreVertIcon size="xl" />)).toMatchSnapshot();
|
|
20
|
-
});
|
|
21
15
|
it('renders the MoreVertIcon with prop variant=dark', () => {
|
|
22
16
|
expect(mount(<MoreVertIcon variant="dark" />)).toMatchSnapshot();
|
|
23
17
|
});
|
|
24
|
-
it('renders the MoreVertIcon with prop variant=light', () => {
|
|
25
|
-
expect(mount(<MoreVertIcon variant="light" />)).toMatchSnapshot();
|
|
26
|
-
});
|
|
27
|
-
it('renders the MoreVertIcon with prop variant=gray', () => {
|
|
28
|
-
expect(mount(<MoreVertIcon variant="gray" />)).toMatchSnapshot();
|
|
29
|
-
});
|
|
30
18
|
it('renders the MoreVertIcon with prop variant=primary', () => {
|
|
31
19
|
expect(mount(<MoreVertIcon variant="primary" />)).toMatchSnapshot();
|
|
32
20
|
});
|
|
33
21
|
it('renders the MoreVertIcon with prop variant=success', () => {
|
|
34
22
|
expect(mount(<MoreVertIcon variant="success" />)).toMatchSnapshot();
|
|
35
23
|
});
|
|
36
|
-
it('renders the MoreVertIcon with prop variant=warning', () => {
|
|
37
|
-
expect(mount(<MoreVertIcon variant="warning" />)).toMatchSnapshot();
|
|
38
|
-
});
|
|
39
|
-
it('renders the MoreVertIcon with prop variant=error', () => {
|
|
40
|
-
expect(mount(<MoreVertIcon variant="error" />)).toMatchSnapshot();
|
|
41
|
-
});
|
|
42
24
|
it('renders the MoreVertIcon with prop variant=focus', () => {
|
|
43
25
|
expect(mount(<MoreVertIcon variant="focus" />)).toMatchSnapshot();
|
|
44
26
|
});
|