Box

Box is a general purpose low-level primitive with no specific semantics that can be used for layout and styling. All other layout primitives extend the Box primitive.

Example

Use the Box layout primitive to access Keystar design tokens.

Box example

Element type

By default, Box renders a div element. You can customise this using the elementType prop. Non-style props will be forwarded to the underlying element.

<Box elementType="section" id="element-type-example">
...
</Box>

Props

The Box accepts all the base style props, as well as the following:

Border

NameDescription
borderShorthand for the element's border on all four sides. It sets the values of border-width, border-style, and border-color. See MDN.
borderTopShorthand for the top border. It sets the values of border-width, border-style, and border-color. See MDN.
borderBottomShorthand for the bottom border. It sets the values of border-width, border-style, and border-color. See MDN.
borderStartShorthand for the border on the logical start side, depending on the layout direction. It sets the values of border-width, border-style, and border-color. See MDN.
borderEndShorthand for the border on the logical end side, depending on the layout direction. It sets the values of border-width, border-style, and border-color. See MDN.

Border color

NameDescription
borderColorThe color of the element's border on all four sides. See MDN.
borderTopColorThe color of the top border. See MDN.
borderBottomColorThe color of the bottom border. See MDN.
borderStartColorThe color of the border on the logical start side, depending on the layout direction. See MDN.
borderEndColorThe color of the border on the logical end side, depending on the layout direction. See MDN.

Border style

NameDescription
borderStyleThe style of the element's border on all four sides. See MDN.
borderTopStyleThe style of the top border. See MDN.
borderBottomStyleThe style of the bottom border. See MDN.
borderStartStyleThe style of the border on the logical start side, depending on the layout direction. See MDN.
borderEndStyleThe style of the border on the logical end side, depending on the layout direction. See MDN.

Border width

NameDescription
borderWidthThe width of the element's border on all four sides. See MDN.
borderTopWidthThe width of the top border. See MDN.
borderBottomWidthThe width of the bottom border. See MDN.
borderStartWidthThe width of the border on the logical start side, depending on the layout direction. See MDN.
borderEndWidthThe width of the border on the logical end side, depending on the layout direction. See MDN.

Border radius

NameDescription
borderRadiusThe border radius on all four sides of the element. See MDN.
borderTopStartRadiusThe border radius for the top start corner of the element, depending on the layout direction. See MDN.
borderTopEndRadiusThe border radius for the top end corner of the element, depending on the layout direction. See MDN.
borderBottomStartRadiusThe border radius for the bottom start corner of the element, depending on the layout direction. See MDN.
borderBottomEndRadiusThe border radius for the bottom end corner of the element, depending on the layout direction. See MDN.

Padding

NameDescription
paddingSets the padding on all four sides of the element. See MDN.
paddingXSets the padding on the left and right sides of the element. See MDN.
paddingYSets the padding on the top and bottom sides of the element. See MDN.
paddingTopSets the padding on the top side of the element. See MDN.
paddingBottomSets the padding on the bottom side of the element. See MDN.
paddingStartSets the padding on the logical start side of the element, depending on layout direction. See MDN.
paddingEndSets the padding on the logical end side of the element, depending on layout direction. See MDN.

Other

NameDescription
backgroundColorThe background color for the element. See MDN.
boxShadowAdds shadow effects around an element's frame. See MDN.
cursorThe type of mouse cursor, if any, to show when the mouse pointer is over an element. See MDN
opacityThe opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency. See MDN
overflowSpecify what to do when the element's content is too long to fit its size. See MDN.
pointerEventsSets under what circumstances (if any) a particular element can become the target of pointer events. See MDN.
userSelectControls whether the user can select text. This doesn't have any effect on content loaded as part of a browser's user interface (its chrome), except in textboxes. See MDN.
© 2025 @jossmac