@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,23 @@
1
+ /**
2
+ * These objects are also SCSS mixins but are now JS objects in the
3
+ * context of css-in-js and the custom NYPL-theme.
4
+ */
5
+ declare const screenreaderOnly: {
6
+ clip: string;
7
+ height: string;
8
+ overflow: string;
9
+ position: string;
10
+ width: string;
11
+ wordWrap: string;
12
+ };
13
+ declare const wrapperStyles: {
14
+ marginY: string;
15
+ marginX: string;
16
+ maxWidth: string;
17
+ paddingTop: string;
18
+ paddingBottom: string;
19
+ paddingRight: string;
20
+ paddingLeft: string;
21
+ width: string;
22
+ };
23
+ export { screenreaderOnly, wrapperStyles };
@@ -0,0 +1,160 @@
1
+ export declare const headings: {
2
+ h1: {
3
+ width: string;
4
+ marginTop: string;
5
+ marginLeft: string;
6
+ marginRight: string;
7
+ fontSize: string;
8
+ fontWeight: string;
9
+ letterSpacing: string;
10
+ lineHeight: string;
11
+ };
12
+ h2: {
13
+ width: string;
14
+ marginTop: string;
15
+ marginLeft: string;
16
+ marginRight: string;
17
+ fontSize: string;
18
+ fontWeight: string;
19
+ lineHeight: string;
20
+ };
21
+ h3: {
22
+ width: string;
23
+ marginTop: string;
24
+ marginLeft: string;
25
+ marginRight: string;
26
+ fontSize: string;
27
+ fontWeight: string;
28
+ lineHeight: string;
29
+ };
30
+ h4: {
31
+ width: string;
32
+ marginTop: string;
33
+ marginLeft: string;
34
+ marginRight: string;
35
+ fontSize: string;
36
+ fontWeight: string;
37
+ lineHeight: string;
38
+ };
39
+ fallback: {
40
+ width: string;
41
+ marginTop: string;
42
+ marginLeft: string;
43
+ marginRight: string;
44
+ fontSize: string;
45
+ fontWeight: string;
46
+ lineHeight: string;
47
+ };
48
+ };
49
+ declare const Heading: {
50
+ baseStyle: ({ noSpace }: {
51
+ noSpace: any;
52
+ }) => {
53
+ a: {
54
+ color: string;
55
+ textDecoration: string;
56
+ _hover: {
57
+ color: string;
58
+ };
59
+ };
60
+ marginBottom: string;
61
+ };
62
+ variants: {
63
+ h1: {
64
+ width: string;
65
+ marginTop: string;
66
+ marginLeft: string;
67
+ marginRight: string;
68
+ fontSize: string;
69
+ fontWeight: string;
70
+ letterSpacing: string;
71
+ lineHeight: string;
72
+ };
73
+ h2: {
74
+ width: string;
75
+ marginTop: string;
76
+ marginLeft: string;
77
+ marginRight: string;
78
+ fontSize: string;
79
+ fontWeight: string;
80
+ lineHeight: string;
81
+ };
82
+ h3: {
83
+ width: string;
84
+ marginTop: string;
85
+ marginLeft: string;
86
+ marginRight: string;
87
+ fontSize: string;
88
+ fontWeight: string;
89
+ lineHeight: string;
90
+ };
91
+ h4: {
92
+ width: string;
93
+ marginTop: string;
94
+ marginLeft: string;
95
+ marginRight: string;
96
+ fontSize: string;
97
+ fontWeight: string;
98
+ lineHeight: string;
99
+ };
100
+ h5: {
101
+ width: string;
102
+ marginTop: string;
103
+ marginLeft: string;
104
+ marginRight: string;
105
+ fontSize: string;
106
+ fontWeight: string;
107
+ lineHeight: string;
108
+ };
109
+ h6: {
110
+ width: string;
111
+ marginTop: string;
112
+ marginLeft: string;
113
+ marginRight: string;
114
+ fontSize: string;
115
+ fontWeight: string;
116
+ lineHeight: string;
117
+ };
118
+ primary: {
119
+ width: string;
120
+ marginTop: string;
121
+ marginLeft: string;
122
+ marginRight: string;
123
+ fontSize: string;
124
+ fontWeight: string;
125
+ letterSpacing: string;
126
+ lineHeight: string;
127
+ };
128
+ secondary: {
129
+ width: string;
130
+ marginTop: string;
131
+ marginLeft: string;
132
+ marginRight: string;
133
+ fontSize: string;
134
+ fontWeight: string;
135
+ lineHeight: string;
136
+ };
137
+ tertiary: {
138
+ width: string;
139
+ marginTop: string;
140
+ marginLeft: string;
141
+ marginRight: string;
142
+ fontSize: string;
143
+ fontWeight: string;
144
+ lineHeight: string;
145
+ };
146
+ callout: {
147
+ width: string;
148
+ marginTop: string;
149
+ marginLeft: string;
150
+ marginRight: string;
151
+ fontSize: string;
152
+ fontWeight: string;
153
+ lineHeight: string;
154
+ };
155
+ };
156
+ defaultProps: {
157
+ variant: string;
158
+ };
159
+ };
160
+ export default Heading;
@@ -0,0 +1,12 @@
1
+ interface HelperErrorTextBaseStyle {
2
+ isInvalid: boolean;
3
+ }
4
+ declare const helperErrorText: {
5
+ baseStyle: ({ isInvalid }: HelperErrorTextBaseStyle) => {
6
+ marginTop: string;
7
+ marginBottom: string;
8
+ fontSize: string;
9
+ color: string;
10
+ };
11
+ };
12
+ export default helperErrorText;
@@ -0,0 +1,499 @@
1
+ declare const Hero: {
2
+ baseStyle: {
3
+ bg: string;
4
+ };
5
+ variants: {
6
+ primary: {
7
+ alignItems: string;
8
+ display: string;
9
+ flexFlow: {
10
+ base: string;
11
+ md: string;
12
+ };
13
+ justifyContent: string;
14
+ minHeight: string;
15
+ content: {
16
+ bg: string;
17
+ color: string;
18
+ flex: {
19
+ base: string;
20
+ md: string;
21
+ };
22
+ maxWidth: {
23
+ md: string;
24
+ };
25
+ paddingTop: string;
26
+ paddingBottom: string;
27
+ paddingRight: string;
28
+ paddingLeft: string;
29
+ a: {
30
+ color: string;
31
+ display: string;
32
+ };
33
+ heading: {
34
+ marginBottom: string;
35
+ };
36
+ bodyText: {
37
+ marginBottom: string;
38
+ };
39
+ };
40
+ };
41
+ secondary: {
42
+ heading: {
43
+ marginBottom: string;
44
+ bg: string;
45
+ color: string;
46
+ flex: string;
47
+ marginTop: string;
48
+ paddingBottom: string;
49
+ position: string;
50
+ zIndex: string;
51
+ order: {
52
+ md: string;
53
+ };
54
+ _before: {
55
+ bg: string;
56
+ content: string;
57
+ height: string;
58
+ left: string;
59
+ position: string;
60
+ width: string;
61
+ zIndex: string;
62
+ };
63
+ };
64
+ overflowX: string;
65
+ content: {
66
+ paddingRight: string;
67
+ paddingLeft: string;
68
+ display: string;
69
+ flexFlow: {
70
+ base: string;
71
+ md: string;
72
+ };
73
+ img: {
74
+ flex: {
75
+ base: string;
76
+ md: string;
77
+ };
78
+ order: {
79
+ md: string;
80
+ };
81
+ height: string;
82
+ minWidth: string;
83
+ objectFit: string;
84
+ width: string;
85
+ };
86
+ marginY: string;
87
+ marginX: string;
88
+ maxWidth: string;
89
+ paddingTop: string;
90
+ paddingBottom: string;
91
+ width: string;
92
+ };
93
+ bodyText: {
94
+ paddingBottom: string;
95
+ paddingTop: string;
96
+ paddingRight: {
97
+ md: string;
98
+ };
99
+ flex: {
100
+ md: string;
101
+ };
102
+ order: {
103
+ md: string;
104
+ };
105
+ };
106
+ };
107
+ secondaryBooksAndMore: {
108
+ heading: {
109
+ bg: string;
110
+ _before: {
111
+ bg: string;
112
+ content: string;
113
+ height: string;
114
+ left: string;
115
+ position: string;
116
+ width: string;
117
+ zIndex: string;
118
+ };
119
+ marginBottom: string;
120
+ color: string;
121
+ flex: string;
122
+ marginTop: string;
123
+ paddingBottom: string;
124
+ position: string;
125
+ zIndex: string;
126
+ order: {
127
+ md: string;
128
+ };
129
+ };
130
+ overflowX: string;
131
+ content: {
132
+ paddingRight: string;
133
+ paddingLeft: string;
134
+ display: string;
135
+ flexFlow: {
136
+ base: string;
137
+ md: string;
138
+ };
139
+ img: {
140
+ flex: {
141
+ base: string;
142
+ md: string;
143
+ };
144
+ order: {
145
+ md: string;
146
+ };
147
+ height: string;
148
+ minWidth: string;
149
+ objectFit: string;
150
+ width: string;
151
+ };
152
+ marginY: string;
153
+ marginX: string;
154
+ maxWidth: string;
155
+ paddingTop: string;
156
+ paddingBottom: string;
157
+ width: string;
158
+ };
159
+ bodyText: {
160
+ paddingBottom: string;
161
+ paddingTop: string;
162
+ paddingRight: {
163
+ md: string;
164
+ };
165
+ flex: {
166
+ md: string;
167
+ };
168
+ order: {
169
+ md: string;
170
+ };
171
+ };
172
+ };
173
+ secondaryLocations: {
174
+ heading: {
175
+ bg: string;
176
+ _before: {
177
+ bg: string;
178
+ content: string;
179
+ height: string;
180
+ left: string;
181
+ position: string;
182
+ width: string;
183
+ zIndex: string;
184
+ };
185
+ marginBottom: string;
186
+ color: string;
187
+ flex: string;
188
+ marginTop: string;
189
+ paddingBottom: string;
190
+ position: string;
191
+ zIndex: string;
192
+ order: {
193
+ md: string;
194
+ };
195
+ };
196
+ overflowX: string;
197
+ content: {
198
+ paddingRight: string;
199
+ paddingLeft: string;
200
+ display: string;
201
+ flexFlow: {
202
+ base: string;
203
+ md: string;
204
+ };
205
+ img: {
206
+ flex: {
207
+ base: string;
208
+ md: string;
209
+ };
210
+ order: {
211
+ md: string;
212
+ };
213
+ height: string;
214
+ minWidth: string;
215
+ objectFit: string;
216
+ width: string;
217
+ };
218
+ marginY: string;
219
+ marginX: string;
220
+ maxWidth: string;
221
+ paddingTop: string;
222
+ paddingBottom: string;
223
+ width: string;
224
+ };
225
+ bodyText: {
226
+ paddingBottom: string;
227
+ paddingTop: string;
228
+ paddingRight: {
229
+ md: string;
230
+ };
231
+ flex: {
232
+ md: string;
233
+ };
234
+ order: {
235
+ md: string;
236
+ };
237
+ };
238
+ };
239
+ secondaryResearch: {
240
+ heading: {
241
+ bg: string;
242
+ _before: {
243
+ bg: string;
244
+ content: string;
245
+ height: string;
246
+ left: string;
247
+ position: string;
248
+ width: string;
249
+ zIndex: string;
250
+ };
251
+ marginBottom: string;
252
+ color: string;
253
+ flex: string;
254
+ marginTop: string;
255
+ paddingBottom: string;
256
+ position: string;
257
+ zIndex: string;
258
+ order: {
259
+ md: string;
260
+ };
261
+ };
262
+ overflowX: string;
263
+ content: {
264
+ paddingRight: string;
265
+ paddingLeft: string;
266
+ display: string;
267
+ flexFlow: {
268
+ base: string;
269
+ md: string;
270
+ };
271
+ img: {
272
+ flex: {
273
+ base: string;
274
+ md: string;
275
+ };
276
+ order: {
277
+ md: string;
278
+ };
279
+ height: string;
280
+ minWidth: string;
281
+ objectFit: string;
282
+ width: string;
283
+ };
284
+ marginY: string;
285
+ marginX: string;
286
+ maxWidth: string;
287
+ paddingTop: string;
288
+ paddingBottom: string;
289
+ width: string;
290
+ };
291
+ bodyText: {
292
+ paddingBottom: string;
293
+ paddingTop: string;
294
+ paddingRight: {
295
+ md: string;
296
+ };
297
+ flex: {
298
+ md: string;
299
+ };
300
+ order: {
301
+ md: string;
302
+ };
303
+ };
304
+ };
305
+ secondaryWhatsOn: {
306
+ heading: {
307
+ bg: string;
308
+ _before: {
309
+ bg: string;
310
+ content: string;
311
+ height: string;
312
+ left: string;
313
+ position: string;
314
+ width: string;
315
+ zIndex: string;
316
+ };
317
+ marginBottom: string;
318
+ color: string;
319
+ flex: string;
320
+ marginTop: string;
321
+ paddingBottom: string;
322
+ position: string;
323
+ zIndex: string;
324
+ order: {
325
+ md: string;
326
+ };
327
+ };
328
+ overflowX: string;
329
+ content: {
330
+ paddingRight: string;
331
+ paddingLeft: string;
332
+ display: string;
333
+ flexFlow: {
334
+ base: string;
335
+ md: string;
336
+ };
337
+ img: {
338
+ flex: {
339
+ base: string;
340
+ md: string;
341
+ };
342
+ order: {
343
+ md: string;
344
+ };
345
+ height: string;
346
+ minWidth: string;
347
+ objectFit: string;
348
+ width: string;
349
+ };
350
+ marginY: string;
351
+ marginX: string;
352
+ maxWidth: string;
353
+ paddingTop: string;
354
+ paddingBottom: string;
355
+ width: string;
356
+ };
357
+ bodyText: {
358
+ paddingBottom: string;
359
+ paddingTop: string;
360
+ paddingRight: {
361
+ md: string;
362
+ };
363
+ flex: {
364
+ md: string;
365
+ };
366
+ order: {
367
+ md: string;
368
+ };
369
+ };
370
+ };
371
+ tertiary: {
372
+ bg: string;
373
+ content: {
374
+ color: string;
375
+ display: string;
376
+ flexFlow: string;
377
+ padding: string;
378
+ p: {
379
+ marginBottom: string;
380
+ marginTop: string;
381
+ };
382
+ marginY: string;
383
+ marginX: string;
384
+ maxWidth: string;
385
+ paddingTop: string;
386
+ paddingBottom: string;
387
+ paddingRight: string;
388
+ paddingLeft: string;
389
+ width: string;
390
+ };
391
+ heading: {
392
+ marginBottom: string;
393
+ _lastChild: {
394
+ marginBottom: string;
395
+ };
396
+ };
397
+ p: {
398
+ marginBottom: string;
399
+ };
400
+ };
401
+ campaign: {
402
+ alignItems: string;
403
+ display: string;
404
+ justifyContent: string;
405
+ marginBottom: string[];
406
+ minHeight: string;
407
+ overflow: string;
408
+ padding: {
409
+ base: string;
410
+ md: string;
411
+ };
412
+ position: string;
413
+ content: {
414
+ alignItems: string;
415
+ bg: string;
416
+ color: string;
417
+ display: string;
418
+ flexFlow: {
419
+ base: string;
420
+ md: string;
421
+ };
422
+ minHeight: string;
423
+ flex: {
424
+ md: string;
425
+ };
426
+ maxWidth: {
427
+ md: string;
428
+ };
429
+ position: {
430
+ md: string;
431
+ };
432
+ top: {
433
+ md: string;
434
+ };
435
+ };
436
+ a: {
437
+ color: string;
438
+ display: string;
439
+ };
440
+ img: {
441
+ flex: {
442
+ base: string;
443
+ md: string;
444
+ };
445
+ minWidth: string;
446
+ objectFit: string;
447
+ width: string;
448
+ height: {
449
+ md: string;
450
+ };
451
+ };
452
+ interior: {
453
+ flex: {
454
+ base: string;
455
+ md: string;
456
+ };
457
+ padding: string;
458
+ maxWidth: {
459
+ md: string;
460
+ };
461
+ };
462
+ };
463
+ fiftyFifty: {
464
+ content: {
465
+ alignItems: string;
466
+ display: string;
467
+ flexFlow: {
468
+ base: string;
469
+ lg: string;
470
+ };
471
+ paddingBottom: string;
472
+ paddingRight: string;
473
+ paddingLeft: string;
474
+ padding: {
475
+ lg: string;
476
+ };
477
+ marginY: string;
478
+ marginX: string;
479
+ maxWidth: string;
480
+ paddingTop: string;
481
+ width: string;
482
+ };
483
+ img: {
484
+ marginBottom: {
485
+ base: string;
486
+ lg: string;
487
+ };
488
+ marginRight: {
489
+ lg: string;
490
+ };
491
+ maxWidth: {
492
+ base: string;
493
+ lg: string;
494
+ };
495
+ };
496
+ };
497
+ };
498
+ };
499
+ export default Hero;
@@ -0,0 +1,15 @@
1
+ interface HorizontalRuleBaseStyle {
2
+ align: string;
3
+ }
4
+ declare const HorizontalRule: {
5
+ baseStyle: ({ align }: HorizontalRuleBaseStyle) => {
6
+ bg: string;
7
+ border: string;
8
+ height: string;
9
+ marginBottom: string;
10
+ marginTop: string;
11
+ marginLeft: string | number;
12
+ marginRight: string | number;
13
+ };
14
+ };
15
+ export default HorizontalRule;