@gnist/design-system 2.0.13 → 2.0.15

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.
Files changed (60) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/components/surfaces/cards/ActionCard.cjs +3 -3
  3. package/dist/components/surfaces/cards/ActionCard.js +3 -3
  4. package/dist/components/surfaces/cards/CheckboxCard.cjs +5 -2
  5. package/dist/components/surfaces/cards/CheckboxCard.d.ts.map +1 -1
  6. package/dist/components/surfaces/cards/CheckboxCard.js +3 -2
  7. package/dist/components/surfaces/cards/InfoCard.cjs +2 -2
  8. package/dist/components/surfaces/cards/InfoCard.js +2 -2
  9. package/dist/components/surfaces/cards/LinkCard.cjs +2 -2
  10. package/dist/components/surfaces/cards/LinkCard.js +2 -2
  11. package/dist/components/surfaces/cards/RadioCard.cjs +5 -2
  12. package/dist/components/surfaces/cards/RadioCard.d.ts.map +1 -1
  13. package/dist/components/surfaces/cards/RadioCard.js +3 -2
  14. package/dist/foundation/iconography/svg/action/index.d.ts +360 -0
  15. package/dist/foundation/iconography/svg/action/index.d.ts.map +1 -1
  16. package/dist/foundation/iconography/svg/communication/index.d.ts +24 -0
  17. package/dist/foundation/iconography/svg/communication/index.d.ts.map +1 -1
  18. package/dist/foundation/iconography/svg/content/index.d.ts +72 -0
  19. package/dist/foundation/iconography/svg/content/index.d.ts.map +1 -1
  20. package/dist/foundation/iconography/svg/device/index.d.ts +12 -0
  21. package/dist/foundation/iconography/svg/device/index.d.ts.map +1 -1
  22. package/dist/foundation/iconography/svg/file/index.d.ts +24 -0
  23. package/dist/foundation/iconography/svg/file/index.d.ts.map +1 -1
  24. package/dist/foundation/iconography/svg/map/index.d.ts +60 -0
  25. package/dist/foundation/iconography/svg/map/index.d.ts.map +1 -1
  26. package/dist/foundation/iconography/svg/navigation/index.d.ts +228 -0
  27. package/dist/foundation/iconography/svg/navigation/index.d.ts.map +1 -1
  28. package/dist/foundation/iconography/svg/notifications/index.d.ts +36 -0
  29. package/dist/foundation/iconography/svg/notifications/index.d.ts.map +1 -1
  30. package/dist/foundation/iconography/svg/search/index.d.ts +12 -0
  31. package/dist/foundation/iconography/svg/search/index.d.ts.map +1 -1
  32. package/dist/foundation/iconography/svg/social/index.d.ts +60 -0
  33. package/dist/foundation/iconography/svg/social/index.d.ts.map +1 -1
  34. package/dist/foundation/iconography/svg/toggle/index.d.ts +48 -0
  35. package/dist/foundation/iconography/svg/toggle/index.d.ts.map +1 -1
  36. package/dist/foundation/iconography/svg/validation/index.d.ts +60 -0
  37. package/dist/foundation/iconography/svg/validation/index.d.ts.map +1 -1
  38. package/dist/foundation/logos/logos.d.ts +6 -0
  39. package/dist/foundation/logos/logos.d.ts.map +1 -1
  40. package/dist/foundation/logos/svg/audi/index.d.ts +6 -0
  41. package/dist/foundation/logos/svg/audi/index.d.ts.map +1 -1
  42. package/dist/foundation/logos/svg/autoria/index.d.ts +6 -0
  43. package/dist/foundation/logos/svg/autoria/index.d.ts.map +1 -1
  44. package/dist/foundation/logos/svg/bilhold/index.d.ts +6 -0
  45. package/dist/foundation/logos/svg/bilhold/index.d.ts.map +1 -1
  46. package/dist/foundation/logos/svg/cupra/index.d.ts +6 -0
  47. package/dist/foundation/logos/svg/cupra/index.d.ts.map +1 -1
  48. package/dist/foundation/logos/svg/dahles/index.d.ts +6 -0
  49. package/dist/foundation/logos/svg/dahles/index.d.ts.map +1 -1
  50. package/dist/foundation/logos/svg/gumpen/index.d.ts +6 -0
  51. package/dist/foundation/logos/svg/gumpen/index.d.ts.map +1 -1
  52. package/dist/foundation/logos/svg/mollerbil/index.d.ts +6 -0
  53. package/dist/foundation/logos/svg/mollerbil/index.d.ts.map +1 -1
  54. package/dist/foundation/logos/svg/others/index.d.ts +54 -0
  55. package/dist/foundation/logos/svg/others/index.d.ts.map +1 -1
  56. package/dist/foundation/logos/svg/skoda/index.d.ts +6 -0
  57. package/dist/foundation/logos/svg/skoda/index.d.ts.map +1 -1
  58. package/dist/foundation/logos/svg/vw/index.d.ts +12 -0
  59. package/dist/foundation/logos/svg/vw/index.d.ts.map +1 -1
  60. package/package.json +28 -28
