@digigov/react-icons 1.0.0-7c9716da → 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/ArrowIcon/config.d.ts +7 -0
- package/CaretIcon/config.d.ts +7 -0
- 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/ArrowIcon/config.tsx +8 -1
- package/src/CaretIcon/config.tsx +8 -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
|
@@ -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"
|
|
@@ -23,107 +23,59 @@ it('renders the MoreVertIcon with prop size=s', function () {
|
|
|
23
23
|
});
|
|
24
24
|
|
|
25
25
|
var _ref3 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
26
|
-
size: "md"
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
it('renders the MoreVertIcon with prop size=m', function () {
|
|
30
|
-
expect((0, _enzyme.mount)(_ref3)).toMatchSnapshot();
|
|
31
|
-
});
|
|
32
|
-
|
|
33
|
-
var _ref4 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
34
26
|
size: "lg"
|
|
35
27
|
});
|
|
36
28
|
|
|
37
29
|
it('renders the MoreVertIcon with prop size=l', function () {
|
|
38
|
-
expect((0, _enzyme.mount)(
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
var _ref5 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
42
|
-
size: "xl"
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
it('renders the MoreVertIcon with prop size=xl', function () {
|
|
46
|
-
expect((0, _enzyme.mount)(_ref5)).toMatchSnapshot();
|
|
30
|
+
expect((0, _enzyme.mount)(_ref3)).toMatchSnapshot();
|
|
47
31
|
});
|
|
48
32
|
|
|
49
|
-
var
|
|
33
|
+
var _ref4 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
50
34
|
variant: "dark"
|
|
51
35
|
});
|
|
52
36
|
|
|
53
37
|
it('renders the MoreVertIcon with prop variant=dark', function () {
|
|
54
|
-
expect((0, _enzyme.mount)(
|
|
55
|
-
});
|
|
56
|
-
|
|
57
|
-
var _ref7 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
58
|
-
variant: "light"
|
|
59
|
-
});
|
|
60
|
-
|
|
61
|
-
it('renders the MoreVertIcon with prop variant=light', function () {
|
|
62
|
-
expect((0, _enzyme.mount)(_ref7)).toMatchSnapshot();
|
|
63
|
-
});
|
|
64
|
-
|
|
65
|
-
var _ref8 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
66
|
-
variant: "gray"
|
|
67
|
-
});
|
|
68
|
-
|
|
69
|
-
it('renders the MoreVertIcon with prop variant=gray', function () {
|
|
70
|
-
expect((0, _enzyme.mount)(_ref8)).toMatchSnapshot();
|
|
38
|
+
expect((0, _enzyme.mount)(_ref4)).toMatchSnapshot();
|
|
71
39
|
});
|
|
72
40
|
|
|
73
|
-
var
|
|
41
|
+
var _ref5 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
74
42
|
variant: "primary"
|
|
75
43
|
});
|
|
76
44
|
|
|
77
45
|
it('renders the MoreVertIcon with prop variant=primary', function () {
|
|
78
|
-
expect((0, _enzyme.mount)(
|
|
46
|
+
expect((0, _enzyme.mount)(_ref5)).toMatchSnapshot();
|
|
79
47
|
});
|
|
80
48
|
|
|
81
|
-
var
|
|
49
|
+
var _ref6 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
82
50
|
variant: "success"
|
|
83
51
|
});
|
|
84
52
|
|
|
85
53
|
it('renders the MoreVertIcon with prop variant=success', function () {
|
|
86
|
-
expect((0, _enzyme.mount)(
|
|
87
|
-
});
|
|
88
|
-
|
|
89
|
-
var _ref11 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
90
|
-
variant: "warning"
|
|
91
|
-
});
|
|
92
|
-
|
|
93
|
-
it('renders the MoreVertIcon with prop variant=warning', function () {
|
|
94
|
-
expect((0, _enzyme.mount)(_ref11)).toMatchSnapshot();
|
|
95
|
-
});
|
|
96
|
-
|
|
97
|
-
var _ref12 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
98
|
-
variant: "error"
|
|
99
|
-
});
|
|
100
|
-
|
|
101
|
-
it('renders the MoreVertIcon with prop variant=error', function () {
|
|
102
|
-
expect((0, _enzyme.mount)(_ref12)).toMatchSnapshot();
|
|
54
|
+
expect((0, _enzyme.mount)(_ref6)).toMatchSnapshot();
|
|
103
55
|
});
|
|
104
56
|
|
|
105
|
-
var
|
|
57
|
+
var _ref7 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
106
58
|
variant: "focus"
|
|
107
59
|
});
|
|
108
60
|
|
|
109
61
|
it('renders the MoreVertIcon with prop variant=focus', function () {
|
|
110
|
-
expect((0, _enzyme.mount)(
|
|
62
|
+
expect((0, _enzyme.mount)(_ref7)).toMatchSnapshot();
|
|
111
63
|
});
|
|
112
64
|
|
|
113
|
-
var
|
|
65
|
+
var _ref8 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
114
66
|
variant: "warning",
|
|
115
67
|
size: "sm"
|
|
116
68
|
});
|
|
117
69
|
|
|
118
70
|
it('renders the MoreVertIcon with prop variant=warning and size=s', function () {
|
|
119
|
-
expect((0, _enzyme.mount)(
|
|
71
|
+
expect((0, _enzyme.mount)(_ref8)).toMatchSnapshot();
|
|
120
72
|
});
|
|
121
73
|
|
|
122
|
-
var
|
|
74
|
+
var _ref9 = /*#__PURE__*/_react["default"].createElement(_MoreVertIcon["default"], {
|
|
123
75
|
variant: "warning",
|
|
124
76
|
size: "xl"
|
|
125
77
|
});
|
|
126
78
|
|
|
127
79
|
it('renders the MoreVertIcon with prop variant=error and size= xl', function () {
|
|
128
|
-
expect((0, _enzyme.mount)(
|
|
80
|
+
expect((0, _enzyme.mount)(_ref9)).toMatchSnapshot();
|
|
129
81
|
});
|
|
@@ -107,80 +107,6 @@ exports[`renders the UncheckIcon with prop size=m 1`] = `
|
|
|
107
107
|
</UncheckIcon>
|
|
108
108
|
`;
|
|
109
109
|
|
|
110
|
-
exports[`renders the UncheckIcon with prop size=s 1`] = `
|
|
111
|
-
<UncheckIcon
|
|
112
|
-
size="sm"
|
|
113
|
-
>
|
|
114
|
-
<ForwardRef(Icon)
|
|
115
|
-
icon="uncheck"
|
|
116
|
-
size="sm"
|
|
117
|
-
>
|
|
118
|
-
<ForwardRef(SvgIcon)
|
|
119
|
-
className="govgr-svg-icon--uncheck"
|
|
120
|
-
size="sm"
|
|
121
|
-
>
|
|
122
|
-
<ForwardRef(Base)
|
|
123
|
-
aria-hidden="true"
|
|
124
|
-
as="svg"
|
|
125
|
-
className="govgr-svg-icon--uncheck 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--uncheck govgr-svg-icon--sm govgr-svg-icon"
|
|
132
|
-
focusable="false"
|
|
133
|
-
viewBox="0 0 24 24"
|
|
134
|
-
>
|
|
135
|
-
<uncheck>
|
|
136
|
-
<polygon
|
|
137
|
-
points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
|
|
138
|
-
/>
|
|
139
|
-
</uncheck>
|
|
140
|
-
</svg>
|
|
141
|
-
</ForwardRef(Base)>
|
|
142
|
-
</ForwardRef(SvgIcon)>
|
|
143
|
-
</ForwardRef(Icon)>
|
|
144
|
-
</UncheckIcon>
|
|
145
|
-
`;
|
|
146
|
-
|
|
147
|
-
exports[`renders the UncheckIcon with prop size=xl 1`] = `
|
|
148
|
-
<UncheckIcon
|
|
149
|
-
size="xl"
|
|
150
|
-
>
|
|
151
|
-
<ForwardRef(Icon)
|
|
152
|
-
icon="uncheck"
|
|
153
|
-
size="xl"
|
|
154
|
-
>
|
|
155
|
-
<ForwardRef(SvgIcon)
|
|
156
|
-
className="govgr-svg-icon--uncheck"
|
|
157
|
-
size="xl"
|
|
158
|
-
>
|
|
159
|
-
<ForwardRef(Base)
|
|
160
|
-
aria-hidden="true"
|
|
161
|
-
as="svg"
|
|
162
|
-
className="govgr-svg-icon--uncheck govgr-svg-icon--xl govgr-svg-icon"
|
|
163
|
-
focusable="false"
|
|
164
|
-
viewBox="0 0 24 24"
|
|
165
|
-
>
|
|
166
|
-
<svg
|
|
167
|
-
aria-hidden="true"
|
|
168
|
-
className="govgr-svg-icon--uncheck govgr-svg-icon--xl govgr-svg-icon"
|
|
169
|
-
focusable="false"
|
|
170
|
-
viewBox="0 0 24 24"
|
|
171
|
-
>
|
|
172
|
-
<uncheck>
|
|
173
|
-
<polygon
|
|
174
|
-
points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
|
|
175
|
-
/>
|
|
176
|
-
</uncheck>
|
|
177
|
-
</svg>
|
|
178
|
-
</ForwardRef(Base)>
|
|
179
|
-
</ForwardRef(SvgIcon)>
|
|
180
|
-
</ForwardRef(Icon)>
|
|
181
|
-
</UncheckIcon>
|
|
182
|
-
`;
|
|
183
|
-
|
|
184
110
|
exports[`renders the UncheckIcon with prop variant=dark 1`] = `
|
|
185
111
|
<UncheckIcon
|
|
186
112
|
variant="dark"
|
|
@@ -218,43 +144,6 @@ exports[`renders the UncheckIcon with prop variant=dark 1`] = `
|
|
|
218
144
|
</UncheckIcon>
|
|
219
145
|
`;
|
|
220
146
|
|
|
221
|
-
exports[`renders the UncheckIcon with prop variant=error 1`] = `
|
|
222
|
-
<UncheckIcon
|
|
223
|
-
variant="error"
|
|
224
|
-
>
|
|
225
|
-
<ForwardRef(Icon)
|
|
226
|
-
icon="uncheck"
|
|
227
|
-
variant="error"
|
|
228
|
-
>
|
|
229
|
-
<ForwardRef(SvgIcon)
|
|
230
|
-
className="govgr-svg-icon--uncheck"
|
|
231
|
-
variant="error"
|
|
232
|
-
>
|
|
233
|
-
<ForwardRef(Base)
|
|
234
|
-
aria-hidden="true"
|
|
235
|
-
as="svg"
|
|
236
|
-
className="govgr-svg-icon--uncheck 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--uncheck govgr-svg-icon--error govgr-svg-icon"
|
|
243
|
-
focusable="false"
|
|
244
|
-
viewBox="0 0 24 24"
|
|
245
|
-
>
|
|
246
|
-
<uncheck>
|
|
247
|
-
<polygon
|
|
248
|
-
points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
|
|
249
|
-
/>
|
|
250
|
-
</uncheck>
|
|
251
|
-
</svg>
|
|
252
|
-
</ForwardRef(Base)>
|
|
253
|
-
</ForwardRef(SvgIcon)>
|
|
254
|
-
</ForwardRef(Icon)>
|
|
255
|
-
</UncheckIcon>
|
|
256
|
-
`;
|
|
257
|
-
|
|
258
147
|
exports[`renders the UncheckIcon with prop variant=error and size= xl 1`] = `
|
|
259
148
|
<UncheckIcon
|
|
260
149
|
size="xl"
|
|
@@ -295,43 +184,6 @@ exports[`renders the UncheckIcon with prop variant=error and size= xl 1`] = `
|
|
|
295
184
|
</UncheckIcon>
|
|
296
185
|
`;
|
|
297
186
|
|
|
298
|
-
exports[`renders the UncheckIcon with prop variant=focus 1`] = `
|
|
299
|
-
<UncheckIcon
|
|
300
|
-
variant="focus"
|
|
301
|
-
>
|
|
302
|
-
<ForwardRef(Icon)
|
|
303
|
-
icon="uncheck"
|
|
304
|
-
variant="focus"
|
|
305
|
-
>
|
|
306
|
-
<ForwardRef(SvgIcon)
|
|
307
|
-
className="govgr-svg-icon--uncheck"
|
|
308
|
-
variant="focus"
|
|
309
|
-
>
|
|
310
|
-
<ForwardRef(Base)
|
|
311
|
-
aria-hidden="true"
|
|
312
|
-
as="svg"
|
|
313
|
-
className="govgr-svg-icon--uncheck 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--uncheck govgr-svg-icon--focus govgr-svg-icon"
|
|
320
|
-
focusable="false"
|
|
321
|
-
viewBox="0 0 24 24"
|
|
322
|
-
>
|
|
323
|
-
<uncheck>
|
|
324
|
-
<polygon
|
|
325
|
-
points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
|
|
326
|
-
/>
|
|
327
|
-
</uncheck>
|
|
328
|
-
</svg>
|
|
329
|
-
</ForwardRef(Base)>
|
|
330
|
-
</ForwardRef(SvgIcon)>
|
|
331
|
-
</ForwardRef(Icon)>
|
|
332
|
-
</UncheckIcon>
|
|
333
|
-
`;
|
|
334
|
-
|
|
335
187
|
exports[`renders the UncheckIcon with prop variant=gray 1`] = `
|
|
336
188
|
<UncheckIcon
|
|
337
189
|
variant="gray"
|
|
@@ -443,80 +295,6 @@ exports[`renders the UncheckIcon with prop variant=primary 1`] = `
|
|
|
443
295
|
</UncheckIcon>
|
|
444
296
|
`;
|
|
445
297
|
|
|
446
|
-
exports[`renders the UncheckIcon with prop variant=success 1`] = `
|
|
447
|
-
<UncheckIcon
|
|
448
|
-
variant="success"
|
|
449
|
-
>
|
|
450
|
-
<ForwardRef(Icon)
|
|
451
|
-
icon="uncheck"
|
|
452
|
-
variant="success"
|
|
453
|
-
>
|
|
454
|
-
<ForwardRef(SvgIcon)
|
|
455
|
-
className="govgr-svg-icon--uncheck"
|
|
456
|
-
variant="success"
|
|
457
|
-
>
|
|
458
|
-
<ForwardRef(Base)
|
|
459
|
-
aria-hidden="true"
|
|
460
|
-
as="svg"
|
|
461
|
-
className="govgr-svg-icon--uncheck govgr-svg-icon--success govgr-svg-icon"
|
|
462
|
-
focusable="false"
|
|
463
|
-
viewBox="0 0 24 24"
|
|
464
|
-
>
|
|
465
|
-
<svg
|
|
466
|
-
aria-hidden="true"
|
|
467
|
-
className="govgr-svg-icon--uncheck govgr-svg-icon--success govgr-svg-icon"
|
|
468
|
-
focusable="false"
|
|
469
|
-
viewBox="0 0 24 24"
|
|
470
|
-
>
|
|
471
|
-
<uncheck>
|
|
472
|
-
<polygon
|
|
473
|
-
points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
|
|
474
|
-
/>
|
|
475
|
-
</uncheck>
|
|
476
|
-
</svg>
|
|
477
|
-
</ForwardRef(Base)>
|
|
478
|
-
</ForwardRef(SvgIcon)>
|
|
479
|
-
</ForwardRef(Icon)>
|
|
480
|
-
</UncheckIcon>
|
|
481
|
-
`;
|
|
482
|
-
|
|
483
|
-
exports[`renders the UncheckIcon with prop variant=warning 1`] = `
|
|
484
|
-
<UncheckIcon
|
|
485
|
-
variant="warning"
|
|
486
|
-
>
|
|
487
|
-
<ForwardRef(Icon)
|
|
488
|
-
icon="uncheck"
|
|
489
|
-
variant="warning"
|
|
490
|
-
>
|
|
491
|
-
<ForwardRef(SvgIcon)
|
|
492
|
-
className="govgr-svg-icon--uncheck"
|
|
493
|
-
variant="warning"
|
|
494
|
-
>
|
|
495
|
-
<ForwardRef(Base)
|
|
496
|
-
aria-hidden="true"
|
|
497
|
-
as="svg"
|
|
498
|
-
className="govgr-svg-icon--uncheck govgr-svg-icon--warning govgr-svg-icon"
|
|
499
|
-
focusable="false"
|
|
500
|
-
viewBox="0 0 24 24"
|
|
501
|
-
>
|
|
502
|
-
<svg
|
|
503
|
-
aria-hidden="true"
|
|
504
|
-
className="govgr-svg-icon--uncheck govgr-svg-icon--warning govgr-svg-icon"
|
|
505
|
-
focusable="false"
|
|
506
|
-
viewBox="0 0 24 24"
|
|
507
|
-
>
|
|
508
|
-
<uncheck>
|
|
509
|
-
<polygon
|
|
510
|
-
points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
|
|
511
|
-
/>
|
|
512
|
-
</uncheck>
|
|
513
|
-
</svg>
|
|
514
|
-
</ForwardRef(Base)>
|
|
515
|
-
</ForwardRef(SvgIcon)>
|
|
516
|
-
</ForwardRef(Icon)>
|
|
517
|
-
</UncheckIcon>
|
|
518
|
-
`;
|
|
519
|
-
|
|
520
298
|
exports[`renders the UncheckIcon with prop variant=warning and size=s 1`] = `
|
|
521
299
|
<UncheckIcon
|
|
522
300
|
size="sm"
|