@nypl/design-system-react-components 1.4.1 → 1.5.0-rc

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 (66) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/README.md +62 -2
  3. package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +1 -1
  4. package/dist/components/Header/components/HeaderSearchButton.d.ts +2 -2
  5. package/dist/components/Logo/Logo.d.ts +1 -1
  6. package/dist/components/Logo/LogoSvgs.d.ts +2 -0
  7. package/dist/components/Notification/Notification.d.ts +8 -7
  8. package/dist/components/ProgressIndicator/ProgressIndicator.d.ts +1 -1
  9. package/dist/design-system-react-components.cjs.development.js +1764 -670
  10. package/dist/design-system-react-components.cjs.development.js.map +1 -1
  11. package/dist/design-system-react-components.cjs.production.min.js +1 -1
  12. package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
  13. package/dist/design-system-react-components.esm.js +1767 -673
  14. package/dist/design-system-react-components.esm.js.map +1 -1
  15. package/dist/styles.css +1 -1
  16. package/dist/theme/components/accordion.d.ts +14 -0
  17. package/dist/theme/components/audioPlayer.d.ts +7 -0
  18. package/dist/theme/components/breadcrumb.d.ts +28 -0
  19. package/dist/theme/components/button.d.ts +12 -0
  20. package/dist/theme/components/card.d.ts +40 -0
  21. package/dist/theme/components/checkbox.d.ts +67 -0
  22. package/dist/theme/components/customTable.d.ts +103 -2
  23. package/dist/theme/components/feedbackBox.d.ts +22 -0
  24. package/dist/theme/components/fieldset.d.ts +3 -0
  25. package/dist/theme/components/filterBar.d.ts +16 -0
  26. package/dist/theme/components/footer.d.ts +18 -0
  27. package/dist/theme/components/global.d.ts +46 -0
  28. package/dist/theme/components/header/header.d.ts +7 -0
  29. package/dist/theme/components/header/headerLogin.d.ts +18 -0
  30. package/dist/theme/components/header/headerLoginButton.d.ts +15 -0
  31. package/dist/theme/components/header/headerLowerNav.d.ts +32 -0
  32. package/dist/theme/components/header/headerMobileIconNav.d.ts +5 -0
  33. package/dist/theme/components/header/headerMobileNavButton.d.ts +6 -0
  34. package/dist/theme/components/header/headerSearchButton.d.ts +26 -0
  35. package/dist/theme/components/header/headerSearchForm.d.ts +9 -0
  36. package/dist/theme/components/header/headerSitewideAlerts.d.ts +12 -0
  37. package/dist/theme/components/header/headerUpperNav.d.ts +12 -0
  38. package/dist/theme/components/heading.d.ts +9 -0
  39. package/dist/theme/components/helperErrorText.d.ts +3 -0
  40. package/dist/theme/components/hero.d.ts +42 -5
  41. package/dist/theme/components/horizontalRule.d.ts +3 -0
  42. package/dist/theme/components/image.d.ts +54 -0
  43. package/dist/theme/components/label.d.ts +3 -0
  44. package/dist/theme/components/link.d.ts +20 -4
  45. package/dist/theme/components/list.d.ts +46 -0
  46. package/dist/theme/components/modal.d.ts +21 -0
  47. package/dist/theme/components/multiSelectMenuButton.d.ts +23 -0
  48. package/dist/theme/components/notification.d.ts +62 -21
  49. package/dist/theme/components/progressIndicator.d.ts +16 -0
  50. package/dist/theme/components/radio.d.ts +63 -0
  51. package/dist/theme/components/searchBar.d.ts +11 -1
  52. package/dist/theme/components/select.d.ts +39 -0
  53. package/dist/theme/components/skeletonLoader.d.ts +4 -1
  54. package/dist/theme/components/slider.d.ts +21 -2
  55. package/dist/theme/components/statusBadge.d.ts +12 -0
  56. package/dist/theme/components/structuredContent.d.ts +63 -4
  57. package/dist/theme/components/styledList.d.ts +10 -0
  58. package/dist/theme/components/tabs.d.ts +37 -1
  59. package/dist/theme/components/tagSet.d.ts +39 -0
  60. package/dist/theme/components/template.d.ts +3 -0
  61. package/dist/theme/components/textInput.d.ts +194 -0
  62. package/dist/theme/components/toggle.d.ts +39 -3
  63. package/dist/theme/components/tooltip.d.ts +6 -1
  64. package/dist/theme/components/videoPlayer.d.ts +7 -0
  65. package/dist/theme/foundations/global.d.ts +10 -0
  66. package/package.json +2 -2