@@ -1,267 +1,495 @@
1
1
  export declare const arrow_backward: {
2
2
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
3
3
  title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
4
7
  }>;
5
8
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
6
9
  title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
7
13
  }>;
8
14
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
9
15
  title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
10
19
  }>;
11
20
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
12
21
  title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
13
25
  }>;
14
26
  };
15
27
  export declare const arrow_downward: {
16
28
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
17
29
  title?: string;
30
+ titleId?: string;
31
+ desc?: string;
32
+ descId?: string;
18
33
  }>;
19
34
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
20
35
  title?: string;
36
+ titleId?: string;
37
+ desc?: string;
38
+ descId?: string;
21
39
  }>;
22
40
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
23
41
  title?: string;
42
+ titleId?: string;
43
+ desc?: string;
44
+ descId?: string;
24
45
  }>;
25
46
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
26
47
  title?: string;
48
+ titleId?: string;
49
+ desc?: string;
50
+ descId?: string;
27
51
  }>;
28
52
  };
29
53
  export declare const arrow_forward: {
30
54
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
31
55
  title?: string;
56
+ titleId?: string;
57
+ desc?: string;
58
+ descId?: string;
32
59
  }>;
33
60
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
34
61
  title?: string;
62
+ titleId?: string;
63
+ desc?: string;
64
+ descId?: string;
35
65
  }>;
36
66
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
37
67
  title?: string;
68
+ titleId?: string;
69
+ desc?: string;
70
+ descId?: string;
38
71
  }>;
39
72
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
40
73
  title?: string;
74
+ titleId?: string;
75
+ desc?: string;
76
+ descId?: string;
41
77
  }>;
42
78
  };
43
79
  export declare const arrow_upward: {
44
80
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
45
81
  title?: string;
82
+ titleId?: string;
83
+ desc?: string;
84
+ descId?: string;
46
85
  }>;
47
86
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
48
87
  title?: string;
88
+ titleId?: string;
89
+ desc?: string;
90
+ descId?: string;
49
91
  }>;
50
92
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
51
93
  title?: string;
94
+ titleId?: string;
95
+ desc?: string;
96
+ descId?: string;
52
97
  }>;
53
98
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
54
99
  title?: string;
100
+ titleId?: string;
101
+ desc?: string;
102
+ descId?: string;
55
103
  }>;
56
104
  };
57
105
  export declare const check: {
58
106
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
59
107
  title?: string;
108
+ titleId?: string;
109
+ desc?: string;
110
+ descId?: string;
60
111
  }>;
61
112
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
62
113
  title?: string;
114
+ titleId?: string;
115
+ desc?: string;
116
+ descId?: string;
63
117
  }>;
64
118
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
65
119
  title?: string;
120
+ titleId?: string;
121
+ desc?: string;
122
+ descId?: string;
66
123
  }>;
67
124
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
68
125
  title?: string;
126
+ titleId?: string;
127
+ desc?: string;
128
+ descId?: string;
69
129
  }>;
70
130
  };
71
131
  export declare const chevron_left: {
72
132
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
73
133
  title?: string;
134
+ titleId?: string;
135
+ desc?: string;
136
+ descId?: string;
74
137
  }>;
75
138
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
76
139
  title?: string;
140
+ titleId?: string;
141
+ desc?: string;
142
+ descId?: string;
77
143
  }>;
78
144
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
79
145
  title?: string;
146
+ titleId?: string;
147
+ desc?: string;
148
+ descId?: string;
80
149
  }>;
81
150
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
82
151
  title?: string;
152
+ titleId?: string;
153
+ desc?: string;
154
+ descId?: string;
83
155
  }>;
84
156
  };
85
157
  export declare const chevron_right: {
86
158
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
87
159
  title?: string;
160
+ titleId?: string;
161
+ desc?: string;
162
+ descId?: string;
88
163
  }>;
