Custom label to be used by screen readers. When provided, an aria-label will be added to the element.
"a user friendly label for screen readers"How to align the individual items inside the grid when there is extra space in the column axis.
How to align along the cross axis when contained in a Box or along the column axis when contained in a Grid.
"start""center""end""stretch"Grid areas. Either area names and column,row coordinates. Or, an array of string arrays that specify named grid areas.
{
"name": "header",
"start": [0, 0],
"end": [0, 2]
}Column sizes. If an array value is an array, the inner array indicates the minimum and maximum sizes for the column. Specifying a single string will repeat multiple columns of that size, as long as there is room for more. Specifying an object allows indicating how the columns stretch to fit the available space.
"xsmall""small""medium""large""xlarge""any CSS size"["small", "..."][["small", "medium"], "..."]{"count": "fit", "size": "..."}"small""medium""large""none""any CSS size"{"row": "...", "column": "..."}How to align the individual items inside the grid when there is extra space in the row axis.
The amount of margin around the component. An object can be specified to distinguish horizontal margin, vertical margin, and margin on a particular side.
"xsmall""small""medium""large""xlarge"{
"vertical": "...",
"horizontal": "...",
"top": "...",
"bottom": "...",
"left": "...",
"right": "..."
}Row sizes. If an array value is an array, the inner array indicates the minimum and maximum sizes for the row. Specifying a single string will cause automatically added rows to be the specified size.
"xsmall""small""medium""large""xlarge""any CSS size"["small", "..."][["small", "medium"], "..."]{
"xxsmall": "48px",
"xsmall": "96px",
"small": "192px",
"medium": "384px",
"large": "768px",
"xlarge": "1152px",
"xxlarge": "1536px",
"full": "100%"
}