@digigov/react-icons 1.1.2 → 1.2.0-01ea6f24
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 +27 -27
- package/ArrowIcon/__snapshots__/index.test.tsx.snap +12 -12
- package/BurgerIcon/__snapshots__/index.test.tsx.snap +38 -38
- package/BurgerIcon/config/index.js +4 -4
- package/CaretIcon/__snapshots__/index.test.tsx.snap +12 -12
- package/CheckIcon/__snapshots__/index.test.tsx.snap +24 -24
- package/CloseIcon/__snapshots__/index.test.tsx.snap +3 -3
- package/GlobeIcon/__snapshots__/index.test.tsx.snap +12 -12
- package/Icon/__snapshots__/index.test.tsx.snap +33 -33
- package/Icon/index.js +1 -1
- package/MoreVertIcon/__snapshots__/index.test.tsx.snap +27 -27
- package/SearchIcon/__snapshots__/index.test.tsx.snap +3 -3
- package/UncheckIcon/__snapshots__/index.test.tsx.snap +27 -27
- package/cjs/AccessibilityIcon/__snapshots__/index.test.tsx.snap +27 -27
- package/cjs/ArrowIcon/__snapshots__/index.test.tsx.snap +12 -12
- package/cjs/BurgerIcon/__snapshots__/index.test.tsx.snap +38 -38
- package/cjs/BurgerIcon/config/index.js +4 -4
- package/cjs/CaretIcon/__snapshots__/index.test.tsx.snap +12 -12
- package/cjs/CheckIcon/__snapshots__/index.test.tsx.snap +24 -24
- package/cjs/CloseIcon/__snapshots__/index.test.tsx.snap +3 -3
- package/cjs/GlobeIcon/__snapshots__/index.test.tsx.snap +12 -12
- package/cjs/Icon/__snapshots__/index.test.tsx.snap +33 -33
- package/cjs/Icon/index.js +1 -1
- package/cjs/MoreVertIcon/__snapshots__/index.test.tsx.snap +27 -27
- package/cjs/SearchIcon/__snapshots__/index.test.tsx.snap +3 -3
- package/cjs/UncheckIcon/__snapshots__/index.test.tsx.snap +27 -27
- package/cjs/lazy/index.js +121 -0
- package/index.js +1 -1
- package/lazy/index.js +87 -0
- package/lazy/package.json +6 -0
- package/lazy.d.ts +15 -0
- package/package.json +2 -2
- package/src/AccessibilityIcon/__snapshots__/index.test.tsx.snap +27 -27
- package/src/ArrowIcon/__snapshots__/index.test.tsx.snap +12 -12
- package/src/BurgerIcon/__snapshots__/index.test.tsx.snap +38 -38
- package/src/BurgerIcon/config.tsx +4 -4
- package/src/CaretIcon/__snapshots__/index.test.tsx.snap +12 -12
- package/src/CheckIcon/__snapshots__/index.test.tsx.snap +24 -24
- package/src/CloseIcon/__snapshots__/index.test.tsx.snap +3 -3
- package/src/GlobeIcon/__snapshots__/index.test.tsx.snap +12 -12
- package/src/Icon/__snapshots__/index.test.tsx.snap +33 -33
- package/src/Icon/index.tsx +1 -1
- package/src/MoreVertIcon/__snapshots__/index.test.tsx.snap +27 -27
- package/src/SearchIcon/__snapshots__/index.test.tsx.snap +3 -3
- package/src/UncheckIcon/__snapshots__/index.test.tsx.snap +27 -27
- package/src/lazy.js +16 -0
|
@@ -6,18 +6,18 @@ exports[`renders the MoreVertIcon with no props 1`] = `
|
|
|
6
6
|
icon="moreVert"
|
|
7
7
|
>
|
|
8
8
|
<ForwardRef(SvgIcon)
|
|
9
|
-
className="
|
|
9
|
+
className="ds-svg-icon--moreVert"
|
|
10
10
|
>
|
|
11
11
|
<ForwardRef(Base)
|
|
12
12
|
aria-hidden="true"
|
|
13
13
|
as="svg"
|
|
14
|
-
className="
|
|
14
|
+
className="ds-svg-icon--moreVert ds-svg-icon"
|
|
15
15
|
focusable="false"
|
|
16
16
|
viewBox="0 0 24 24"
|
|
17
17
|
>
|
|
18
18
|
<svg
|
|
19
19
|
aria-hidden="true"
|
|
20
|
-
className="
|
|
20
|
+
className="ds-svg-icon--moreVert ds-svg-icon"
|
|
21
21
|
focusable="false"
|
|
22
22
|
viewBox="0 0 24 24"
|
|
23
23
|
>
|
|
@@ -54,19 +54,19 @@ exports[`renders the MoreVertIcon with prop size=l 1`] = `
|
|
|
54
54
|
size="lg"
|
|
55
55
|
>
|
|
56
56
|
<ForwardRef(SvgIcon)
|
|
57
|
-
className="
|
|
57
|
+
className="ds-svg-icon--moreVert"
|
|
58
58
|
size="lg"
|
|
59
59
|
>
|
|
60
60
|
<ForwardRef(Base)
|
|
61
61
|
aria-hidden="true"
|
|
62
62
|
as="svg"
|
|
63
|
-
className="
|
|
63
|
+
className="ds-svg-icon--moreVert ds-svg-icon--lg ds-svg-icon"
|
|
64
64
|
focusable="false"
|
|
65
65
|
viewBox="0 0 24 24"
|
|
66
66
|
>
|
|
67
67
|
<svg
|
|
68
68
|
aria-hidden="true"
|
|
69
|
-
className="
|
|
69
|
+
className="ds-svg-icon--moreVert ds-svg-icon--lg ds-svg-icon"
|
|
70
70
|
focusable="false"
|
|
71
71
|
viewBox="0 0 24 24"
|
|
72
72
|
>
|
|
@@ -103,19 +103,19 @@ exports[`renders the MoreVertIcon with prop size=s 1`] = `
|
|
|
103
103
|
size="sm"
|
|
104
104
|
>
|
|
105
105
|
<ForwardRef(SvgIcon)
|
|
106
|
-
className="
|
|
106
|
+
className="ds-svg-icon--moreVert"
|
|
107
107
|
size="sm"
|
|
108
108
|
>
|
|
109
109
|
<ForwardRef(Base)
|
|
110
110
|
aria-hidden="true"
|
|
111
111
|
as="svg"
|
|
112
|
-
className="
|
|
112
|
+
className="ds-svg-icon--moreVert ds-svg-icon--sm ds-svg-icon"
|
|
113
113
|
focusable="false"
|
|
114
114
|
viewBox="0 0 24 24"
|
|
115
115
|
>
|
|
116
116
|
<svg
|
|
117
117
|
aria-hidden="true"
|
|
118
|
-
className="
|
|
118
|
+
className="ds-svg-icon--moreVert ds-svg-icon--sm ds-svg-icon"
|
|
119
119
|
focusable="false"
|
|
120
120
|
viewBox="0 0 24 24"
|
|
121
121
|
>
|
|
@@ -152,19 +152,19 @@ exports[`renders the MoreVertIcon with prop variant=dark 1`] = `
|
|
|
152
152
|
variant="dark"
|
|
153
153
|
>
|
|
154
154
|
<ForwardRef(SvgIcon)
|
|
155
|
-
className="
|
|
155
|
+
className="ds-svg-icon--moreVert"
|
|
156
156
|
variant="dark"
|
|
157
157
|
>
|
|
158
158
|
<ForwardRef(Base)
|
|
159
159
|
aria-hidden="true"
|
|
160
160
|
as="svg"
|
|
161
|
-
className="
|
|
161
|
+
className="ds-svg-icon--moreVert ds-svg-icon--dark ds-svg-icon"
|
|
162
162
|
focusable="false"
|
|
163
163
|
viewBox="0 0 24 24"
|
|
164
164
|
>
|
|
165
165
|
<svg
|
|
166
166
|
aria-hidden="true"
|
|
167
|
-
className="
|
|
167
|
+
className="ds-svg-icon--moreVert ds-svg-icon--dark ds-svg-icon"
|
|
168
168
|
focusable="false"
|
|
169
169
|
viewBox="0 0 24 24"
|
|
170
170
|
>
|
|
@@ -203,20 +203,20 @@ exports[`renders the MoreVertIcon with prop variant=error and size= xl 1`] = `
|
|
|
203
203
|
variant="warning"
|
|
204
204
|
>
|
|
205
205
|
<ForwardRef(SvgIcon)
|
|
206
|
-
className="
|
|
206
|
+
className="ds-svg-icon--moreVert"
|
|
207
207
|
size="xl"
|
|
208
208
|
variant="warning"
|
|
209
209
|
>
|
|
210
210
|
<ForwardRef(Base)
|
|
211
211
|
aria-hidden="true"
|
|
212
212
|
as="svg"
|
|
213
|
-
className="
|
|
213
|
+
className="ds-svg-icon--moreVert ds-svg-icon--warning ds-svg-icon--xl ds-svg-icon"
|
|
214
214
|
focusable="false"
|
|
215
215
|
viewBox="0 0 24 24"
|
|
216
216
|
>
|
|
217
217
|
<svg
|
|
218
218
|
aria-hidden="true"
|
|
219
|
-
className="
|
|
219
|
+
className="ds-svg-icon--moreVert ds-svg-icon--warning ds-svg-icon--xl ds-svg-icon"
|
|
220
220
|
focusable="false"
|
|
221
221
|
viewBox="0 0 24 24"
|
|
222
222
|
>
|
|
@@ -253,19 +253,19 @@ exports[`renders the MoreVertIcon with prop variant=focus 1`] = `
|
|
|
253
253
|
variant="focus"
|
|
254
254
|
>
|
|
255
255
|
<ForwardRef(SvgIcon)
|
|
256
|
-
className="
|
|
256
|
+
className="ds-svg-icon--moreVert"
|
|
257
257
|
variant="focus"
|
|
258
258
|
>
|
|
259
259
|
<ForwardRef(Base)
|
|
260
260
|
aria-hidden="true"
|
|
261
261
|
as="svg"
|
|
262
|
-
className="
|
|
262
|
+
className="ds-svg-icon--moreVert ds-svg-icon--focus ds-svg-icon"
|
|
263
263
|
focusable="false"
|
|
264
264
|
viewBox="0 0 24 24"
|
|
265
265
|
>
|
|
266
266
|
<svg
|
|
267
267
|
aria-hidden="true"
|
|
268
|
-
className="
|
|
268
|
+
className="ds-svg-icon--moreVert ds-svg-icon--focus ds-svg-icon"
|
|
269
269
|
focusable="false"
|
|
270
270
|
viewBox="0 0 24 24"
|
|
271
271
|
>
|
|
@@ -302,19 +302,19 @@ exports[`renders the MoreVertIcon with prop variant=primary 1`] = `
|
|
|
302
302
|
variant="primary"
|
|
303
303
|
>
|
|
304
304
|
<ForwardRef(SvgIcon)
|
|
305
|
-
className="
|
|
305
|
+
className="ds-svg-icon--moreVert"
|
|
306
306
|
variant="primary"
|
|
307
307
|
>
|
|
308
308
|
<ForwardRef(Base)
|
|
309
309
|
aria-hidden="true"
|
|
310
310
|
as="svg"
|
|
311
|
-
className="
|
|
311
|
+
className="ds-svg-icon--moreVert ds-svg-icon--primary ds-svg-icon"
|
|
312
312
|
focusable="false"
|
|
313
313
|
viewBox="0 0 24 24"
|
|
314
314
|
>
|
|
315
315
|
<svg
|
|
316
316
|
aria-hidden="true"
|
|
317
|
-
className="
|
|
317
|
+
className="ds-svg-icon--moreVert ds-svg-icon--primary ds-svg-icon"
|
|
318
318
|
focusable="false"
|
|
319
319
|
viewBox="0 0 24 24"
|
|
320
320
|
>
|
|
@@ -351,19 +351,19 @@ exports[`renders the MoreVertIcon with prop variant=success 1`] = `
|
|
|
351
351
|
variant="success"
|
|
352
352
|
>
|
|
353
353
|
<ForwardRef(SvgIcon)
|
|
354
|
-
className="
|
|
354
|
+
className="ds-svg-icon--moreVert"
|
|
355
355
|
variant="success"
|
|
356
356
|
>
|
|
357
357
|
<ForwardRef(Base)
|
|
358
358
|
aria-hidden="true"
|
|
359
359
|
as="svg"
|
|
360
|
-
className="
|
|
360
|
+
className="ds-svg-icon--moreVert ds-svg-icon--success ds-svg-icon"
|
|
361
361
|
focusable="false"
|
|
362
362
|
viewBox="0 0 24 24"
|
|
363
363
|
>
|
|
364
364
|
<svg
|
|
365
365
|
aria-hidden="true"
|
|
366
|
-
className="
|
|
366
|
+
className="ds-svg-icon--moreVert ds-svg-icon--success ds-svg-icon"
|
|
367
367
|
focusable="false"
|
|
368
368
|
viewBox="0 0 24 24"
|
|
369
369
|
>
|
|
@@ -402,20 +402,20 @@ exports[`renders the MoreVertIcon with prop variant=warning and size=s 1`] = `
|
|
|
402
402
|
variant="warning"
|
|
403
403
|
>
|
|
404
404
|
<ForwardRef(SvgIcon)
|
|
405
|
-
className="
|
|
405
|
+
className="ds-svg-icon--moreVert"
|
|
406
406
|
size="sm"
|
|
407
407
|
variant="warning"
|
|
408
408
|
>
|
|
409
409
|
<ForwardRef(Base)
|
|
410
410
|
aria-hidden="true"
|
|
411
411
|
as="svg"
|
|
412
|
-
className="
|
|
412
|
+
className="ds-svg-icon--moreVert ds-svg-icon--warning ds-svg-icon--sm ds-svg-icon"
|
|
413
413
|
focusable="false"
|
|
414
414
|
viewBox="0 0 24 24"
|
|
415
415
|
>
|
|
416
416
|
<svg
|
|
417
417
|
aria-hidden="true"
|
|
418
|
-
className="
|
|
418
|
+
className="ds-svg-icon--moreVert ds-svg-icon--warning ds-svg-icon--sm ds-svg-icon"
|
|
419
419
|
focusable="false"
|
|
420
420
|
viewBox="0 0 24 24"
|
|
421
421
|
>
|
|
@@ -6,18 +6,18 @@ exports[`renders the SearchIcon with no props 1`] = `
|
|
|
6
6
|
icon="search"
|
|
7
7
|
>
|
|
8
8
|
<ForwardRef(SvgIcon)
|
|
9
|
-
className="
|
|
9
|
+
className="ds-svg-icon--search"
|
|
10
10
|
>
|
|
11
11
|
<ForwardRef(Base)
|
|
12
12
|
aria-hidden="true"
|
|
13
13
|
as="svg"
|
|
14
|
-
className="
|
|
14
|
+
className="ds-svg-icon--search ds-svg-icon"
|
|
15
15
|
focusable="false"
|
|
16
16
|
viewBox="0 0 24 24"
|
|
17
17
|
>
|
|
18
18
|
<svg
|
|
19
19
|
aria-hidden="true"
|
|
20
|
-
className="
|
|
20
|
+
className="ds-svg-icon--search ds-svg-icon"
|
|
21
21
|
focusable="false"
|
|
22
22
|
viewBox="0 0 24 24"
|
|
23
23
|
>
|
|
@@ -6,18 +6,18 @@ exports[`renders the UncheckIcon with no props 1`] = `
|
|
|
6
6
|
icon="uncheck"
|
|
7
7
|
>
|
|
8
8
|
<ForwardRef(SvgIcon)
|
|
9
|
-
className="
|
|
9
|
+
className="ds-svg-icon--uncheck"
|
|
10
10
|
>
|
|
11
11
|
<ForwardRef(Base)
|
|
12
12
|
aria-hidden="true"
|
|
13
13
|
as="svg"
|
|
14
|
-
className="
|
|
14
|
+
className="ds-svg-icon--uncheck ds-svg-icon"
|
|
15
15
|
focusable="false"
|
|
16
16
|
viewBox="0 0 24 24"
|
|
17
17
|
>
|
|
18
18
|
<svg
|
|
19
19
|
aria-hidden="true"
|
|
20
|
-
className="
|
|
20
|
+
className="ds-svg-icon--uncheck ds-svg-icon"
|
|
21
21
|
focusable="false"
|
|
22
22
|
viewBox="0 0 24 24"
|
|
23
23
|
>
|
|
@@ -42,19 +42,19 @@ exports[`renders the UncheckIcon with prop size=l 1`] = `
|
|
|
42
42
|
size="lg"
|
|
43
43
|
>
|
|
44
44
|
<ForwardRef(SvgIcon)
|
|
45
|
-
className="
|
|
45
|
+
className="ds-svg-icon--uncheck"
|
|
46
46
|
size="lg"
|
|
47
47
|
>
|
|
48
48
|
<ForwardRef(Base)
|
|
49
49
|
aria-hidden="true"
|
|
50
50
|
as="svg"
|
|
51
|
-
className="
|
|
51
|
+
className="ds-svg-icon--uncheck ds-svg-icon--lg ds-svg-icon"
|
|
52
52
|
focusable="false"
|
|
53
53
|
viewBox="0 0 24 24"
|
|
54
54
|
>
|
|
55
55
|
<svg
|
|
56
56
|
aria-hidden="true"
|
|
57
|
-
className="
|
|
57
|
+
className="ds-svg-icon--uncheck ds-svg-icon--lg ds-svg-icon"
|
|
58
58
|
focusable="false"
|
|
59
59
|
viewBox="0 0 24 24"
|
|
60
60
|
>
|
|
@@ -79,19 +79,19 @@ exports[`renders the UncheckIcon with prop size=m 1`] = `
|
|
|
79
79
|
size="md"
|
|
80
80
|
>
|
|
81
81
|
<ForwardRef(SvgIcon)
|
|
82
|
-
className="
|
|
82
|
+
className="ds-svg-icon--uncheck"
|
|
83
83
|
size="md"
|
|
84
84
|
>
|
|
85
85
|
<ForwardRef(Base)
|
|
86
86
|
aria-hidden="true"
|
|
87
87
|
as="svg"
|
|
88
|
-
className="
|
|
88
|
+
className="ds-svg-icon--uncheck ds-svg-icon--md ds-svg-icon"
|
|
89
89
|
focusable="false"
|
|
90
90
|
viewBox="0 0 24 24"
|
|
91
91
|
>
|
|
92
92
|
<svg
|
|
93
93
|
aria-hidden="true"
|
|
94
|
-
className="
|
|
94
|
+
className="ds-svg-icon--uncheck ds-svg-icon--md ds-svg-icon"
|
|
95
95
|
focusable="false"
|
|
96
96
|
viewBox="0 0 24 24"
|
|
97
97
|
>
|
|
@@ -116,19 +116,19 @@ exports[`renders the UncheckIcon with prop variant=dark 1`] = `
|
|
|
116
116
|
variant="dark"
|
|
117
117
|
>
|
|
118
118
|
<ForwardRef(SvgIcon)
|
|
119
|
-
className="
|
|
119
|
+
className="ds-svg-icon--uncheck"
|
|
120
120
|
variant="dark"
|
|
121
121
|
>
|
|
122
122
|
<ForwardRef(Base)
|
|
123
123
|
aria-hidden="true"
|
|
124
124
|
as="svg"
|
|
125
|
-
className="
|
|
125
|
+
className="ds-svg-icon--uncheck ds-svg-icon--dark ds-svg-icon"
|
|
126
126
|
focusable="false"
|
|
127
127
|
viewBox="0 0 24 24"
|
|
128
128
|
>
|
|
129
129
|
<svg
|
|
130
130
|
aria-hidden="true"
|
|
131
|
-
className="
|
|
131
|
+
className="ds-svg-icon--uncheck ds-svg-icon--dark ds-svg-icon"
|
|
132
132
|
focusable="false"
|
|
133
133
|
viewBox="0 0 24 24"
|
|
134
134
|
>
|
|
@@ -155,20 +155,20 @@ exports[`renders the UncheckIcon with prop variant=error and size= xl 1`] = `
|
|
|
155
155
|
variant="warning"
|
|
156
156
|
>
|
|
157
157
|
<ForwardRef(SvgIcon)
|
|
158
|
-
className="
|
|
158
|
+
className="ds-svg-icon--uncheck"
|
|
159
159
|
size="xl"
|
|
160
160
|
variant="warning"
|
|
161
161
|
>
|
|
162
162
|
<ForwardRef(Base)
|
|
163
163
|
aria-hidden="true"
|
|
164
164
|
as="svg"
|
|
165
|
-
className="
|
|
165
|
+
className="ds-svg-icon--uncheck ds-svg-icon--warning ds-svg-icon--xl ds-svg-icon"
|
|
166
166
|
focusable="false"
|
|
167
167
|
viewBox="0 0 24 24"
|
|
168
168
|
>
|
|
169
169
|
<svg
|
|
170
170
|
aria-hidden="true"
|
|
171
|
-
className="
|
|
171
|
+
className="ds-svg-icon--uncheck ds-svg-icon--warning ds-svg-icon--xl ds-svg-icon"
|
|
172
172
|
focusable="false"
|
|
173
173
|
viewBox="0 0 24 24"
|
|
174
174
|
>
|
|
@@ -193,19 +193,19 @@ exports[`renders the UncheckIcon with prop variant=gray 1`] = `
|
|
|
193
193
|
variant="gray"
|
|
194
194
|
>
|
|
195
195
|
<ForwardRef(SvgIcon)
|
|
196
|
-
className="
|
|
196
|
+
className="ds-svg-icon--uncheck"
|
|
197
197
|
variant="gray"
|
|
198
198
|
>
|
|
199
199
|
<ForwardRef(Base)
|
|
200
200
|
aria-hidden="true"
|
|
201
201
|
as="svg"
|
|
202
|
-
className="
|
|
202
|
+
className="ds-svg-icon--uncheck ds-svg-icon--gray ds-svg-icon"
|
|
203
203
|
focusable="false"
|
|
204
204
|
viewBox="0 0 24 24"
|
|
205
205
|
>
|
|
206
206
|
<svg
|
|
207
207
|
aria-hidden="true"
|
|
208
|
-
className="
|
|
208
|
+
className="ds-svg-icon--uncheck ds-svg-icon--gray ds-svg-icon"
|
|
209
209
|
focusable="false"
|
|
210
210
|
viewBox="0 0 24 24"
|
|
211
211
|
>
|
|
@@ -230,19 +230,19 @@ exports[`renders the UncheckIcon with prop variant=light 1`] = `
|
|
|
230
230
|
variant="light"
|
|
231
231
|
>
|
|
232
232
|
<ForwardRef(SvgIcon)
|
|
233
|
-
className="
|
|
233
|
+
className="ds-svg-icon--uncheck"
|
|
234
234
|
variant="light"
|
|
235
235
|
>
|
|
236
236
|
<ForwardRef(Base)
|
|
237
237
|
aria-hidden="true"
|
|
238
238
|
as="svg"
|
|
239
|
-
className="
|
|
239
|
+
className="ds-svg-icon--uncheck ds-svg-icon--light ds-svg-icon"
|
|
240
240
|
focusable="false"
|
|
241
241
|
viewBox="0 0 24 24"
|
|
242
242
|
>
|
|
243
243
|
<svg
|
|
244
244
|
aria-hidden="true"
|
|
245
|
-
className="
|
|
245
|
+
className="ds-svg-icon--uncheck ds-svg-icon--light ds-svg-icon"
|
|
246
246
|
focusable="false"
|
|
247
247
|
viewBox="0 0 24 24"
|
|
248
248
|
>
|
|
@@ -267,19 +267,19 @@ exports[`renders the UncheckIcon with prop variant=primary 1`] = `
|
|
|
267
267
|
variant="primary"
|
|
268
268
|
>
|
|
269
269
|
<ForwardRef(SvgIcon)
|
|
270
|
-
className="
|
|
270
|
+
className="ds-svg-icon--uncheck"
|
|
271
271
|
variant="primary"
|
|
272
272
|
>
|
|
273
273
|
<ForwardRef(Base)
|
|
274
274
|
aria-hidden="true"
|
|
275
275
|
as="svg"
|
|
276
|
-
className="
|
|
276
|
+
className="ds-svg-icon--uncheck ds-svg-icon--primary ds-svg-icon"
|
|
277
277
|
focusable="false"
|
|
278
278
|
viewBox="0 0 24 24"
|
|
279
279
|
>
|
|
280
280
|
<svg
|
|
281
281
|
aria-hidden="true"
|
|
282
|
-
className="
|
|
282
|
+
className="ds-svg-icon--uncheck ds-svg-icon--primary ds-svg-icon"
|
|
283
283
|
focusable="false"
|
|
284
284
|
viewBox="0 0 24 24"
|
|
285
285
|
>
|
|
@@ -306,20 +306,20 @@ exports[`renders the UncheckIcon with prop variant=warning and size=s 1`] = `
|
|
|
306
306
|
variant="warning"
|
|
307
307
|
>
|
|
308
308
|
<ForwardRef(SvgIcon)
|
|
309
|
-
className="
|
|
309
|
+
className="ds-svg-icon--uncheck"
|
|
310
310
|
size="sm"
|
|
311
311
|
variant="warning"
|
|
312
312
|
>
|
|
313
313
|
<ForwardRef(Base)
|
|
314
314
|
aria-hidden="true"
|
|
315
315
|
as="svg"
|
|
316
|
-
className="
|
|
316
|
+
className="ds-svg-icon--uncheck ds-svg-icon--warning ds-svg-icon--sm ds-svg-icon"
|
|
317
317
|
focusable="false"
|
|
318
318
|
viewBox="0 0 24 24"
|
|
319
319
|
>
|
|
320
320
|
<svg
|
|
321
321
|
aria-hidden="true"
|
|
322
|
-
className="
|
|
322
|
+
className="ds-svg-icon--uncheck ds-svg-icon--warning ds-svg-icon--sm ds-svg-icon"
|
|
323
323
|
focusable="false"
|
|
324
324
|
viewBox="0 0 24 24"
|
|
325
325
|
>
|
|
@@ -6,18 +6,18 @@ exports[`renders the AccessibilityIcon with no props 1`] = `
|
|
|
6
6
|
icon="accessibility"
|
|
7
7
|
>
|
|
8
8
|
<ForwardRef(SvgIcon)
|
|
9
|
-
className="
|
|
9
|
+
className="ds-svg-icon--accessibility"
|
|
10
10
|
>
|
|
11
11
|
<ForwardRef(Base)
|
|
12
12
|
aria-hidden="true"
|
|
13
13
|
as="svg"
|
|
14
|
-
className="
|
|
14
|
+
className="ds-svg-icon--accessibility ds-svg-icon"
|
|
15
15
|
focusable="false"
|
|
16
16
|
viewBox="0 0 24 24"
|
|
17
17
|
>
|
|
18
18
|
<svg
|
|
19
19
|
aria-hidden="true"
|
|
20
|
-
className="
|
|
20
|
+
className="ds-svg-icon--accessibility ds-svg-icon"
|
|
21
21
|
focusable="false"
|
|
22
22
|
viewBox="0 0 24 24"
|
|
23
23
|
>
|
|
@@ -50,19 +50,19 @@ exports[`renders the AccessibilityIcon with prop size=l 1`] = `
|
|
|
50
50
|
size="lg"
|
|
51
51
|
>
|
|
52
52
|
<ForwardRef(SvgIcon)
|
|
53
|
-
className="
|
|
53
|
+
className="ds-svg-icon--accessibility"
|
|
54
54
|
size="lg"
|
|
55
55
|
>
|
|
56
56
|
<ForwardRef(Base)
|
|
57
57
|
aria-hidden="true"
|
|
58
58
|
as="svg"
|
|
59
|
-
className="
|
|
59
|
+
className="ds-svg-icon--accessibility ds-svg-icon--lg ds-svg-icon"
|
|
60
60
|
focusable="false"
|
|
61
61
|
viewBox="0 0 24 24"
|
|
62
62
|
>
|
|
63
63
|
<svg
|
|
64
64
|
aria-hidden="true"
|
|
65
|
-
className="
|
|
65
|
+
className="ds-svg-icon--accessibility ds-svg-icon--lg ds-svg-icon"
|
|
66
66
|
focusable="false"
|
|
67
67
|
viewBox="0 0 24 24"
|
|
68
68
|
>
|
|
@@ -95,19 +95,19 @@ exports[`renders the AccessibilityIcon with prop size=s 1`] = `
|
|
|
95
95
|
size="sm"
|
|
96
96
|
>
|
|
97
97
|
<ForwardRef(SvgIcon)
|
|
98
|
-
className="
|
|
98
|
+
className="ds-svg-icon--accessibility"
|
|
99
99
|
size="sm"
|
|
100
100
|
>
|
|
101
101
|
<ForwardRef(Base)
|
|
102
102
|
aria-hidden="true"
|
|
103
103
|
as="svg"
|
|
104
|
-
className="
|
|
104
|
+
className="ds-svg-icon--accessibility ds-svg-icon--sm ds-svg-icon"
|
|
105
105
|
focusable="false"
|
|
106
106
|
viewBox="0 0 24 24"
|
|
107
107
|
>
|
|
108
108
|
<svg
|
|
109
109
|
aria-hidden="true"
|
|
110
|
-
className="
|
|
110
|
+
className="ds-svg-icon--accessibility ds-svg-icon--sm ds-svg-icon"
|
|
111
111
|
focusable="false"
|
|
112
112
|
viewBox="0 0 24 24"
|
|
113
113
|
>
|
|
@@ -140,19 +140,19 @@ exports[`renders the AccessibilityIcon with prop variant=dark 1`] = `
|
|
|
140
140
|
variant="dark"
|
|
141
141
|
>
|
|
142
142
|
<ForwardRef(SvgIcon)
|
|
143
|
-
className="
|
|
143
|
+
className="ds-svg-icon--accessibility"
|
|
144
144
|
variant="dark"
|
|
145
145
|
>
|
|
146
146
|
<ForwardRef(Base)
|
|
147
147
|
aria-hidden="true"
|
|
148
148
|
as="svg"
|
|
149
|
-
className="
|
|
149
|
+
className="ds-svg-icon--accessibility ds-svg-icon--dark ds-svg-icon"
|
|
150
150
|
focusable="false"
|
|
151
151
|
viewBox="0 0 24 24"
|
|
152
152
|
>
|
|
153
153
|
<svg
|
|
154
154
|
aria-hidden="true"
|
|
155
|
-
className="
|
|
155
|
+
className="ds-svg-icon--accessibility ds-svg-icon--dark ds-svg-icon"
|
|
156
156
|
focusable="false"
|
|
157
157
|
viewBox="0 0 24 24"
|
|
158
158
|
>
|
|
@@ -185,19 +185,19 @@ exports[`renders the AccessibilityIcon with prop variant=error 1`] = `
|
|
|
185
185
|
variant="error"
|
|
186
186
|
>
|
|
187
187
|
<ForwardRef(SvgIcon)
|
|
188
|
-
className="
|
|
188
|
+
className="ds-svg-icon--accessibility"
|
|
189
189
|
variant="error"
|
|
190
190
|
>
|
|
191
191
|
<ForwardRef(Base)
|
|
192
192
|
aria-hidden="true"
|
|
193
193
|
as="svg"
|
|
194
|
-
className="
|
|
194
|
+
className="ds-svg-icon--accessibility ds-svg-icon--error ds-svg-icon"
|
|
195
195
|
focusable="false"
|
|
196
196
|
viewBox="0 0 24 24"
|
|
197
197
|
>
|
|
198
198
|
<svg
|
|
199
199
|
aria-hidden="true"
|
|
200
|
-
className="
|
|
200
|
+
className="ds-svg-icon--accessibility ds-svg-icon--error ds-svg-icon"
|
|
201
201
|
focusable="false"
|
|
202
202
|
viewBox="0 0 24 24"
|
|
203
203
|
>
|
|
@@ -232,20 +232,20 @@ exports[`renders the AccessibilityIcon with prop variant=error and size= xl 1`]
|
|
|
232
232
|
variant="warning"
|
|
233
233
|
>
|
|
234
234
|
<ForwardRef(SvgIcon)
|
|
235
|
-
className="
|
|
235
|
+
className="ds-svg-icon--accessibility"
|
|
236
236
|
size="xl"
|
|
237
237
|
variant="warning"
|
|
238
238
|
>
|
|
239
239
|
<ForwardRef(Base)
|
|
240
240
|
aria-hidden="true"
|
|
241
241
|
as="svg"
|
|
242
|
-
className="
|
|
242
|
+
className="ds-svg-icon--accessibility ds-svg-icon--warning ds-svg-icon--xl ds-svg-icon"
|
|
243
243
|
focusable="false"
|
|
244
244
|
viewBox="0 0 24 24"
|
|
245
245
|
>
|
|
246
246
|
<svg
|
|
247
247
|
aria-hidden="true"
|
|
248
|
-
className="
|
|
248
|
+
className="ds-svg-icon--accessibility ds-svg-icon--warning ds-svg-icon--xl ds-svg-icon"
|
|
249
249
|
focusable="false"
|
|
250
250
|
viewBox="0 0 24 24"
|
|
251
251
|
>
|
|
@@ -278,19 +278,19 @@ exports[`renders the AccessibilityIcon with prop variant=primary 1`] = `
|
|
|
278
278
|
variant="primary"
|
|
279
279
|
>
|
|
280
280
|
<ForwardRef(SvgIcon)
|
|
281
|
-
className="
|
|
281
|
+
className="ds-svg-icon--accessibility"
|
|
282
282
|
variant="primary"
|
|
283
283
|
>
|
|
284
284
|
<ForwardRef(Base)
|
|
285
285
|
aria-hidden="true"
|
|
286
286
|
as="svg"
|
|
287
|
-
className="
|
|
287
|
+
className="ds-svg-icon--accessibility ds-svg-icon--primary ds-svg-icon"
|
|
288
288
|
focusable="false"
|
|
289
289
|
viewBox="0 0 24 24"
|
|
290
290
|
>
|
|
291
291
|
<svg
|
|
292
292
|
aria-hidden="true"
|
|
293
|
-
className="
|
|
293
|
+
className="ds-svg-icon--accessibility ds-svg-icon--primary ds-svg-icon"
|
|
294
294
|
focusable="false"
|
|
295
295
|
viewBox="0 0 24 24"
|
|
296
296
|
>
|
|
@@ -323,19 +323,19 @@ exports[`renders the AccessibilityIcon with prop variant=success 1`] = `
|
|
|
323
323
|
variant="success"
|
|
324
324
|
>
|
|
325
325
|
<ForwardRef(SvgIcon)
|
|
326
|
-
className="
|
|
326
|
+
className="ds-svg-icon--accessibility"
|
|
327
327
|
variant="success"
|
|
328
328
|
>
|
|
329
329
|
<ForwardRef(Base)
|
|
330
330
|
aria-hidden="true"
|
|
331
331
|
as="svg"
|
|
332
|
-
className="
|
|
332
|
+
className="ds-svg-icon--accessibility ds-svg-icon--success ds-svg-icon"
|
|
333
333
|
focusable="false"
|
|
334
334
|
viewBox="0 0 24 24"
|
|
335
335
|
>
|
|
336
336
|
<svg
|
|
337
337
|
aria-hidden="true"
|
|
338
|
-
className="
|
|
338
|
+
className="ds-svg-icon--accessibility ds-svg-icon--success ds-svg-icon"
|
|
339
339
|
focusable="false"
|
|
340
340
|
viewBox="0 0 24 24"
|
|
341
341
|
>
|
|
@@ -370,20 +370,20 @@ exports[`renders the AccessibilityIcon with prop variant=warning and size=s 1`]
|
|
|
370
370
|
variant="warning"
|
|
371
371
|
>
|
|
372
372
|
<ForwardRef(SvgIcon)
|
|
373
|
-
className="
|
|
373
|
+
className="ds-svg-icon--accessibility"
|
|
374
374
|
size="sm"
|
|
375
375
|
variant="warning"
|
|
376
376
|
>
|
|
377
377
|
<ForwardRef(Base)
|
|
378
378
|
aria-hidden="true"
|
|
379
379
|
as="svg"
|
|
380
|
-
className="
|
|
380
|
+
className="ds-svg-icon--accessibility ds-svg-icon--warning ds-svg-icon--sm ds-svg-icon"
|
|
381
381
|
focusable="false"
|
|
382
382
|
viewBox="0 0 24 24"
|
|
383
383
|
>
|
|
384
384
|
<svg
|
|
385
385
|
aria-hidden="true"
|
|
386
|
-
className="
|
|
386
|
+
className="ds-svg-icon--accessibility ds-svg-icon--warning ds-svg-icon--sm ds-svg-icon"
|
|
387
387
|
focusable="false"
|
|
388
388
|
viewBox="0 0 24 24"
|
|
389
389
|
>
|