89
164
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
90
165
  title?: string;
166
+ titleId?: string;
167
+ desc?: string;
168
+ descId?: string;
91
169
  }>;
92
170
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
93
171
  title?: string;
172
+ titleId?: string;
173
+ desc?: string;
174
+ descId?: string;
94
175
  }>;
95
176
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
96
177
  title?: string;
178
+ titleId?: string;
179
+ desc?: string;
180
+ descId?: string;
97
181
  }>;
98
182
  };
99
183
  export declare const close: {
100
184
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
101
185
  title?: string;
186
+ titleId?: string;
187
+ desc?: string;
188
+ descId?: string;
102
189
  }>;
103
190
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
104
191
  title?: string;
192
+ titleId?: string;
193
+ desc?: string;
194
+ descId?: string;
105
195
  }>;
106
196
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
107
197
  title?: string;
198
+ titleId?: string;
199
+ desc?: string;
200
+ descId?: string;
108
201
  }>;
109
202
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
110
203
  title?: string;
204
+ titleId?: string;
205
+ desc?: string;
206
+ descId?: string;
111
207
  }>;
112
208
  };
113
209
  export declare const expand_less: {
114
210
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
115
211
  title?: string;
212
+ titleId?: string;
213
+ desc?: string;
214
+ descId?: string;
116
215
  }>;
117
216
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
118
217
  title?: string;
218
+ titleId?: string;
219
+ desc?: string;
220
+ descId?: string;
119
221
  }>;
120
222
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
121
223
  title?: string;
224
+ titleId?: string;
225
+ desc?: string;
226
+ descId?: string;
122
227
  }>;
123
228
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
124
229
  title?: string;
230
+ titleId?: string;
231
+ desc?: string;
232
+ descId?: string;
125
233
  }>;
126
234
  };
127
235
  export declare const expand_more: {
128
236
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
129
237
  title?: string;
238
+ titleId?: string;
239
+ desc?: string;
240
+ descId?: string;
130
241
  }>;
131
242
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
132
243
  title?: string;
244
+ titleId?: string;
245
+ desc?: string;
246
+ descId?: string;
133
247
  }>;
134
248
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
135
249
  title?: string;
250
+ titleId?: string;
251
+ desc?: string;
252
+ descId?: string;
136
253
  }>;
137
254
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
138
255
  title?: string;
256
+ titleId?: string;
257
+ desc?: string;
258
+ descId?: string;
139
259
  }>;
140
260
  };
141
261
  export declare const external: {
142
262
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
143
263
  title?: string;
264
+ titleId?: string;
265
+ desc?: string;
266
+ descId?: string;
144
267
  }>;
145
268
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
146
269
  title?: string;
270
+ titleId?: string;
271
+ desc?: string;
272
+ descId?: string;
147
273
  }>;
148
274
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
149
275
  title?: string;
276
+ titleId?: string;
277
+ desc?: string;
278
+ descId?: string;
150
279
  }>;
151
280
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
152
281
  title?: string;
282
+ titleId?: string;
283
+ desc?: string;
284
+ descId?: string;
153
285
  }>;
154
286
  };
155
287
  export declare const menu: {
156
288
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
157
289
  title?: string;
290
+ titleId?: string;
291
+ desc?: string;
292
+ descId?: string;
158
293
  }>;
159
294
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
160
295
  title?: string;
296
+ titleId?: string;
297
+ desc?: string;
298
+ descId?: string;
161
299
  }>;
162
300
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
163
301
  title?: string;
302
+ titleId?: string;
303
+ desc?: string;
304
+ descId?: string;
164
305
  }>;
165
306
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
166
307
  title?: string;
308
+ titleId?: string;
309
+ desc?: string;
310
+ descId?: string;
167
311
  }>;
168
312
  };
169
313
  export declare const more_horizontal: {
170
314
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
171
315
  title?: string;
316
+ titleId?: string;
317
+ desc?: string;
318
+ descId?: string;
172
319
  }>;
173
320
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
174
321
  title?: string;
322
+ titleId?: string;
323
+ desc?: string;
324
+ descId?: string;
175
325
  }>;
176
326
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
177
327
  title?: string;
328
+ titleId?: string;
329
+ desc?: string;
330
+ descId?: string;
178
331
  }>;
179
332
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
180
333
  title?: string;
334
+ titleId?: string;
335
+ desc?: string;
336
+ descId?: string;
181
337
  }>;
182
338
  };