@@ -29,6 +29,9 @@ export declare const baseTRStyles: (columnHeadersBackgroundColor?: string, showR
29
29
  };
30
30
  borderColor: string;
31
31
  };
32
+ _dark: {
33
+ borderColor: string;
34
+ };
32
35
  };
33
36
  export declare const baseCellStyles: (columnHeadersBackgroundColor?: string, columnHeadersTextColor?: string, showRowDividers?: boolean, useRowHeaders?: boolean) => {
34
37
  border: string;
@@ -36,6 +39,9 @@ export declare const baseCellStyles: (columnHeadersBackgroundColor?: string, col
36
39
  borderColor: {
37
40
  base: string;
38
41
  md: string;
42
+ } | {
43
+ base: string;
44
+ md: string;
39
45
  };
40
46
  display: {
41
47
  base: string;
@@ -80,6 +86,9 @@ export declare const baseCellStyles: (columnHeadersBackgroundColor?: string, col
80
86
  borderColor: {
81
87
  base: string;
82
88
  md: string;
89
+ } | {
90
+ base: string;
91
+ md: string;
83
92
  };
84
93
  };
85
94
  "> span": {
@@ -98,6 +107,9 @@ export declare const baseCellStyles: (columnHeadersBackgroundColor?: string, col
98
107
  color: string;
99
108
  fontWeight: string;
100
109
  paddingStart: string;
110
+ _dark: {
111
+ color: string;
112
+ };
101
113
  };
102
114
  };
103
115
  };
@@ -111,11 +123,17 @@ export declare const baseTHStyles: (columnHeadersBackgroundColor?: string, colum
111
123
  md: string;
112
124
  };
113
125
  };
126
+ _dark: {
127
+ color: string;
128
+ };
114
129
  border: string;
115
130
  borderBottom: string;
116
131
  borderColor: {
117
132
  base: string;
118
133
  md: string;
134
+ } | {
135
+ base: string;
136
+ md: string;
119
137
  };
120
138
  display: {
121
139
  base: string;
@@ -150,6 +168,9 @@ export declare const baseTHStyles: (columnHeadersBackgroundColor?: string, colum
150
168
  borderColor: {
151
169
  base: string;
152
170
  md: string;
171
+ } | {
172
+ base: string;
173
+ md: string;
153
174
  };
154
175
  };
155
176
  "> span": {
@@ -168,6 +189,9 @@ export declare const baseTHStyles: (columnHeadersBackgroundColor?: string, colum
168
189
  color: string;
169
190
  fontWeight: string;
170
191
  paddingStart: string;
192
+ _dark: {
193
+ color: string;
194
+ };
171
195
  };
172
196
  };
173
197
  };
@@ -186,6 +210,9 @@ export declare const baseTDStyles: (columnHeadersBackgroundColor?: string, colum
186
210
  borderColor: {
187
211
  base: string;
188
212
  md: string;
213
+ } | {
214
+ base: string;
215
+ md: string;
189
216
  };
190
217
  };
191
218
  border: string;
@@ -193,6 +220,9 @@ export declare const baseTDStyles: (columnHeadersBackgroundColor?: string, colum
193
220
  borderColor: {
194
221
  base: string;
195
222
  md: string;
223
+ } | {
224
+ base: string;
225
+ md: string;
196
226
  };
197
227
  display: {
198
228
  base: string;
@@ -234,18 +264,28 @@ export declare const baseTDStyles: (columnHeadersBackgroundColor?: string, colum
234
264
  color: string;
235
265
  fontWeight: string;
236
266
  paddingStart: string;
267
+ _dark: {
268
+ color: string;
269
+ };
237
270
  };
238
271
  };
239
272
  };
240
273
  export declare const baseStyle: ({ columnHeadersBackgroundColor, columnHeadersTextColor, showRowDividers, useRowHeaders, }: BaseStyleProps) => {
241
274
  tbody: {
242
275
  th: {
243
- color: string;
244
276
  backgroundColor: {
245
277
  base: string;
246
278
  md: string;
247
279
  };
280
+ color: string;
248
281
  verticalAlign: string;
282
+ _dark: {
283
+ backgroundColor: {
284
+ base: string;
285
+ md: string;
286
+ };
287
+ color: string;
288
+ };
249
289
  };
250
290
  td: {
251
291
  verticalAlign: string;
@@ -282,6 +322,9 @@ export declare const baseStyle: ({ columnHeadersBackgroundColor, columnHeadersTe
282
322
  };
283
323
  borderColor: string;
284
324
  };
325
+ _dark: {
326
+ borderColor: string;
327
+ };
285
328
  };
286
329
  th: {
287
330
  color: string;
@@ -293,11 +336,17 @@ export declare const baseStyle: ({ columnHeadersBackgroundColor, columnHeadersTe
293
336
  md: string;
294
337
  };
295
338
  };
339
+ _dark: {
340
+ color: string;
341
+ };
296
342
  border: string;
297
343
  borderBottom: string;
298
344
  borderColor: {
299
345
  base: string;
300
346
  md: string;
347
+ } | {
348
+ base: string;
349
+ md: string;
301
350
  };
302
351
  display: {
303
352
  base: string;
@@ -332,6 +381,9 @@ export declare const baseStyle: ({ columnHeadersBackgroundColor, columnHeadersTe
332
381
  borderColor: {
333
382
  base: string;
334
383
  md: string;
384
+ } | {
385
+ base: string;
386
+ md: string;
335
387
  };
336
388
  };
337
389
  "> span": {
@@ -350,6 +402,9 @@ export declare const baseStyle: ({ columnHeadersBackgroundColor, columnHeadersTe
350
402
  color: string;
351
403
  fontWeight: string;
352
404
  paddingStart: string;
405
+ _dark: {
406
+ color: string;
407
+ };
353
408
  };
354
409
  };
355
410
  };
@@ -368,6 +423,9 @@ export declare const baseStyle: ({ columnHeadersBackgroundColor, columnHeadersTe
368
423
  borderColor: {
369
424
  base: string;
370
425
  md: string;
426
+ } | {
427
+ base: string;
428
+ md: string;
371
429
  };
372
430
  };
373
431
  border: string;
@@ -375,6 +433,9 @@ export declare const baseStyle: ({ columnHeadersBackgroundColor, columnHeadersTe
375
433
  borderColor: {
376
434
  base: string;
377
435
  md: string;
436
+ } | {
437
+ base: string;
438
+ md: string;
378
439
  };
379
440
  display: {
380
441
  base: string;
@@ -416,6 +477,9 @@ export declare const baseStyle: ({ columnHeadersBackgroundColor, columnHeadersTe
416
477
  color: string;
417
478
  fontWeight: string;
418
479
  paddingStart: string;
480
+ _dark: {
481
+ color: string;
482
+ };
419
483
  };
420
484
  };
421
485
  };
@@ -430,18 +494,28 @@ export declare const baseStyle: ({ columnHeadersBackgroundColor, columnHeadersTe
430
494
  marginTop: string;
431
495
  padding: string;
432
496
  textAlign: string;
497
+ _dark: {
498
+ color: string;
499
+ };
433
500
  };
434
501
  };
435
502
  declare const CustomTable: {
436
503
  baseStyle: ({ columnHeadersBackgroundColor, columnHeadersTextColor, showRowDividers, useRowHeaders, }: BaseStyleProps) => {
437
504
  tbody: {
438
505
  th: {
439
- color: string;
440
506
  backgroundColor: {
441
507
  base: string;
442
508
  md: string;
443
509
  };
510
+ color: string;
444
511
  verticalAlign: string;
512
+ _dark: {
513
+ backgroundColor: {
514
+ base: string;
515
+ md: string;
516
+ };
517
+ color: string;
518
+ };
445
519
  };
446
520
  td: {
447
521
  verticalAlign: string;
@@ -478,6 +552,9 @@ declare const CustomTable: {
478
552
  };
479
553
  borderColor: string;
480
554
  };
555
+ _dark: {
556
+ borderColor: string;
557
+ };
481
558
  };
482
559
  th: {
483
560
  color: string;
@@ -489,11 +566,17 @@ declare const CustomTable: {
489
566
  md: string;
490
567
  };
491
568
  };
569
+ _dark: {
570
+ color: string;
571
+ };
492
572
  border: string;
493
573
  borderBottom: string;
494
574
  borderColor: {
495
575
  base: string;
496
576
  md: string;
577
+ } | {
578
+ base: string;
579
+ md: string;
497
580
  };
498
581
  display: {
499
582
  base: string;
@@ -528,6 +611,9 @@ declare const CustomTable: {
528
611
  borderColor: {
529
612
  base: string;
530
613
  md: string;
614
+ } | {
615
+ base: string;
616
+ md: string;
531
617
  };
532
618
  };
533
619
  "> span": {
@@ -546,6 +632,9 @@ declare const CustomTable: {
546
632
  color: string;
547
633
  fontWeight: string;
548
634
  paddingStart: string;
635
+ _dark: {
636
+ color: string;
637
+ };
549
638
  };
550
639
  };
551
640
  };
@@ -564,6 +653,9 @@ declare const CustomTable: {
564
653
  borderColor: {
565
654
  base: string;
566
655
  md: string;
656
+ } | {
657
+ base: string;
658
+ md: string;
567
659
  };
568
660
  };
569
661
  border: string;
@@ -571,6 +663,9 @@ declare const CustomTable: {
571
663
  borderColor: {
572
664
  base: string;
573
665
  md: string;
666
+ } | {
667
+ base: string;
668
+ md: string;
574
669
  };
575
670
  display: {
576
671
  base: string;
@@ -612,6 +707,9 @@ declare const CustomTable: {
612
707
  color: string;
613
708
  fontWeight: string;
614
709
  paddingStart: string;
710
+ _dark: {
711
+ color: string;
712
+ };
615
713
  };
616
714
  };
617
715
  };
@@ -626,6 +724,9 @@ declare const CustomTable: {
626
724
  marginTop: string;
627
725
  padding: string;
628
726
  textAlign: string;
727
+ _dark: {
728
+ color: string;
729
+ };
629
730
  };
630
731
  };
631
732
  };
@@ -26,10 +26,24 @@ declare const FeedbackBox: {
26
26
  wordWrap: string;
27
27
  };
28
28
  top: string;
29
+ _dark: {
30
+ svg: {
31
+ fill: string;
32
+ };
33
+ };
29
34
  };
30
35
  drawerBody: {
36
+ borderLeft: {
37
+ base: any;
38
+ md: string;
39
+ };
40
+ borderColor: string;
31
41
  paddingTop: string;
32
42
  paddingBottom: string;
43
+ _dark: {
44
+ background: string;
45
+ borderColor: string;
46
+ };
33
47
  };
34
48
  drawerContent: {
35
49
  marginStart: string;
@@ -42,6 +56,11 @@ declare const FeedbackBox: {
42
56
  alignItems: string;
43
57
  background: string;
44
58
  borderBottomWidth: string;
59
+ borderLeftWidth: {
60
+ base: any;
61
+ md: string;
62
+ };
63
+ borderTopWidth: string;
45
64
  display: string;
46
65
  fontSize: string;
47
66
  px: string;
@@ -50,6 +69,9 @@ declare const FeedbackBox: {
50
69
  p: {
51
70
  marginBottom: string;
52
71
  };
72
+ _dark: {
73
+ background: string;
74
+ };
53
75
  };
54
76
  openButton: {
55
77
  position: string;
@@ -14,6 +14,9 @@ declare const Fieldset: {
14
14
  span: {
15
15
  fontWeight: string;
16
16
  };
17
+ _dark: {
18
+ color: string;
19
+ };
17
20
  };
18
21
  };
19
22
  };
@@ -15,11 +15,27 @@ declare const FilterBar: {
15
15
  width: any;
16
16
  }) => {
17
17
  width: string;
18
+ modalBody: {
19
+ _dark: {
20
+ background: string;
21
+ };
22
+ };
18
23
  modalHeader: {
19
24
  bg: string;
25
+ _dark: {
26
+ background: string;
27
+ borderBottom: string;
28
+ borderColor: string;
29
+ };
20
30
  };
21
31
  modalFooter: {
22
32
  bg: string;
33
+ _dark: {
34
+ background: string;
35
+ borderTop: string;
36
+ borderColor: string;
37
+ color: string;
38
+ };
23
39
  };
24
40
  modalCloseButton: {
25
41
  mt: string;
@@ -12,6 +12,9 @@ declare const Footer: {
12
12
  lg: string;
13
13
  };
14
14
  position: string;
15
+ _dark: {
16
+ backgroundColor: string;
17
+ };
15
18
  listsContainer: {
16
19
  display: string;
17
20
  flexDirection: {
@@ -141,6 +144,9 @@ declare const Footer: {
141
144
  svg: {
142
145
  width: string;
143
146
  height: string;
147
+ _dark: {
148
+ fill: string;
149
+ };
144
150
  };
145
151
  };
146
152
  };
@@ -159,9 +165,15 @@ declare const Footer: {
159
165
  outline: string;
160
166
  outlineColor: string;
161
167
  };
168
+ _dark: {
169
+ color: string;
170
+ };
162
171
  };
163
172
  svg: {
164
173
  fill: string;
174
+ _dark: {
175
+ color: string;
176
+ };
165
177
  };
166
178
  logoContainer: {
167
179
  position: string;
@@ -199,10 +211,16 @@ declare const Footer: {
199
211
  width: {
200
212
  md: string;
201
213
  };
214
+ _dark: {
215
+ color: string;
216
+ };
202
217
  img: {
203
218
  bg: string;
204
219
  height: string;
205
220
  width: string;
221
+ _dark: {
222
+ opacity: string;
223
+ };
206
224
  };
207
225
  };
208
226
  copyright: {
@@ -7,6 +7,9 @@ declare const activeFocus: (darkMode?: boolean) => {
7
7
  outlineOffset: string;
8
8
  outlineColor: string;
9
9
  zIndex: string;
10
+ _dark: {
11
+ outlineColor: string;
12
+ };
10
13
  };
11
14
  declare const checkboxRadioLabelStyles: {
12
15
  userSelect: string;
@@ -22,6 +25,14 @@ declare const checkboxRadioLabelStyles: {
22
25
  _invalid: {
23
26
  color: string;
24
27
  };
28
+ _dark: {
29
+ _disabled: {
30
+ color: string;
31
+ };
32
+ _invalid: {
33
+ color: string;
34
+ };
35
+ };
25
36
  };
26
37
  declare const checkboxRadioControlSize: {
27
38
  h: string;
@@ -50,6 +61,22 @@ declare const checkboxRadioHoverStyles: {
50
61
  borderColor: string;
51
62
  };
52
63
  };
64
+ _dark: {
65
+ span: {
66
+ _first: {
67
+ borderColor: string;
68
+ };
69
+ _checked: {
70
+ borderColor: string;
71
+ };
72
+ _disabled: {
73
+ borderColor: string;
74
+ };
75
+ _invalid: {
76
+ borderColor: string;
77
+ };
78
+ };
79
+ };
53
80
  };
54
81
  };
55
82
  declare const checkboxRadioGroupStyles: (isFullWidth?: boolean) => {
@@ -72,15 +99,34 @@ declare const labelLegendText: {
72
99
  span: {
73
100
  fontWeight: string;
74
101
  };
102
+ _dark: {
103
+ color: string;
104
+ };
75
105
  };
76
106
  declare const selectTextInputDisabledStyles: {
77
107
  bg: string;
78
108
  borderColor: string;
79
109
  color: string;
80
110
  opacity: string;
111
+ _dark: {
112
+ bg: string;
113
+ borderColor: string;
114
+ color: string;
115
+ };
81
116
  };
82
117
  declare const selectTextInputFocusStyles: {
83
118
  borderColor: string;
119
+ _dark: {
120
+ borderColor: string;
121
+ boxShadow: string;
122
+ outline: string;
123
+ outlineOffset: string;
124
+ outlineColor: string;
125
+ zIndex: string;
126
+ _dark: {
127
+ outlineColor: string;
128
+ };
129
+ };
84
130
  boxShadow: string;
85
131
  outline: string;
86
132
  outlineOffset: string;
@@ -5,6 +5,7 @@ export declare const headerFocusColor = "#0F465C";
5
5
  export declare const headerLightBlue = "#78CCED";
6
6
  export declare const headerLightBlueIcon = "#1DA1D4";
7
7
  export declare const headerRed = "#ED1C24";
8
+ export declare const headerRedDarkMode = "#DC6F73";
8
9
  export declare const headerRedDonate = "#E32B31";
9
10
  export declare const headerYellow = "#FEE34A";
10
11
  export declare const headerFocus: {
@@ -18,6 +19,9 @@ declare const Header: {
18
19
  parts: string[];
19
20
  baseStyle: {
20
21
  fontFamily: string;
22
+ _dark: {
23
+ backgroundColor: string;
24
+ };
21
25
  container: {
22
26
  marginX: {
23
27
  md: string;
@@ -34,6 +38,9 @@ declare const Header: {
34
38
  bg: string;
35
39
  marginTop: string;
36
40
  marginBottom: string;
41
+ _dark: {
42
+ backgroundColor: string;
43
+ };
37
44
  };
38
45
  logo: {
39
46
  padding: {
@@ -156,6 +156,15 @@ declare const HeaderLogin: {
156
156
  md: any;
157
157
  };
158
158
  };
159
+ _dark: {
160
+ color: string;
161
+ svg: {
162
+ fill: string;
163
+ };
164
+ _hover: {
165
+ color: string;
166
+ };
167
+ };
159
168
  };
160
169
  patronGreeting: {
161
170
  alignSelf: string;
@@ -286,6 +295,15 @@ declare const HeaderLogin: {
286
295
  md: any;
287
296
  };
288
297
  };
298
+ _dark: {
299
+ color: string;
300
+ svg: {
301
+ fill: string;
302
+ };
303
+ _hover: {
304
+ color: string;
305
+ };
306
+ };
289
307
  };
290
308
  };
291
309
  };
@@ -49,6 +49,21 @@ declare const HeaderLoginButton: {
49
49
  outlineStyle: string;
50
50
  outlineWidth: string;
51
51
  };
52
+ _dark: {
53
+ bg: {
54
+ base: string;
55
+ md: string;
56
+ };
57
+ color: string;
58
+ svg: {
59
+ fill: string;
60
+ };
61
+ _hover: {
62
+ svg: {
63
+ fill: string;
64
+ };
65
+ };
66
+ };
52
67
  };
53
68
  };
54
69
  export default HeaderLoginButton;
@@ -20,18 +20,50 @@ declare const HeaderLowerNav: {
20
20
  color: string;
21
21
  paddingBottom: string;
22
22
  textDecoration: string;
23
+ _dark: {
24
+ color: string;
25
+ };
23
26
  };
24
27
  _focus: {
25
28
  borderBottom: string;
26
29
  color: string;
27
30
  paddingBottom: string;
28
31
  textDecoration: string;
32
+ _dark: {
33
+ color: string;
34
+ };
29
35
  borderRadius: string;
30
36
  outlineColor: string;
31
37
  outlineOffset: string;
32
38
  outlineStyle: string;
33
39
  outlineWidth: string;
34
40
  };
41
+ _dark: {
42
+ color: string;
43
+ _hover: {
44
+ borderBottom: string;
45
+ color: string;
46
+ paddingBottom: string;
47
+ textDecoration: string;
48
+ _dark: {
49
+ color: string;
50
+ };
51
+ };
52
+ _focus: {
53
+ borderBottom: string;
54
+ color: string;
55
+ paddingBottom: string;
56
+ textDecoration: string;
57
+ _dark: {
58
+ color: string;
59
+ };
60
+ borderRadius: string;
61
+ outlineColor: string;
62
+ outlineOffset: string;
63
+ outlineStyle: string;
64
+ outlineWidth: string;
65
+ };
66
+ };
35
67
  };
36
68
  };
37
69
  };
@@ -18,6 +18,11 @@ declare const HeaderMobileIconNav: {
18
18
  outlineWidth: string;
19
19
  };
20
20
  };
21
+ _dark: {
22
+ svg: {
23
+ fill: string;
24
+ };
25
+ };
21
26
  };
22
27
  };
23
28
  export default HeaderMobileIconNav;
@@ -23,6 +23,12 @@ declare const HeaderMobileNavButton: {
23
23
  outlineStyle: string;
24
24
  outlineWidth: string;
25
25
  };
26
+ _dark: {
27
+ backgroundColor: string;
28
+ svg: {
29
+ fill: string;
30
+ };
31
+ };
26
32
  };
27
33
  };
28
34
  export default HeaderMobileNavButton;