components
Box (code)
A box is a very low-level component that can be used to generally style an element.
Props
Name | Type | Default | Required | Description |
---|---|---|---|---|
alignContent | 'center''flex-end''flex-start''space-around''space-between''space-evenly''stretch' | - | - | Is similar to align-items, but instead of aligning flex items, it aligns flex lines. |
alignItems | 'flex-start''center''flex-end''stretch''baseline' | - | - | Specifies the default alignment for items inside the flexible container. |
alignSelf | 'auto''flex-start''flex-end''center''baseline''stretch' | - | - | Allows the default alignment to be overridden for individual flex items. |
bgColor | String | - | - | Sets the background-color style, must be one of the system. It will also set the associative text-color. |
borderBottomColor | String | - | - | Sets the border-bottom-color style, must be one of the system. |
borderBottomStyle | 'none''hidden''dotted''dashed''solid''double''groove''ridge''inset''outset''initial''inherit' | - | - | Sets the border-bottom-style value. |
borderBottomWidth | 01234 | - | - | Sets the border-bottom-width style. |
borderColor | String | - | - | Sets the border-color style, must be one of the system. |
borderLeftColor | String | - | - | Sets the border-left-color style, must be one of the system. |
borderLeftStyle | 'none''hidden''dotted''dashed''solid''double''groove''ridge''inset''outset''initial''inherit' | - | - | Sets the border-left-style value. |
borderLeftWidth | 01234 | - | - | Sets the border-bottom-width style. |
borderRadius | 01234567891011'fill''sides' | - | - | Sets the css border-radius property, maps on spacing values + fill, + sides. |
borderRightColor | String | - | - | Sets the border-right-color style, must be one of the system. |
borderRightStyle | 'none''hidden''dotted''dashed''solid''double''groove''ridge''inset''outset''initial''inherit' | - | - | Sets the border-right-style value. |
borderRightWidth | 01234 | - | - | Sets the border-right-width style. |
borderStyle | 'none''hidden''dotted''dashed''solid''double''groove''ridge''inset''outset''initial''inherit' | - | - | Sets the border-style value. |
borderTopColor | String | - | - | Sets the border-top-color style, must be one of the system. |
borderTopStyle | 'none''hidden''dotted''dashed''solid''double''groove''ridge''inset''outset''initial''inherit' | - | - | Sets the border-top-style value. |
borderTopWidth | 01234 | - | - | Sets the border-top-width style. |
borderWidth | 01234 | - | - | Sets the border-width style. |
bottom | 01234567891011 | - | - | Sets the css bottom property, maps on spacing values. |
children | Node | - | - | Contents displayed within the Box. |
className | String | - | - | Extend classNames. |
clone | Boolean | - | - | The Box component has a clone property to enable the usage of the clone element method of React (React.cloneElement()). NOTE: The CSS specificity relies on the import order. If you want the guarantee that the wrapped component's style will be overridden, you need to import the Box last. |
color | String | - | - | Sets the color style, must be one of the system. |
display | 'inline''block''flex''grid''inline-block''inline-flex''inline-grid''inline-table''list-item''run-in''table''table-caption''table-column-group''table-header-group''table-footer-group''table-row-group''table-cell''table-column''table-row''none''initial''inherit' | - | - | Changes the box's display property. |
flex | StringNumber | - | - | shorthand for flex-grow, flex-shrink and flex-basis combined. (none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]) |
flexBasis | StringNumber | - | - | Defines the default size of an element before the remaining space is distributed. (default auto) |
flexDirection | 'row''row-reverse''column''column-reverse' | - | - | Sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).. |
flexGrow | StringNumber | - | - | Defines the ability for a flex item to grow if necessary. (default 0) |
flexShrink | StringNumber | - | - | Defines the ability for a flex item to shrink if necessary.(default 1) |
flexWrap | 'nowrap''wrap''wrap-reverse' | - | - | Specifies whether the flexible items should wrap or not. |
float | 'left''right''none' | - | - | The float CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning). |
fontStyle | 'inherit''normal''italic''oblique' | - | - | Sets the css font-style property. |
fontWeight | 'inherit''regular''medium''bold' | - | - | Sets the css font-weight property. |
height | String01234567891011'auto''full' | - | - | Controls Box's height property. |
justifyContent | 'flex-start''center''flex-end''space-between''space-around''space-evenly' | - | - | Aligns the flexible container's items when the items do not use all available space on the main-axis (horizontally). |
left | 01234567891011 | - | - | Sets the css left property, maps on spacing values. |
m | -11-10-9-8-7-6-5-4-3-2-101234567891011'auto' | - | - | Changes the box's margin. |
maxHeight | String01234567891011'auto''full' | - | - | Controls Box's maxHeight property. |
maxWidth | String01234567891011'auto''full' | - | - | Controls Box's maxWidth property. |
mb | -11-10-9-8-7-6-5-4-3-2-101234567891011'auto' | - | - | Changes the box's margin-bottom. |
ml | -11-10-9-8-7-6-5-4-3-2-101234567891011'auto' | - | - | Changes the box's margin-left. |
mr | -11-10-9-8-7-6-5-4-3-2-101234567891011'auto' | - | - | Changes the box's margin-right. |
mt | -11-10-9-8-7-6-5-4-3-2-101234567891011'auto' | - | - | Changes the box's margin-top. |
mx | -11-10-9-8-7-6-5-4-3-2-101234567891011'auto' | - | - | Changes the box's margin-left and margin-right. |
my | -11-10-9-8-7-6-5-4-3-2-101234567891011'auto' | - | - | Changes the box's margin-top and margin-bottom. |
order | NumberString | - | - | Controls the order in which flex items appear in the flex container. |
p | 01234567891011 | - | - | Changes the box's padding. |
pb | 01234567891011 | - | - | Changes the box's padding-bottom. |
pl | 01234567891011 | - | - | Changes the box's padding-left. |
position | 'absolute''fixed''relative''sticky' | - | - | Changes the box's position. |
pr | 01234567891011 | - | - | Changes the box's padding-right. |
pt | 01234567891011 | - | - | Changes the box's padding-top. |
px | 01234567891011 | - | - | Changes the box's padding-left and padding-right. |
py | 01234567891011 | - | - | Changes the box's padding-top and padding-bottom. |
right | 01234567891011 | - | - | Sets the css right property, maps on spacing values. |
style | Object | - | - | Style attribute |
textAlign | 'inherit''left''right''center''justify' | - | - | Sets the css text-align property. |
textTransform | 'inherit''none''capitalize''uppercase''lowercase' | - | - | Sets the css text-transform property. |
top | 01234567891011 | - | - | Sets the css top property, maps on spacing values. |
width | String01234567891011'auto''full' | - | - | Controls Box's width property. |
zIndex | 0100200300400500600700800900 | - | - | Controls Box's zIndex property. |
alignSelf
default: undefined
bgColor
default: undefined
Sets the backgroundColor of the Boxe. It's important to know it will also try to set the corresponding text color!
border
default: undefined
borderRadius
default: undefined
bottom
default: undefined
clone
The Box component has a clone property to enable the usage of the clone element method of React (<React.cloneElement()>). NOTE: The CSS specificity relies on the import order. If you want the guarantee that the wrapped component's style will be overridden, you need to import the Box last.
color
default: undefined
flex
default: undefined
flexBasis
default: undefined
flexGrow
flexShrink
float
default: undefined
float left
float right
float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none float none.
fontWeight
default: undefined
Controls the font-weight css attribute. Only 3 values are available. If a value is missing, it will fallback on the more bold weight.
Lorem ipsum dolor amet gastropub meditation tumblr hashtag. Meggings cornhole prism +1 sriracha authentic la croix street art af typewriter poke. Tumblr YOLO freegan thundercats fixie, craft beer shoreditch humblebrag. Ramps kinfolk roof party waistcoat ennui prism. Authentic edison bulb iceland letterpress yr.
Lorem ipsum dolor amet gastropub meditation tumblr hashtag. Meggings cornhole prism +1 sriracha authentic la croix street art af typewriter poke. Tumblr YOLO freegan thundercats fixie, craft beer shoreditch humblebrag. Ramps kinfolk roof party waistcoat ennui prism. Authentic edison bulb iceland letterpress yr.
Single-origin coffee hoodie edison bulb man braid la croix ethical fashion axe street art yr hammock. Asymmetrical roof party truffaut, forage fashion axe tacos gentrify narwhal raclette fingerstache. Hexagon austin affogato kale chips, jean shorts etsy sriracha banh mi forage waistcoat scenester next level small batch try-hard letterpress. Blue bottle taiyaki roof party helvetica selfies gochujang.
Single-origin coffee hoodie edison bulb man braid la croix ethical fashion axe street art yr hammock. Asymmetrical roof party truffaut, forage fashion axe tacos gentrify narwhal raclette fingerstache. Hexagon austin affogato kale chips, jean shorts etsy sriracha banh mi forage waistcoat scenester next level small batch try-hard letterpress. Blue bottle taiyaki roof party helvetica selfies gochujang.
Blog migas tbh man braid pitchfork vaporware, chicharrones selvage seitan subway tile jean shorts humblebrag post-ironic. Tattooed live-edge readymade, vice cold-pressed swag tousled lomo air plant. Edison bulb bitters actually banjo pok pok hammock single-origin coffee stumptown knausgaard direct trade pinterest yr locavore jean shorts.
Blog migas tbh man braid pitchfork vaporware, chicharrones selvage seitan subway tile jean shorts humblebrag post-ironic. Tattooed live-edge readymade, vice cold-pressed swag tousled lomo air plant. Edison bulb bitters actually banjo pok pok hammock single-origin coffee stumptown knausgaard direct trade pinterest yr locavore jean shorts.
height
default: undefined
left
default: undefined
m
default: undefined
mb
default: undefined
ml
default: undefined
mr
default: undefined
mt
default: undefined
mx
default: undefined
my
default: undefined
order
default: undefined
p
default: undefined
pb
default: undefined
pl
default: undefined
position
default: undefined
pr
default: undefined
pt
default: undefined
px
default: undefined
py
default: undefined
right
default: undefined
textAlign
default: undefined
Controls the css text-align attribute.
Lorem ipsum dolor amet gastropub meditation tumblr hashtag. Meggings cornhole prism +1 sriracha authentic la croix street art af typewriter poke. Tumblr YOLO freegan thundercats fixie, craft beer shoreditch humblebrag. Ramps kinfolk roof party waistcoat ennui prism. Authentic edison bulb iceland letterpress yr.
Lorem ipsum dolor amet gastropub meditation tumblr hashtag. Meggings cornhole prism +1 sriracha authentic la croix street art af typewriter poke. Tumblr YOLO freegan thundercats fixie, craft beer shoreditch humblebrag. Ramps kinfolk roof party waistcoat ennui prism. Authentic edison bulb iceland letterpress yr.
Single-origin coffee hoodie edison bulb man braid la croix ethical fashion axe street art yr hammock. Asymmetrical roof party truffaut, forage fashion axe tacos gentrify narwhal raclette fingerstache. Hexagon austin affogato kale chips, jean shorts etsy sriracha banh mi forage waistcoat scenester next level small batch try-hard letterpress. Blue bottle taiyaki roof party helvetica selfies gochujang.
Single-origin coffee hoodie edison bulb man braid la croix ethical fashion axe street art yr hammock. Asymmetrical roof party truffaut, forage fashion axe tacos gentrify narwhal raclette fingerstache. Hexagon austin affogato kale chips, jean shorts etsy sriracha banh mi forage waistcoat scenester next level small batch try-hard letterpress. Blue bottle taiyaki roof party helvetica selfies gochujang.
Blog migas tbh man braid pitchfork vaporware, chicharrones selvage seitan subway tile jean shorts humblebrag post-ironic. Tattooed live-edge readymade, vice cold-pressed swag tousled lomo air plant. Edison bulb bitters actually banjo pok pok hammock single-origin coffee stumptown knausgaard direct trade pinterest yr locavore jean shorts.
Blog migas tbh man braid pitchfork vaporware, chicharrones selvage seitan subway tile jean shorts humblebrag post-ironic. Tattooed live-edge readymade, vice cold-pressed swag tousled lomo air plant. Edison bulb bitters actually banjo pok pok hammock single-origin coffee stumptown knausgaard direct trade pinterest yr locavore jean shorts.
Lorem ipsum dolor amet gastropub meditation tumblr hashtag. Meggings cornhole prism +1 sriracha authentic la croix street art af typewriter poke. Tumblr YOLO freegan thundercats fixie, craft beer shoreditch humblebrag. Ramps kinfolk roof party waistcoat ennui prism. Authentic edison bulb iceland letterpress yr.
Lorem ipsum dolor amet gastropub meditation tumblr hashtag. Meggings cornhole prism +1 sriracha authentic la croix street art af typewriter poke. Tumblr YOLO freegan thundercats fixie, craft beer shoreditch humblebrag. Ramps kinfolk roof party waistcoat ennui prism. Authentic edison bulb iceland letterpress yr.
top
default: undefined
width
default: undefined