183
339
  export declare const more_vertical: {
184
340
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
185
341
  title?: string;
342
+ titleId?: string;
343
+ desc?: string;
344
+ descId?: string;
186
345
  }>;
187
346
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
188
347
  title?: string;
348
+ titleId?: string;
349
+ desc?: string;
350
+ descId?: string;
189
351
  }>;
190
352
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
191
353
  title?: string;
354
+ titleId?: string;
355
+ desc?: string;
356
+ descId?: string;
192
357
  }>;
193
358
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
194
359
  title?: string;
360
+ titleId?: string;
361
+ desc?: string;
362
+ descId?: string;
195
363
  }>;
196
364
  };
197
365
  export declare const open: {
198
366
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
199
367
  title?: string;
368
+ titleId?: string;
369
+ desc?: string;
370
+ descId?: string;
200
371
  }>;
201
372
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
202
373
  title?: string;
374
+ titleId?: string;
375
+ desc?: string;
376
+ descId?: string;
203
377
  }>;
204
378
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
205
379
  title?: string;
380
+ titleId?: string;
381
+ desc?: string;
382
+ descId?: string;
206
383
  }>;
207
384
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
208
385
  title?: string;
386
+ titleId?: string;
387
+ desc?: string;
388
+ descId?: string;
209
389
  }>;
210
390
  };
211
391
  export declare const refresh: {
212
392
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
213
393
  title?: string;
394
+ titleId?: string;
395
+ desc?: string;
396
+ descId?: string;
214
397
  }>;
215
398
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
216
399
  title?: string;
400
+ titleId?: string;
401
+ desc?: string;
402
+ descId?: string;
217
403
  }>;
218
404
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
219
405
  title?: string;
406
+ titleId?: string;
407
+ desc?: string;
408
+ descId?: string;
220
409
  }>;
221
410
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
222
411
  title?: string;
412
+ titleId?: string;
413
+ desc?: string;
414
+ descId?: string;
223
415
  }>;
224
416
  };
225
417
  export declare const spinner: {
226
418
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
227
419
  title?: string;
420
+ titleId?: string;
421
+ desc?: string;
422
+ descId?: string;
228
423
  }>;
229
424
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
230
425
  title?: string;
426
+ titleId?: string;
427
+ desc?: string;
428
+ descId?: string;
231
429
  }>;
232
430
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
233
431
  title?: string;
432
+ titleId?: string;
433
+ desc?: string;
434
+ descId?: string;
234
435
  }>;
235
436
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
236
437
  title?: string;
438
+ titleId?: string;
439
+ desc?: string;
440
+ descId?: string;
237
441
  }>;
238
442
  };
239
443
  export declare const unfold_less: {
240
444
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
241
445
  title?: string;
446
+ titleId?: string;
447
+ desc?: string;
448
+ descId?: string;
242
449
  }>;
243
450
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
244
451
  title?: string;
452
+ titleId?: string;
453
+ desc?: string;
454
+ descId?: string;
245
455
  }>;
246
456
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
247
457
  title?: string;
458
+ titleId?: string;
459
+ desc?: string;
460
+ descId?: string;
248
461
  }>;
249
462
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
250
463
  title?: string;
464
+ titleId?: string;
465
+ desc?: string;
466
+ descId?: string;
251
467
  }>;
252
468
  };
253
469
  export declare const unfold_more: {
254
470
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
255
471
  title?: string;
472
+ titleId?: string;
473
+ desc?: string;
474
+ descId?: string;
256
475
  }>;
257
476
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
258
477
  title?: string;
478
+ titleId?: string;
479
+ desc?: string;
480
+ descId?: string;
259
481
  }>;
260
482
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
261
483
  title?: string;
484
+ titleId?: string;
485
+ desc?: string;
486
+ descId?: string;
262
487
  }>;
263
488
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
264
489
  title?: string;
490
+ titleId?: string;
491
+ desc?: string;
492
+ descId?: string;
265
493
  }>;
266
494
  };
