@nypl/design-system-react-components 1.0.1 → 1.0.3

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 (129) hide show
  1. package/CHANGELOG.md +1452 -3
  2. package/README.md +389 -3
  3. package/dist/__tests__/fileMock.d.ts +4 -0
  4. package/dist/__tests__/setup.d.ts +2 -0
  5. package/{lib/stories/0-Welcome.stories.d.ts → dist/__tests__/utils/utils.test.d.ts} +1 -1
  6. package/dist/components/Accordion/Accordion.d.ts +21 -0
  7. package/dist/components/Autosuggest/Autosuggest.stories.d.ts +4 -0
  8. package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +18 -0
  9. package/dist/components/Button/Button.d.ts +25 -0
  10. package/dist/components/ButtonGroup/ButtonGroup.d.ts +22 -0
  11. package/dist/components/Card/Card.d.ts +51 -0
  12. package/dist/components/Checkbox/Checkbox.d.ts +47 -0
  13. package/dist/components/CheckboxGroup/CheckboxGroup.d.ts +49 -0
  14. package/dist/components/ComponentWrapper/ComponentWrapper.d.ts +29 -0
  15. package/dist/components/DatePicker/DatePicker.d.ts +81 -0
  16. package/dist/components/Fieldset/Fieldset.d.ts +22 -0
  17. package/dist/components/Form/Form.d.ts +29 -0
  18. package/dist/components/Grid/SimpleGrid.d.ts +17 -0
  19. package/dist/components/Heading/Heading.d.ts +27 -0
  20. package/dist/components/HelperErrorText/HelperErrorText.d.ts +29 -0
  21. package/dist/components/Hero/Hero.d.ts +40 -0
  22. package/dist/components/HorizontalRule/HorizontalRule.d.ts +11 -0
  23. package/dist/components/Icons/Icon.d.ts +37 -0
  24. package/dist/components/Icons/IconSvgs.d.ts +33 -0
  25. package/dist/components/Image/Image.d.ts +61 -0
  26. package/dist/components/Label/Label.d.ts +20 -0
  27. package/dist/components/Link/Link.d.ts +20 -0
  28. package/dist/components/List/List.d.ts +35 -0
  29. package/dist/components/Logo/Logo.d.ts +26 -0
  30. package/dist/components/Logo/LogoSvgs.d.ts +48 -0
  31. package/dist/components/Modal/Modal.d.ts +33 -0
  32. package/dist/components/Notification/Notification.d.ts +50 -0
  33. package/dist/components/Pagination/Pagination.d.ts +27 -0
  34. package/dist/components/Placeholder/Placeholder.d.ts +10 -0
  35. package/dist/components/ProgressIndicator/ProgressIndicator.d.ts +30 -0
  36. package/dist/components/Radio/Radio.d.ts +43 -0
  37. package/dist/components/RadioGroup/RadioGroup.d.ts +51 -0
  38. package/dist/components/SearchBar/SearchBar.d.ts +61 -0
  39. package/dist/components/Select/Select.d.ts +57 -0
  40. package/dist/components/SkeletonLoader/SkeletonLoader.d.ts +39 -0
  41. package/dist/components/SkipNavigation/SkipNavigation.d.ts +17 -0
  42. package/dist/components/Slider/Slider.d.ts +59 -0
  43. package/dist/components/StatusBadge/StatusBadge.d.ts +16 -0
  44. package/dist/components/StructuredContent/StructuredContent.d.ts +28 -0
  45. package/dist/components/StyleGuide/ColorCard.d.ts +12 -0
  46. package/dist/components/Table/Table.d.ts +30 -0
  47. package/dist/components/Tabs/Tabs.d.ts +26 -0
  48. package/dist/components/Template/Template.d.ts +126 -0
  49. package/dist/components/Text/Text.d.ts +16 -0
  50. package/dist/components/TextInput/TextInput.d.ts +79 -0
  51. package/dist/components/Toggle/Toggle.d.ts +42 -0
  52. package/dist/components/VideoPlayer/VideoPlayer.d.ts +38 -0
  53. package/dist/design-system-react-components.cjs.development.js +11648 -0
  54. package/dist/design-system-react-components.cjs.development.js.map +1 -0
  55. package/dist/design-system-react-components.cjs.production.min.js +2 -0
  56. package/dist/design-system-react-components.cjs.production.min.js.map +1 -0
  57. package/dist/design-system-react-components.esm.js +11493 -0
  58. package/dist/design-system-react-components.esm.js.map +1 -0
  59. package/dist/helpers/types.d.ts +1 -0
  60. package/dist/hooks/__tests__/useCarouselStyles.test.d.ts +1 -0
  61. package/dist/hooks/useCarouselStyles.d.ts +17 -0
  62. package/dist/hooks/useNYPLTheme.d.ts +66 -0
  63. package/dist/hooks/useWindowSize.d.ts +10 -0
  64. package/dist/index.d.ts +48 -0
  65. package/dist/index.js +8 -0
  66. package/dist/resources.scss +386 -0
  67. package/dist/styles.css +3 -0
  68. package/dist/theme/components/accordion.d.ts +20 -0
  69. package/dist/theme/components/breadcrumb.d.ts +105 -0
  70. package/dist/theme/components/button.d.ts +120 -0
  71. package/dist/theme/components/buttonGroup.d.ts +11 -0
  72. package/dist/theme/components/card.d.ts +381 -0
  73. package/dist/theme/components/checkbox.d.ts +95 -0
  74. package/dist/theme/components/checkboxGroup.d.ts +14 -0
  75. package/dist/theme/components/componentWrapper.d.ts +12 -0
  76. package/dist/theme/components/customTable.d.ts +624 -0
  77. package/dist/theme/components/datePicker.d.ts +16 -0
  78. package/dist/theme/components/fieldset.d.ts +20 -0
  79. package/dist/theme/components/global.d.ts +73 -0
  80. package/dist/theme/components/globalMixins.d.ts +23 -0
  81. package/dist/theme/components/heading.d.ts +160 -0
  82. package/dist/theme/components/helperErrorText.d.ts +12 -0
  83. package/dist/theme/components/hero.d.ts +499 -0
  84. package/dist/theme/components/horizontalRule.d.ts +15 -0
  85. package/dist/theme/components/icon.d.ts +47755 -0
  86. package/dist/theme/components/image.d.ts +590 -0
  87. package/dist/theme/components/label.d.ts +18 -0
  88. package/dist/theme/components/link.d.ts +62 -0
  89. package/dist/theme/components/list.d.ts +182 -0
  90. package/dist/theme/components/logo.d.ts +477 -0
  91. package/dist/theme/components/notification.d.ts +95 -0
  92. package/dist/theme/components/pagination.d.ts +16 -0
  93. package/dist/theme/components/progressIndicator.d.ts +52 -0
  94. package/dist/theme/components/radio.d.ts +107 -0
  95. package/dist/theme/components/radioGroup.d.ts +14 -0
  96. package/dist/theme/components/searchBar.d.ts +18 -0
  97. package/dist/theme/components/select.d.ts +82 -0
  98. package/dist/theme/components/skeletonLoader.d.ts +102 -0
  99. package/dist/theme/components/skipNavigation.d.ts +25 -0
  100. package/dist/theme/components/slider.d.ts +59 -0
  101. package/dist/theme/components/statusBadge.d.ts +25 -0
  102. package/dist/theme/components/structuredContent.d.ts +326 -0
  103. package/dist/theme/components/tabs.d.ts +136 -0
  104. package/dist/theme/components/template.d.ts +108 -0
  105. package/dist/theme/components/text.d.ts +26 -0
  106. package/dist/theme/components/textInput.d.ts +124 -0
  107. package/dist/theme/components/toggle.d.ts +93 -0
  108. package/dist/theme/components/videoPlayer.d.ts +40 -0
  109. package/dist/theme/foundations/breakpoints.d.ts +23 -0
  110. package/dist/theme/foundations/colors.d.ts +3 -0
  111. package/dist/theme/foundations/global.d.ts +58 -0
  112. package/dist/theme/foundations/radii.d.ts +6 -0
  113. package/dist/theme/foundations/shadows.d.ts +4 -0
  114. package/dist/theme/foundations/spacing.d.ts +82 -0
  115. package/dist/theme/foundations/typography.d.ts +8 -0
  116. package/dist/theme/index.d.ts +20 -0
  117. package/dist/theme/provider.d.ts +3 -0
  118. package/dist/theme/types.d.ts +1 -0
  119. package/dist/utils/componentCategories.d.ts +1 -0
  120. package/dist/utils/interfaces.d.ts +5 -0
  121. package/dist/utils/utils.d.ts +31 -0
  122. package/package.json +132 -20
  123. package/lib/components/Button/Button.d.ts +0 -17
  124. package/lib/components/Button/Button.js +0 -42
  125. package/lib/index.d.ts +0 -1
  126. package/lib/index.js +0 -6
  127. package/lib/stories/0-Welcome.stories.js +0 -19
  128. package/lib/stories/1-Button.stories.d.ts +0 -6
  129. package/lib/stories/1-Button.stories.js +0 -20
