@utilitywarehouse/hearth-react 0.28.6 → 0.29.0

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 (104) hide show
  1. package/README.md +34 -20
  2. package/SKILL.md +355 -0
  3. package/dist/{chunk-O7RBVBMN.cjs → chunk-LWHIBSW2.cjs} +2 -2
  4. package/dist/{chunk-O7RBVBMN.cjs.map → chunk-LWHIBSW2.cjs.map} +1 -1
  5. package/dist/{chunk-JRVYOIXR.js → chunk-MIVYZGEV.js} +2 -2
  6. package/dist/components/CardAccordion/CardAccordion.context.d.ts.map +1 -1
  7. package/dist/components/Combobox/Combobox.cjs +1 -1
  8. package/dist/components/Combobox/Combobox.js +1 -1
  9. package/dist/components/ExpandableCard/ExpandableCard.cjs +1 -1
  10. package/dist/components/ExpandableCard/ExpandableCard.js +1 -1
  11. package/dist/helpers/get-classname-styles.d.ts.map +1 -1
  12. package/dist/helpers/logger.d.ts.map +1 -1
  13. package/dist/helpers/merge-ids.d.ts.map +1 -1
  14. package/dist/hooks/use-ids.d.ts.map +1 -1
  15. package/dist/index.cjs +1 -1
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.js +1 -1
  18. package/package.json +18 -12
  19. package/public/llms/components/accordion.md +321 -0
  20. package/public/llms/components/alert.md +217 -0
  21. package/public/llms/components/avatar.md +112 -0
  22. package/public/llms/components/badge.md +158 -0
  23. package/public/llms/components/body-text.md +200 -0
  24. package/public/llms/components/box.md +148 -0
  25. package/public/llms/components/breadcrumbs.md +97 -0
  26. package/public/llms/components/button.md +595 -0
  27. package/public/llms/components/card-accordion.md +277 -0
  28. package/public/llms/components/card.md +985 -0
  29. package/public/llms/components/checkbox-group.md +193 -0
  30. package/public/llms/components/checkbox-tile.md +116 -0
  31. package/public/llms/components/checkbox.md +108 -0
  32. package/public/llms/components/combobox.md +360 -0
  33. package/public/llms/components/container.md +162 -0
  34. package/public/llms/components/currency-input.md +85 -0
  35. package/public/llms/components/date-input.md +90 -0
  36. package/public/llms/components/date-picker.md +159 -0
  37. package/public/llms/components/description-list.md +149 -0
  38. package/public/llms/components/detail-text.md +89 -0
  39. package/public/llms/components/divider.md +88 -0
  40. package/public/llms/components/em.md +43 -0
  41. package/public/llms/components/expandable-card.md +231 -0
  42. package/public/llms/components/flex.md +197 -0
  43. package/public/llms/components/grid.md +244 -0
  44. package/public/llms/components/heading.md +65 -0
  45. package/public/llms/components/helper-text.md +27 -0
  46. package/public/llms/components/highlight-banner.md +94 -0
  47. package/public/llms/components/icon-button.md +516 -0
  48. package/public/llms/components/icon-container.md +247 -0
  49. package/public/llms/components/inline-link.md +190 -0
  50. package/public/llms/components/label.md +28 -0
  51. package/public/llms/components/link.md +236 -0
  52. package/public/llms/components/list.md +715 -0
  53. package/public/llms/components/menu.md +270 -0
  54. package/public/llms/components/modal.md +328 -0
  55. package/public/llms/components/pagination.md +138 -0
  56. package/public/llms/components/password-input.md +93 -0
  57. package/public/llms/components/progress-bar.md +139 -0
  58. package/public/llms/components/progress-stepper.md +147 -0
  59. package/public/llms/components/radio-group.md +487 -0
  60. package/public/llms/components/search-input.md +132 -0
  61. package/public/llms/components/section-header.md +82 -0
  62. package/public/llms/components/select.md +148 -0
  63. package/public/llms/components/skeleton.md +282 -0
  64. package/public/llms/components/spinner.md +59 -0
  65. package/public/llms/components/strong.md +49 -0
  66. package/public/llms/components/switch.md +106 -0
  67. package/public/llms/components/table.md +230 -0
  68. package/public/llms/components/tabs.md +320 -0
  69. package/public/llms/components/text-area.md +141 -0
  70. package/public/llms/components/text-input.md +228 -0
  71. package/public/llms/components/toast.md +323 -0
  72. package/public/llms/components/toggle-button-card.md +513 -0
  73. package/public/llms/components/tooltip.md +188 -0
  74. package/public/llms/components/unstyled-icon-button.md +175 -0
  75. package/public/llms/components/validation-text.md +29 -0
  76. package/public/llms/components/verification-input.md +96 -0
  77. package/public/llms/docs/changelog.md +1430 -0
  78. package/public/llms/docs/common-props/align-self.md +90 -0
  79. package/public/llms/docs/common-props/border.md +308 -0
  80. package/public/llms/docs/common-props/colour.md +221 -0
  81. package/public/llms/docs/common-props/flex-items.md +91 -0
  82. package/public/llms/docs/common-props/gap.md +111 -0
  83. package/public/llms/docs/common-props/grid-items.md +96 -0
  84. package/public/llms/docs/common-props/margin.md +105 -0
  85. package/public/llms/docs/common-props/opacity.md +100 -0
  86. package/public/llms/docs/common-props/order.md +90 -0
  87. package/public/llms/docs/common-props/overflow.md +89 -0
  88. package/public/llms/docs/common-props/padding.md +102 -0
  89. package/public/llms/docs/common-props/position.md +92 -0
  90. package/public/llms/docs/common-props/size.md +93 -0
  91. package/public/llms/docs/common-props/spacing.md +97 -0
  92. package/public/llms/docs/common-props/text.md +35 -0
  93. package/public/llms/docs/common-props/z-index.md +88 -0
  94. package/public/llms/docs/design-tokens.md +72 -0
  95. package/public/llms/docs/getting-started.md +117 -0
  96. package/public/llms/docs/layout.md +135 -0
  97. package/public/llms/docs/migrating.md +302 -0
  98. package/public/llms/docs/responsive-design/breakpoints.md +119 -0
  99. package/public/llms/docs/responsive-design/media-queries.md +89 -0
  100. package/public/llms/docs/responsive-design/responsive-props.md +37 -0
  101. package/public/llms.txt +97 -0
  102. package/scripts/init-ai.js +142 -0
  103. package/styles.css +2 -2
  104. /package/dist/{chunk-JRVYOIXR.js.map → chunk-MIVYZGEV.js.map} +0 -0