267
495
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/navigation/index.ts"],"names":[],"mappings":"AAqFA,eAAO,MAAM,cAAc;;;;;;;;;;;;;CAK1B,CAAC;AACF,eAAO,MAAM,cAAc;;;;;;;;;;;;;CAK1B,CAAC;AACF,eAAO,MAAM,aAAa;;;;;;;;;;;;;CAKzB,CAAC;AACF,eAAO,MAAM,YAAY;;;;;;;;;;;;;CAKxB,CAAC;AACF,eAAO,MAAM,KAAK;;;;;;;;;;;;;CAKjB,CAAC;AACF,eAAO,MAAM,YAAY;;;;;;;;;;;;;CAKxB,CAAC;AACF,eAAO,MAAM,aAAa;;;;;;;;;;;;;CAKzB,CAAC;AACF,eAAO,MAAM,KAAK;;;;;;;;;;;;;CAKjB,CAAC;AACF,eAAO,MAAM,WAAW;;;;;;;;;;;;;CAKvB,CAAC;AACF,eAAO,MAAM,WAAW;;;;;;;;;;;;;CAKvB,CAAC;AACF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;CAKpB,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;CAKhB,CAAC;AACF,eAAO,MAAM,eAAe;;;;;;;;;;;;;CAK3B,CAAC;AACF,eAAO,MAAM,aAAa;;;;;;;;;;;;;CAKzB,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;CAKhB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;;;;;;;;CAKnB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;;;;;;;;CAKnB,CAAC;AACF,eAAO,MAAM,WAAW;;;;;;;;;;;;;CAKvB,CAAC;AACF,eAAO,MAAM,WAAW;;;;;;;;;;;;;CAKvB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/navigation/index.ts"],"names":[],"mappings":"AAqFA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;CAK1B,CAAC;AACF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;CAK1B,CAAC;AACF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;CAKzB,CAAC;AACF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;CAKxB,CAAC;AACF,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;CAKjB,CAAC;AACF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;CAKxB,CAAC;AACF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;CAKzB,CAAC;AACF,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;CAKjB,CAAC;AACF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;CAKvB,CAAC;AACF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;CAKvB,CAAC;AACF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;CAKpB,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;CAKhB,CAAC;AACF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;CAK3B,CAAC;AACF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;CAKzB,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;CAKhB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;CAKnB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;CAKnB,CAAC;AACF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;CAKvB,CAAC;AACF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;CAKvB,CAAC"}
@@ -1,43 +1,79 @@
1
1
  export declare const event_note: {
2
2
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
3
3
  title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
4
7
  }>;
5
8
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
6
9
  title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
7
13
  }>;
8
14
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
9
15
  title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
10
19
  }>;
11
20
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
12
21
  title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
13
25
  }>;
14
26
  };
15
27
  export declare const live_tv: {
16
28
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
17
29
  title?: string;
30
+ titleId?: string;
31
+ desc?: string;
32
+ descId?: string;
18
33
  }>;
19
34
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
20
35
  title?: string;
36
+ titleId?: string;
37
+ desc?: string;
38
+ descId?: string;
21
39
  }>;
22
40
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
23
41
  title?: string;
42
+ titleId?: string;
43
+ desc?: string;
44
+ descId?: string;
24
45
  }>;
25
46
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
26
47
  title?: string;
48
+ titleId?: string;
49
+ desc?: string;
50
+ descId?: string;
27
51
  }>;
28
52
  };
29
53
  export declare const wifi: {
30
54
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
31
55
  title?: string;
56
+ titleId?: string;
57
+ desc?: string;
58
+ descId?: string;
32
59
  }>;
33
60
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
34
61
  title?: string;
62
+ titleId?: string;
63
+ desc?: string;
64
+ descId?: string;
35
65
  }>;
36
66
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
37
67
  title?: string;
68
+ titleId?: string;
69
+ desc?: string;
70
+ descId?: string;
38
71
  }>;
39
72
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
40
73
  title?: string;
74
+ titleId?: string;
75
+ desc?: string;
76
+ descId?: string;
41
77
  }>;
42
78
  };
43
79
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/notifications/index.ts"],"names":[],"mappings":"AAqBA,eAAO,MAAM,UAAU;;;;;;;;;;;;;CAKtB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;;;;;;;;CAKnB,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;CAKhB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/notifications/index.ts"],"names":[],"mappings":"AAqBA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;CAKtB,CAAC;AACF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;CAKnB,CAAC;AACF,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;CAKhB,CAAC"}
@@ -1,15 +1,27 @@
1
1
  export declare const coffee: {
2
2
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
3
3
  title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
4
7
  }>;
5
8
  outlined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
6
9
  title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
7
13
  }>;
8
14
  round: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
9
15
  title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
10
19
  }>;
11
20
  sharp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
12
21
  title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
13
25
  }>;
14
26
  };
15
27
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/search/index.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,MAAM;;;;;;;;;;;;;CAKlB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/foundation/iconography/svg/search/index.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;CAKlB,CAAC"}