Stack
The skeleton is a feedback component to display the loading state of some component.
Import
Importimport { Stack } from '@backyard-ui/core';
Usage
UsageDirection
DirectionUse the direction
prop to change the orientation.
You can also make it responsive by passing array or object values into the direction
prop.
Equals size
Equals sizeUse the isGrow
property to set the same width/height across the elements
Responsive
ResponsiveYou can make it responsive by passing array or object values into the spacing
prop.
API Reference
API Reference- children requiredDescription The children elementsType
ReactNode
- asChildDescription Change the component to the HTML tag or custom component of the only childType
boolean
- alignDescription The CSS `align-items` propertyType
ResponsiveValue<"center" | "baseline" | "flex-start" | "flex-end" | "stretch">
- directionDescription The CSS `flex-direction` propertyType
ResponsiveValue<"row" | "row-reverse" | "column" | "column-reverse">
Defaultrow - spacingDescription The space between its childrenType
ResponsiveValue<"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | ... 6 more ... | "3.5">
Default4 - justifyDescription The CSS `justify-content` propertyType
ResponsiveValue<"center" | "baseline" | "normal" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | "space-evenly">
- isGrowDescription If true the component will occupy remaining space by setting 'flex-grow: 1'Type
boolean
Defaultfalse - isWrapDescription The CSS `flex-wrap` propertyType
boolean
Defaultfalse