@@ -0,0 +1,590 @@
1
+ interface CustomImageBaseStyle {
2
+ size: keyof typeof imageSizes;
3
+ }
4
+ interface CustomImageWrapperBaseStyle {
5
+ ratio: keyof typeof imageRatios;
6
+ size: keyof typeof imageSizes;
7
+ }
8
+ declare const imageSizes: {
9
+ default: {
10
+ maxWidth: string;
11
+ };
12
+ xxsmall: {
13
+ maxWidth: string;
14
+ marginLeft: string;
15
+ marginRight: string;
16
+ };
17
+ xsmall: {
18
+ maxWidth: string;
19
+ marginLeft: string;
20
+ marginRight: string;
21
+ };
22
+ small: {
23
+ maxWidth: string;
24
+ marginLeft: string;
25
+ marginRight: string;
26
+ };
27
+ medium: {
28
+ maxWidth: string;
29
+ marginLeft: string;
30
+ marginRight: string;
31
+ };
32
+ large: {
33
+ maxWidth: string;
34
+ marginLeft: string;
35
+ marginRight: string;
36
+ };
37
+ };
38
+ declare const imageRatios: {
39
+ fourByThree: {
40
+ paddingBottom: string;
41
+ position: string;
42
+ width: string;
43
+ height: string;
44
+ overflow: string;
45
+ };
46
+ oneByTwo: {
47
+ paddingBottom: string;
48
+ position: string;
49
+ width: string;
50
+ height: string;
51
+ overflow: string;
52
+ };
53
+ original: {
54
+ position: string;
55
+ width: string;
56
+ height: string;
57
+ overflow: string;
58
+ };
59
+ sixteenByNine: {
60
+ paddingBottom: string;
61
+ position: string;
62
+ width: string;
63
+ height: string;
64
+ overflow: string;
65
+ };
66
+ square: {
67
+ paddingBottom: string;
68
+ position: string;
69
+ width: string;
70
+ height: string;
71
+ overflow: string;
72
+ };
73
+ threeByFour: {
74
+ paddingBottom: string;
75
+ position: string;
76
+ width: string;
77
+ height: string;
78
+ overflow: string;
79
+ };
80
+ threeByTwo: {
81
+ paddingBottom: string;
82
+ position: string;
83
+ width: string;
84
+ height: string;
85
+ overflow: string;
86
+ };
87
+ twoByOne: {
88
+ paddingBottom: string;
89
+ position: string;
90
+ width: string;
91
+ height: string;
92
+ overflow: string;
93
+ };
94
+ };
95
+ declare const CustomImage: {
96
+ parts: string[];
97
+ variants: {
98
+ circle: {
99
+ img: {
100
+ borderRadius: string;
101
+ };
102
+ };
103
+ };
104
+ baseStyle: ({ size }: CustomImageBaseStyle) => {
105
+ figure: {
106
+ img: {
107
+ marginBottom: string;
108
+ };
109
+ maxWidth: string;
110
+ margin: string;
111
+ width: string;
112
+ } | {
113
+ img: {
114
+ marginBottom: string;
115
+ };
116
+ maxWidth: string;
117
+ marginLeft: string;
118
+ marginRight: string;
119
+ margin: string;
120
+ width: string;
121
+ } | {
122
+ img: {
123
+ marginBottom: string;
124
+ };
125
+ maxWidth: string;
126
+ marginLeft: string;
127
+ marginRight: string;
128
+ margin: string;
129
+ width: string;
130
+ } | {
131
+ img: {
132
+ marginBottom: string;
133
+ };
134
+ maxWidth: string;
135
+ marginLeft: string;
136
+ marginRight: string;
137
+ margin: string;
138
+ width: string;
139
+ } | {
140
+ img: {
141
+ marginBottom: string;
142
+ };
143
+ maxWidth: string;
144
+ marginLeft: string;
145
+ marginRight: string;
146
+ margin: string;
147
+ width: string;
148
+ } | {
149
+ img: {
150
+ marginBottom: string;
151
+ };
152
+ maxWidth: string;
153
+ marginLeft: string;
154
+ marginRight: string;
155
+ margin: string;
156
+ width: string;
157
+ };
158
+ figcaption: {
159
+ fontStyle: string;
160
+ fontSize: string;
161
+ };
162
+ img: {
163
+ maxWidth: string;
164
+ display: string;
165
+ boxSizing: string;
166
+ objectFit: string;
167
+ position: string;
168
+ width: string;
169
+ } | {
170
+ maxWidth: string;
171
+ marginLeft: string;
172
+ marginRight: string;
173
+ display: string;
174
+ boxSizing: string;
175
+ objectFit: string;
176
+ position: string;
177
+ width: string;
178
+ } | {
179
+ maxWidth: string;
180
+ marginLeft: string;
181
+ marginRight: string;
182
+ display: string;
183
+ boxSizing: string;
184
+ objectFit: string;
185
+ position: string;
186
+ width: string;
187
+ } | {
188
+ maxWidth: string;
189
+ marginLeft: string;
190
+ marginRight: string;
191
+ display: string;
192
+ boxSizing: string;
193
+ objectFit: string;
194
+ position: string;
195
+ width: string;
196
+ } | {
197
+ maxWidth: string;
198
+ marginLeft: string;
199
+ marginRight: string;
200
+ display: string;
201
+ boxSizing: string;
202
+ objectFit: string;
203
+ position: string;
204
+ width: string;
205
+ } | {
206
+ maxWidth: string;
207
+ marginLeft: string;
208
+ marginRight: string;
209
+ display: string;
210
+ boxSizing: string;
211
+ objectFit: string;
212
+ position: string;
213
+ width: string;
214
+ };
215
+ captionWrappers: {
216
+ marginTop: string;
217
+ };
218
+ };
219
+ };
220
+ declare const CustomImageWrapper: {
221
+ parts: string[];
222
+ baseStyle: ({ ratio, size, }: CustomImageWrapperBaseStyle) => {
223
+ crop: {
224
+ paddingBottom: string;
225
+ position: string;
226
+ width: string;
227
+ height: string;
228
+ overflow: string;
229
+ } | {
230
+ paddingBottom: string;
231
+ position: string;
232
+ width: string;
233
+ height: string;
234
+ overflow: string;
235
+ } | {
236
+ position: string;
237
+ width: string;
238
+ height: string;
239
+ overflow: string;
240
+ } | {
241
+ paddingBottom: string;
242
+ position: string;
243
+ width: string;
244
+ height: string;
245
+ overflow: string;
246
+ } | {
247
+ paddingBottom: string;
248
+ position: string;
249
+ width: string;
250
+ height: string;
251
+ overflow: string;
252
+ } | {
253
+ paddingBottom: string;
254
+ position: string;
255
+ width: string;
256
+ height: string;
257
+ overflow: string;
258
+ } | {
259
+ paddingBottom: string;
260
+ position: string;
261
+ width: string;
262
+ height: string;
263
+ overflow: string;
264
+ } | {
265
+ paddingBottom: string;
266
+ position: string;
267
+ width: string;
268
+ height: string;
269
+ overflow: string;
270
+ };
271
+ img: {
272
+ height: string;
273
+ left: string;
274
+ maxWidth: string;
275
+ position: string;
276
+ top: string;
277
+ width: string;
278
+ };
279
+ maxWidth: string;
280
+ marginLeft: string;
281
+ marginRight: string;
282
+ width: string;
283
+ } | {
284
+ crop: {
285
+ paddingBottom: string;
286
+ position: string;
287
+ width: string;
288
+ height: string;
289
+ overflow: string;
290
+ } | {
291
+ paddingBottom: string;
292
+ position: string;
293
+ width: string;
294
+ height: string;
295
+ overflow: string;
296
+ } | {
297
+ position: string;
298
+ width: string;
299
+ height: string;
300
+ overflow: string;
301
+ } | {
302
+ paddingBottom: string;
303
+ position: string;
304
+ width: string;
305
+ height: string;
306
+ overflow: string;
307
+ } | {
308
+ paddingBottom: string;
309
+ position: string;
310
+ width: string;
311
+ height: string;
312
+ overflow: string;
313
+ } | {
314
+ paddingBottom: string;
315
+ position: string;
316
+ width: string;
317
+ height: string;
318
+ overflow: string;
319
+ } | {
320
+ paddingBottom: string;
321
+ position: string;
322
+ width: string;
323
+ height: string;
324
+ overflow: string;
325
+ } | {
326
+ paddingBottom: string;
327
+ position: string;
328
+ width: string;
329
+ height: string;
330
+ overflow: string;
331
+ };
332
+ img: {
333
+ height: string;
334
+ left: string;
335
+ maxWidth: string;
336
+ position: string;
337
+ top: string;
338
+ width: string;
339
+ };
340
+ maxWidth: string;
341
+ marginLeft: string;
342
+ marginRight: string;
343
+ width: string;
344
+ } | {
345
+ crop: {
346
+ paddingBottom: string;
347
+ position: string;
348
+ width: string;
349
+ height: string;
350
+ overflow: string;
351
+ } | {
352
+ paddingBottom: string;
353
+ position: string;
354
+ width: string;
355
+ height: string;
356
+ overflow: string;
357
+ } | {
358
+ position: string;
359
+ width: string;
360
+ height: string;
361
+ overflow: string;
362
+ } | {
363
+ paddingBottom: string;
364
+ position: string;
365
+ width: string;
366
+ height: string;
367
+ overflow: string;
368
+ } | {
369
+ paddingBottom: string;
370
+ position: string;
371
+ width: string;
372
+ height: string;
373
+ overflow: string;
374
+ } | {
375
+ paddingBottom: string;
376
+ position: string;
377
+ width: string;
378
+ height: string;
379
+ overflow: string;
380
+ } | {
381
+ paddingBottom: string;
382
+ position: string;
383
+ width: string;
384
+ height: string;
385
+ overflow: string;
386
+ } | {
387
+ paddingBottom: string;
388
+ position: string;
389
+ width: string;
390
+ height: string;
391
+ overflow: string;
392
+ };
393
+ img: {
394
+ height: string;
395
+ left: string;
396
+ maxWidth: string;
397
+ position: string;
398
+ top: string;
399
+ width: string;
400
+ };
401
+ maxWidth: string;
402
+ marginLeft: string;
403
+ marginRight: string;
404
+ width: string;
405
+ } | {
406
+ crop: {
407
+ paddingBottom: string;
408
+ position: string;
409
+ width: string;
410
+ height: string;
411
+ overflow: string;
412
+ } | {
413
+ paddingBottom: string;
414
+ position: string;
415
+ width: string;
416
+ height: string;
417
+ overflow: string;
418
+ } | {
419
+ position: string;
420
+ width: string;
421
+ height: string;
422
+ overflow: string;
423
+ } | {
424
+ paddingBottom: string;
425
+ position: string;
426
+ width: string;
427
+ height: string;
428
+ overflow: string;
429
+ } | {
430
+ paddingBottom: string;
431
+ position: string;
432
+ width: string;
433
+ height: string;
434
+ overflow: string;
435
+ } | {
436
+ paddingBottom: string;
437
+ position: string;
438
+ width: string;
439
+ height: string;
440
+ overflow: string;
441
+ } | {
442
+ paddingBottom: string;
443
+ position: string;
444
+ width: string;
445
+ height: string;
446
+ overflow: string;
447
+ } | {
448
+ paddingBottom: string;
449
+ position: string;
450
+ width: string;
451
+ height: string;
452
+ overflow: string;
453
+ };
454
+ img: {
455
+ height: string;
456
+ left: string;
457
+ maxWidth: string;
458
+ position: string;
459
+ top: string;
460
+ width: string;
461
+ };
462
+ maxWidth: string;
463
+ marginLeft: string;
464
+ marginRight: string;
465
+ width: string;
466
+ } | {
467
+ crop: {
468
+ paddingBottom: string;
469
+ position: string;
470
+ width: string;
471
+ height: string;
472
+ overflow: string;
473
+ } | {
474
+ paddingBottom: string;
475
+ position: string;
476
+ width: string;
477
+ height: string;
478
+ overflow: string;
479
+ } | {
480
+ position: string;
481
+ width: string;
482
+ height: string;
483
+ overflow: string;
484
+ } | {
485
+ paddingBottom: string;
486
+ position: string;
487
+ width: string;
488
+ height: string;
489
+ overflow: string;
490
+ } | {
491
+ paddingBottom: string;
492
+ position: string;
493
+ width: string;
494
+ height: string;
495
+ overflow: string;
496
+ } | {
497
+ paddingBottom: string;
498
+ position: string;
499
+ width: string;
500
+ height: string;
501
+ overflow: string;
502
+ } | {
503
+ paddingBottom: string;
504
+ position: string;
505
+ width: string;
506
+ height: string;
507
+ overflow: string;
508
+ } | {
509
+ paddingBottom: string;
510
+ position: string;
511
+ width: string;
512
+ height: string;
513
+ overflow: string;
514
+ };
515
+ img: {
516
+ height: string;
517
+ left: string;
518
+ maxWidth: string;
519
+ position: string;
520
+ top: string;
521
+ width: string;
522
+ };
523
+ maxWidth: string;
524
+ marginLeft: string;
525
+ marginRight: string;
526
+ width: string;
527
+ } | {
528
+ crop: {
529
+ paddingBottom: string;
530
+ position: string;
531
+ width: string;
532
+ height: string;
533
+ overflow: string;
534
+ } | {
535
+ paddingBottom: string;
536
+ position: string;
537
+ width: string;
538
+ height: string;
539
+ overflow: string;
540
+ } | {
541
+ position: string;
542
+ width: string;
543
+ height: string;
544
+ overflow: string;
545
+ } | {
546
+ paddingBottom: string;
547
+ position: string;
548
+ width: string;
549
+ height: string;
550
+ overflow: string;
551
+ } | {
552
+ paddingBottom: string;
553
+ position: string;
554
+ width: string;
555
+ height: string;
556
+ overflow: string;
557
+ } | {
558
+ paddingBottom: string;
559
+ position: string;
560
+ width: string;
561
+ height: string;
562
+ overflow: string;
563
+ } | {
564
+ paddingBottom: string;
565
+ position: string;
566
+ width: string;
567
+ height: string;
568
+ overflow: string;
569
+ } | {
570
+ paddingBottom: string;
571
+ position: string;
572
+ width: string;
573
+ height: string;
574
+ overflow: string;
575
+ };
576
+ img: {
577
+ height: string;
578
+ left: string;
579
+ maxWidth: string;
580
+ position: string;
581
+ top: string;
582
+ width: string;
583
+ };
584
+ maxWidth: string;
585
+ marginLeft: string;
586
+ marginRight: string;
587
+ width: string;
588
+ };
589
+ };
590
+ export { CustomImage, CustomImageWrapper };
@@ -0,0 +1,18 @@
1
+ interface LabelBaseStyle {
2
+ isInlined: boolean;
3
+ }
4
+ declare const Label: {
5
+ baseStyle: ({ isInlined }: LabelBaseStyle) => {
6
+ flex: string;
7
+ whiteSpace: string;
8
+ display: string;
9
+ fontSize: string;
10
+ fontWeight: string;
11
+ marginBottom: string;
12
+ width: string;
13
+ span: {
14
+ fontWeight: string;
15
+ };
16
+ };
17
+ };
18
+ export default Label;
@@ -0,0 +1,62 @@
1
+ export declare const baseLinkStyles: {
2
+ color: string;
3
+ textDecoration: string;
4
+ _hover: {
5
+ color: string;
6
+ };
7
+ };
8
+ declare const Link: {
9
+ baseStyle: {
10
+ a: {
11
+ _hover: {
12
+ color: string;
13
+ };
14
+ };
15
+ color: string;
16
+ textDecoration: string;
17
+ _hover: {
18
+ color: string;
19
+ };
20
+ };
21
+ variants: {
22
+ link: {};
23
+ disabled: {
24
+ color: string;
25
+ pointerEvents: string;
26
+ };
27
+ moreLink: {
28
+ alignItems: string;
29
+ display: string;
30
+ svg: {
31
+ height: string;
32
+ width: string;
33
+ textDecoration: string;
34
+ fill: string;
35
+ };
36
+ _hover: {
37
+ color: string;
38
+ textDecoration: string;
39
+ };
40
+ };
41
+ button: {
42
+ width: string;
43
+ borderRadius: string;
44
+ lineHeight: string;
45
+ display: string;
46
+ cursor: string;
47
+ color: string;
48
+ justifyContent: string;
49
+ py: string;
50
+ px: string;
51
+ textDecoration: string;
52
+ fontWeight: string;
53
+ bg: string;
54
+ _hover: {
55
+ color: string;
56
+ bg: string;
57
+ textDecoration: string;
58
+ };
59
+ };
60
+ };
61
+ };
62
+ export default Link;