@@ -0,0 +1,90 @@
1
+ # AlignSelf
2
+
3
+ The align-self CSS property overrides a grid or flex item's align-items value.
4
+
5
+ ```tsx
6
+ <Flex alignItems="center">
7
+ <Box />
8
+ <Box alignSelf="start" />
9
+ <Box alignSelf={{ mobile: 'end', desktop: 'center' }} />
10
+ </Flex>
11
+ ```
12
+
13
+ | Prop | Type | Default | Description |
14
+ | ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | ---------------------------------------- |
15
+ | `asChild` | `boolean` | — | |
16
+ | `display` | `Responsive<"none" \| "inline" \| "inline-block" \| "block">` | — | |
17
+ | `alignSelf` | `Responsive<"center" \| "start" \| "end" \| "stretch">` | — | |
18
+ | `backgroundColor` | `"primary" \| "secondary" \| "brand" \| `var(--h-${string})`` | — | |
19
+ | `borderColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
20
+ | `borderTopColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
21
+ | `borderRightColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
22
+ | `borderBottomColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
23
+ | `borderLeftColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
24
+ | `borderRadius` | `Responsive<"none" \| "xs" \| "sm" \| "md" \| "lg" \| "xl" \| "full" \| "inherit">` | — | |
25
+ | `borderRadiusTopLeftNone` | `boolean` | — | |
26
+ | `borderRadiusTopRightNone` | `boolean` | — | |
27
+ | `borderRadiusBottomLeftNone` | `boolean` | — | |
28
+ | `borderRadiusBottomRightNone` | `boolean` | — | |
29
+ | `borderRadiusTopNone` | `boolean` | — | |
30
+ | `borderRadiusRightNone` | `boolean` | — | |
31
+ | `borderRadiusBottomNone` | `boolean` | — | |
32
+ | `borderRadiusLeftNone` | `boolean` | — | |
33
+ | `borderStyle` | `Responsive<"none" \| "solid">` | — | |
34
+ | `borderTopStyle` | `Responsive<"none" \| "solid">` | — | |
35
+ | `borderRightStyle` | `Responsive<"none" \| "solid">` | — | |
36
+ | `borderBottomStyle` | `Responsive<"none" \| "solid">` | — | |
37
+ | `borderLeftStyle` | `Responsive<"none" \| "solid">` | — | |
38
+ | `borderWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
39
+ | `borderTopWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
40
+ | `borderRightWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
41
+ | `borderBottomWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
42
+ | `borderLeftWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
43
+ | `color` | `"primary" \| "secondary" \| "brand" \| "affirmative" \| "inverted" \| `var(--h-${string})`` | — | |
44
+ | `flex` | `Responsive<string>` | — | |
45
+ | `flexBasis` | `Responsive<string>` | — | |
46
+ | `flexShrink` | `Responsive<string>` | — | |
47
+ | `flexGrow` | `Responsive<string>` | — | |
48
+ | `gridColumnSpan` | `Responsive<Union<string, "1" \| "2" \| "3" \| "4" \| "5" \| "6" \| "7" \| "8" \| "9" \| "10" \| "11" \| "12">>` | — | |
49
+ | `gridArea` | `Responsive<string>` | — | |
50
+ | `gridColumn` | `Responsive<string>` | — | |
51
+ | `gridColumnStart` | `Responsive<string>` | — | |
52
+ | `gridColumnEnd` | `Responsive<string>` | — | |
53
+ | `gridRow` | `Responsive<string>` | — | |
54
+ | `gridRowStart` | `Responsive<string>` | — | |
55
+ | `gridRowEnd` | `Responsive<string>` | — | |
56
+ | `margin` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
57
+ | `marginTop` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
58
+ | `marginRight` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
59
+ | `marginBottom` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
60
+ | `marginLeft` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
61
+ | `marginX` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
62
+ | `marginY` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
63
+ | `opacity` | `Responsive<string>` | — | |
64
+ | `order` | `Responsive<string>` | — | |
65
+ | `overflow` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
66
+ | `overflowX` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
67
+ | `overflowY` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
68
+ | `padding` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
69
+ | `paddingTop` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
70
+ | `paddingRight` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
71
+ | `paddingBottom` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
72
+ | `paddingLeft` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
73
+ | `paddingX` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
74
+ | `paddingY` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
75
+ | `position` | `Responsive<"fixed" \| "static" \| "relative" \| "absolute" \| "sticky">` | — | |
76
+ | `inset` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
77
+ | `top` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
78
+ | `right` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
79
+ | `bottom` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
80
+ | `left` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
81
+ | `width` | `Responsive<string>` | — | |
82
+ | `maxWidth` | `Responsive<string>` | — | |
83
+ | `minWidth` | `Responsive<string>` | — | |
84
+ | `height` | `Responsive<string>` | — | |
85
+ | `maxHeight` | `Responsive<string>` | — | |
86
+ | `minHeight` | `Responsive<string>` | — | |
87
+ | `textAlign` | `Responsive<"center" \| "right" \| "left">` | — | |
88
+ | `textTransform` | `"none" \| "uppercase" \| "lowercase" \| "capitalize"` | — | Set the text-transform on the component. |
89
+ | `zIndex` | `Responsive<string>` | — | |
90
+ | `as` | `"div" \| "span"` | — | |
@@ -0,0 +1,308 @@
1
+ # Borders
2
+
3
+ ## Border colour
4
+
5
+ The border colour props accept the following semantic colour values: `strong`, `subtle`.
6
+ It will also apply the `solid` border style to the specified side(s).
7
+
8
+ ```tsx
9
+ <Box borderColor="strong" />
10
+ <Box borderColor="subtle" />
11
+ ```
12
+
13
+ This applies to all of the available border colour values:
14
+
15
+ - `borderColor`
16
+ - `borderTopColor`
17
+ - `borderRightColor`
18
+ - `borderBottomColor`
19
+ - `borderLeftColor`
20
+
21
+ You can also pass any of the available Hearth prefixed CSS custom properties from the Hearth Tokens library.
22
+ You cannot pass raw strings to the border colour props.
23
+
24
+ ```tsx
25
+ import { Box } from '@utilitywarehouse/hearth-react' import { semantic } from '@utilitywarehouse/hearth-tokens/browser';
26
+
27
+ // token value
28
+ <Box borderColor="subtle" />
29
+
30
+ // Hearth prefixed CSS custom property
31
+ <Box borderColor="var(--h-color-grey-500)" />
32
+
33
+ // Hearth browser tokens
34
+ <Box
35
+ borderColor={semantic.feedback.positive.border}
36
+ borderWidth="1"
37
+ borderStyle="solid"
38
+ borderRadius="lg"
39
+ />
40
+
41
+ // This will show an error as the string pixel value is not valid
42
+ // <Box borderColor='rebeccapurple'/>
43
+ ```
44
+
45
+ | Prop | Type | Default | Description |
46
+ | ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | ---------------------------------------- |
47
+ | `asChild` | `boolean` | — | |
48
+ | `display` | `Responsive<"none" \| "inline" \| "inline-block" \| "block">` | — | |
49
+ | `alignSelf` | `Responsive<"center" \| "start" \| "end" \| "stretch">` | — | |
50
+ | `backgroundColor` | `"primary" \| "secondary" \| "brand" \| `var(--h-${string})`` | — | |
51
+ | `borderColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
52
+ | `borderTopColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
53
+ | `borderRightColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
54
+ | `borderBottomColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
55
+ | `borderLeftColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
56
+ | `borderRadius` | `Responsive<"none" \| "xs" \| "sm" \| "md" \| "lg" \| "xl" \| "full" \| "inherit">` | — | |
57
+ | `borderRadiusTopLeftNone` | `boolean` | — | |
58
+ | `borderRadiusTopRightNone` | `boolean` | — | |
59
+ | `borderRadiusBottomLeftNone` | `boolean` | — | |
60
+ | `borderRadiusBottomRightNone` | `boolean` | — | |
61
+ | `borderRadiusTopNone` | `boolean` | — | |
62
+ | `borderRadiusRightNone` | `boolean` | — | |
63
+ | `borderRadiusBottomNone` | `boolean` | — | |
64
+ | `borderRadiusLeftNone` | `boolean` | — | |
65
+ | `borderStyle` | `Responsive<"none" \| "solid">` | — | |
66
+ | `borderTopStyle` | `Responsive<"none" \| "solid">` | — | |
67
+ | `borderRightStyle` | `Responsive<"none" \| "solid">` | — | |
68
+ | `borderBottomStyle` | `Responsive<"none" \| "solid">` | — | |
69
+ | `borderLeftStyle` | `Responsive<"none" \| "solid">` | — | |
70
+ | `borderWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
71
+ | `borderTopWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
72
+ | `borderRightWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
73
+ | `borderBottomWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
74
+ | `borderLeftWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
75
+ | `color` | `"primary" \| "secondary" \| "brand" \| "affirmative" \| "inverted" \| `var(--h-${string})`` | — | |
76
+ | `flex` | `Responsive<string>` | — | |
77
+ | `flexBasis` | `Responsive<string>` | — | |
78
+ | `flexShrink` | `Responsive<string>` | — | |
79
+ | `flexGrow` | `Responsive<string>` | — | |
80
+ | `gridColumnSpan` | `Responsive<Union<string, "1" \| "2" \| "3" \| "4" \| "5" \| "6" \| "7" \| "8" \| "9" \| "10" \| "11" \| "12">>` | — | |
81
+ | `gridArea` | `Responsive<string>` | — | |
82
+ | `gridColumn` | `Responsive<string>` | — | |
83
+ | `gridColumnStart` | `Responsive<string>` | — | |
84
+ | `gridColumnEnd` | `Responsive<string>` | — | |
85
+ | `gridRow` | `Responsive<string>` | — | |
86
+ | `gridRowStart` | `Responsive<string>` | — | |
87
+ | `gridRowEnd` | `Responsive<string>` | — | |
88
+ | `margin` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
89
+ | `marginTop` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
90
+ | `marginRight` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
91
+ | `marginBottom` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
92
+ | `marginLeft` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
93
+ | `marginX` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
94
+ | `marginY` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
95
+ | `opacity` | `Responsive<string>` | — | |
96
+ | `order` | `Responsive<string>` | — | |
97
+ | `overflow` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
98
+ | `overflowX` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
99
+ | `overflowY` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
100
+ | `padding` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
101
+ | `paddingTop` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
102
+ | `paddingRight` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
103
+ | `paddingBottom` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
104
+ | `paddingLeft` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
105
+ | `paddingX` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
106
+ | `paddingY` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
107
+ | `position` | `Responsive<"fixed" \| "static" \| "relative" \| "absolute" \| "sticky">` | — | |
108
+ | `inset` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
109
+ | `top` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
110
+ | `right` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
111
+ | `bottom` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
112
+ | `left` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
113
+ | `width` | `Responsive<string>` | — | |
114
+ | `maxWidth` | `Responsive<string>` | — | |
115
+ | `minWidth` | `Responsive<string>` | — | |
116
+ | `height` | `Responsive<string>` | — | |
117
+ | `maxHeight` | `Responsive<string>` | — | |
118
+ | `minHeight` | `Responsive<string>` | — | |
119
+ | `textAlign` | `Responsive<"center" \| "right" \| "left">` | — | |
120
+ | `textTransform` | `"none" \| "uppercase" \| "lowercase" \| "capitalize"` | — | Set the text-transform on the component. |
121
+ | `zIndex` | `Responsive<string>` | — | |
122
+ | `as` | `"div" \| "span"` | — | |
123
+
124
+ ## Border width and style
125
+
126
+ The border props are responsive, and, alongside the border color and border
127
+ radius props, can be used to control the appearance of component borders.
128
+
129
+ The border-style is implicitly set when applying a border-color, so you usually
130
+ won't need it.
131
+
132
+ ```tsx
133
+ <Box borderColor="strong" borderWidth="1" />
134
+ <Box borderWidth="2" borderColor="subtle" borderStyle={{ mobile: 'none', desktop: 'solid' }} />
135
+ <Box borderTopColor="subtle" borderTopWidth={{ mobile: '1', desktop: '2'}} borderRadius="full" />
136
+ ```
137
+
138
+ | Prop | Type | Default | Description |
139
+ | ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | ---------------------------------------- |
140
+ | `asChild` | `boolean` | — | |
141
+ | `display` | `Responsive<"none" \| "inline" \| "inline-block" \| "block">` | — | |
142
+ | `alignSelf` | `Responsive<"center" \| "start" \| "end" \| "stretch">` | — | |
143
+ | `backgroundColor` | `"primary" \| "secondary" \| "brand" \| `var(--h-${string})`` | — | |
144
+ | `borderColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
145
+ | `borderTopColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
146
+ | `borderRightColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
147
+ | `borderBottomColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
148
+ | `borderLeftColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
149
+ | `borderRadius` | `Responsive<"none" \| "xs" \| "sm" \| "md" \| "lg" \| "xl" \| "full" \| "inherit">` | — | |
150
+ | `borderRadiusTopLeftNone` | `boolean` | — | |
151
+ | `borderRadiusTopRightNone` | `boolean` | — | |
152
+ | `borderRadiusBottomLeftNone` | `boolean` | — | |
153
+ | `borderRadiusBottomRightNone` | `boolean` | — | |
154
+ | `borderRadiusTopNone` | `boolean` | — | |
155
+ | `borderRadiusRightNone` | `boolean` | — | |
156
+ | `borderRadiusBottomNone` | `boolean` | — | |
157
+ | `borderRadiusLeftNone` | `boolean` | — | |
158
+ | `borderStyle` | `Responsive<"none" \| "solid">` | — | |
159
+ | `borderTopStyle` | `Responsive<"none" \| "solid">` | — | |
160
+ | `borderRightStyle` | `Responsive<"none" \| "solid">` | — | |
161
+ | `borderBottomStyle` | `Responsive<"none" \| "solid">` | — | |
162
+ | `borderLeftStyle` | `Responsive<"none" \| "solid">` | — | |
163
+ | `borderWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
164
+ | `borderTopWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
165
+ | `borderRightWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
166
+ | `borderBottomWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
167
+ | `borderLeftWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
168
+ | `color` | `"primary" \| "secondary" \| "brand" \| "affirmative" \| "inverted" \| `var(--h-${string})`` | — | |
169
+ | `flex` | `Responsive<string>` | — | |
170
+ | `flexBasis` | `Responsive<string>` | — | |
171
+ | `flexShrink` | `Responsive<string>` | — | |
172
+ | `flexGrow` | `Responsive<string>` | — | |
173
+ | `gridColumnSpan` | `Responsive<Union<string, "1" \| "2" \| "3" \| "4" \| "5" \| "6" \| "7" \| "8" \| "9" \| "10" \| "11" \| "12">>` | — | |
174
+ | `gridArea` | `Responsive<string>` | — | |
175
+ | `gridColumn` | `Responsive<string>` | — | |
176
+ | `gridColumnStart` | `Responsive<string>` | — | |
177
+ | `gridColumnEnd` | `Responsive<string>` | — | |
178
+ | `gridRow` | `Responsive<string>` | — | |
179
+ | `gridRowStart` | `Responsive<string>` | — | |
180
+ | `gridRowEnd` | `Responsive<string>` | — | |
181
+ | `margin` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
182
+ | `marginTop` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
183
+ | `marginRight` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
184
+ | `marginBottom` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
185
+ | `marginLeft` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
186
+ | `marginX` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
187
+ | `marginY` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
188
+ | `opacity` | `Responsive<string>` | — | |
189
+ | `order` | `Responsive<string>` | — | |
190
+ | `overflow` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
191
+ | `overflowX` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
192
+ | `overflowY` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
193
+ | `padding` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
194
+ | `paddingTop` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
195
+ | `paddingRight` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
196
+ | `paddingBottom` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
197
+ | `paddingLeft` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
198
+ | `paddingX` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
199
+ | `paddingY` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
200
+ | `position` | `Responsive<"fixed" \| "static" \| "relative" \| "absolute" \| "sticky">` | — | |
201
+ | `inset` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
202
+ | `top` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
203
+ | `right` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
204
+ | `bottom` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
205
+ | `left` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
206
+ | `width` | `Responsive<string>` | — | |
207
+ | `maxWidth` | `Responsive<string>` | — | |
208
+ | `minWidth` | `Responsive<string>` | — | |
209
+ | `height` | `Responsive<string>` | — | |
210
+ | `maxHeight` | `Responsive<string>` | — | |
211
+ | `minHeight` | `Responsive<string>` | — | |
212
+ | `textAlign` | `Responsive<"center" \| "right" \| "left">` | — | |
213
+ | `textTransform` | `"none" \| "uppercase" \| "lowercase" \| "capitalize"` | — | Set the text-transform on the component. |
214
+ | `zIndex` | `Responsive<string>` | — | |
215
+ | `as` | `"div" \| "span"` | — | |
216
+
217
+ ## Border radius
218
+
219
+ The `borderRadius` prop is responsive, and can be used in conjunction with the
220
+ other common border props to style component borders.
221
+
222
+ You can also override the `borderRadius` for individual corners and sides.
223
+
224
+ ```tsx
225
+ <Box borderRadius="md" />
226
+ <Box borderRadius={{ mobile: 'full', desktop: 'lg' }} />
227
+ <Box borderRadius="lg" borderRadiusBottomNone />
228
+ <Box borderRadius="lg" borderRadiusTopLeftNone borderRadiusBottomRightNone />
229
+ ```
230
+
231
+ | Prop | Type | Default | Description |
232
+ | ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | ---------------------------------------- |
233
+ | `asChild` | `boolean` | — | |
234
+ | `display` | `Responsive<"none" \| "inline" \| "inline-block" \| "block">` | — | |
235
+ | `alignSelf` | `Responsive<"center" \| "start" \| "end" \| "stretch">` | — | |
236
+ | `backgroundColor` | `"primary" \| "secondary" \| "brand" \| `var(--h-${string})`` | — | |
237
+ | `borderColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
238
+ | `borderTopColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
239
+ | `borderRightColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
240
+ | `borderBottomColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
241
+ | `borderLeftColor` | `"strong" \| `var(--h-${string})` \| "subtle"` | — | |
242
+ | `borderRadius` | `Responsive<"none" \| "xs" \| "sm" \| "md" \| "lg" \| "xl" \| "full" \| "inherit">` | — | |
243
+ | `borderRadiusTopLeftNone` | `boolean` | — | |
244
+ | `borderRadiusTopRightNone` | `boolean` | — | |
245
+ | `borderRadiusBottomLeftNone` | `boolean` | — | |
246
+ | `borderRadiusBottomRightNone` | `boolean` | — | |
247
+ | `borderRadiusTopNone` | `boolean` | — | |
248
+ | `borderRadiusRightNone` | `boolean` | — | |
249
+ | `borderRadiusBottomNone` | `boolean` | — | |
250
+ | `borderRadiusLeftNone` | `boolean` | — | |
251
+ | `borderStyle` | `Responsive<"none" \| "solid">` | — | |
252
+ | `borderTopStyle` | `Responsive<"none" \| "solid">` | — | |
253
+ | `borderRightStyle` | `Responsive<"none" \| "solid">` | — | |
254
+ | `borderBottomStyle` | `Responsive<"none" \| "solid">` | — | |
255
+ | `borderLeftStyle` | `Responsive<"none" \| "solid">` | — | |
256
+ | `borderWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
257
+ | `borderTopWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
258
+ | `borderRightWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
259
+ | `borderBottomWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
260
+ | `borderLeftWidth` | `Responsive<"0" \| "1" \| "2">` | — | |
261
+ | `color` | `"primary" \| "secondary" \| "brand" \| "affirmative" \| "inverted" \| `var(--h-${string})`` | — | |
262
+ | `flex` | `Responsive<string>` | — | |
263
+ | `flexBasis` | `Responsive<string>` | — | |
264
+ | `flexShrink` | `Responsive<string>` | — | |
265
+ | `flexGrow` | `Responsive<string>` | — | |
266
+ | `gridColumnSpan` | `Responsive<Union<string, "1" \| "2" \| "3" \| "4" \| "5" \| "6" \| "7" \| "8" \| "9" \| "10" \| "11" \| "12">>` | — | |
267
+ | `gridArea` | `Responsive<string>` | — | |
268
+ | `gridColumn` | `Responsive<string>` | — | |
269
+ | `gridColumnStart` | `Responsive<string>` | — | |
270
+ | `gridColumnEnd` | `Responsive<string>` | — | |
271
+ | `gridRow` | `Responsive<string>` | — | |
272
+ | `gridRowStart` | `Responsive<string>` | — | |
273
+ | `gridRowEnd` | `Responsive<string>` | — | |
274
+ | `margin` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
275
+ | `marginTop` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
276
+ | `marginRight` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
277
+ | `marginBottom` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
278
+ | `marginLeft` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
279
+ | `marginX` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
280
+ | `marginY` | `Responsive<`var(--h-${string})` \| "0" \| "auto" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
281
+ | `opacity` | `Responsive<string>` | — | |
282
+ | `order` | `Responsive<string>` | — | |
283
+ | `overflow` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
284
+ | `overflowX` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
285
+ | `overflowY` | `Responsive<"hidden" \| "auto" \| "visible" \| "clip" \| "scroll">` | — | |
286
+ | `padding` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
287
+ | `paddingTop` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
288
+ | `paddingRight` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
289
+ | `paddingBottom` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
290
+ | `paddingLeft` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
291
+ | `paddingX` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
292
+ | `paddingY` | `Responsive<`var(--h-${string})` \| "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">` | — | |
293
+ | `position` | `Responsive<"fixed" \| "static" \| "relative" \| "absolute" \| "sticky">` | — | |
294
+ | `inset` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
295
+ | `top` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
296
+ | `right` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
297
+ | `bottom` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
298
+ | `left` | `Responsive<Union<string, "0" \| "25" \| "50" \| "75" \| "100" \| "150" \| "175" \| "200" \| "250" \| "300" \| "350" \| "400" \| "500" \| "600" \| "700" \| "800" \| "900" \| "1000">>` | — | |
299
+ | `width` | `Responsive<string>` | — | |
300
+ | `maxWidth` | `Responsive<string>` | — | |
301
+ | `minWidth` | `Responsive<string>` | — | |
302
+ | `height` | `Responsive<string>` | — | |
303
+ | `maxHeight` | `Responsive<string>` | — | |
304
+ | `minHeight` | `Responsive<string>` | — | |
305
+ | `textAlign` | `Responsive<"center" \| "right" \| "left">` | — | |
306
+ | `textTransform` | `"none" \| "uppercase" \| "lowercase" \| "capitalize"` | — | Set the text-transform on the component. |
307
+ | `zIndex` | `Responsive<string>` | — | |
308
+ | `as` | `"div" \| "span"` | — | |