Concepts
Patterns
Patterns are layout primitives can be used to create robust and responsive layouts with ease. Panda comes with predefined patterns like stack, hstack, vstack, wrap, etc. These patterns can be used as functions or JSX elements.
Think of patterns as a set of predefined styles to reduce repetition and improve readability. You can override the properties as needed, just like in the css
function.
Creating Patterns
To learn how to create patterns, check out the customization section.
Predefined Patterns
Box
The Box pattern does not contain any additional styles. With its function form it's the equivalent of the css
function. It can be useful with its JSX form and is the equivalent of a styled.div
component, serving mostly to get style props available in JSX.
import { Box } from '../styled-system/jsx'
function App() {
return (
<Box color="blue.300">
<div>Cool !</div>
</Box>
)
}
Container
The Container pattern is used to create a container with a max-width and center the content.
By default, the container sets the following properties:
maxWidth: 8xl
marginX: auto
position: relative
paddingX: { base: 4, md: 6, lg: 8 }
Stack
The Stack pattern is a layout primitive that can be used to create a vertical or horizontal stack of elements.
The stack
function accepts the following properties:
direction
: The flex direction of the stack. Can be eithervertical
orhorizontal
.gap
: The gap between the elements in the stack.align
: An alias for the cssalign-items
property.justify
: An alias for the cssjustify-content
property.
HStack
The HStack pattern is a wrapper around the stack
pattern that sets the direction
property to horizontal
, and
centers the elements vertically.
VStack
The VStack pattern is a wrapper around the stack
pattern that sets the direction
property to vertical
, and centers
the elements horizontally.
Wrap
The Wrap pattern is used to add space between elements and wraps automatically if there isn't enough space.
The wrap
function accepts the following properties:
gap
: The gap between the elements in the stack.columnGap
: The gap between the elements in the stack horizontally.rowGap
: The gap between the elements in the stack vertically.align
: An alias for the cssalign-items
property.justify
: An alias for the cssjustify-content
property.
Aspect Ratio
The Aspect Ratio pattern is used to create a container with a fixed aspect ratio. It is used when displaying images, maps, videos and other media.
Note: In most cases, we recommend using the aspectRatio
property instead of the pattern.
The aspectRatio
function accepts the following properties:
ratio
: The aspect ratio of the container. Can be a number or a string.
Flex
The Flex pattern is used to create a flex container and provides some shortcuts for the flex
property.
The flex
function accepts the following properties:
direction
: The flex direction of the container. Can berow
,column
,row-reverse
orcolumn-reverse
.wrap
: Whether to wrap the flex items. The value is a boolean.align
: An alias for the cssalign-items
property.justify
: An alias for the cssjustify-content
property.basis
: An alias for the cssflex-basis
property.grow
: An alias for the cssflex-grow
property.shrink
: An alias for the cssflex-shrink
property.
Center
The Center pattern is used to center the content of a container.
The center
function accepts the following properties:
inline
: Whether to useinline-flex
orflex
for the container. The value is a boolean.
Float
The Float pattern is used to anchor an element to the top, bottom, left or right of the container.
It requires a parent element with position: relative
styles.
The float
function accepts the following properties:
placement
: The placement of the element. Can betop-start
,top
,top-end
,bottom-start
,bottom
,bottom-end
,left-start
,left
,left-end
,right-start
,right
orright-end
.offset
: The offset of the element from the edge of the container. Can be a number or a string.offsetX
: Same asoffset
, but only for the horizontal axis.offsetY
: Same asoffset
, but only for the vertical axis.
Grid
The Grid pattern is used to create a grid layout.
The grid
function accepts the following properties:
columns
: The number of columns in the grid.gap
: The gap between the elements in the stack.columnGap
: The gap between the elements in the stack horizontally.rowGap
: The gap between the elements in the stack vertically.minChildWidth
: The minimum width of the child elements before wrapping.
Grid Item
The Grid Item pattern is used to style the children of a grid container.
The gridItem
function accepts the following properties:
colSpan
: The number of columns the item spans.rowSpan
: The number of rows the item spans.rowStart
: The row the item starts at.rowEnd
: The row the item ends at.colStart
: The column the item starts at.colEnd
: The column the item ends at.
Divider
The Divider pattern is used to create a horizontal or vertical divider.
The divider
function accepts the following properties:
orientation
: The orientation of the divider. Can behorizontal
orvertical
.thickness
: The thickness of the divider. Can be a sizing token, or arbitrary value.color
: The color of the divider. Can be a color token, or arbitrary value.
Circle
The Circle pattern is used to create a circle.
The circle
function accepts the following properties:
size
: The size of the circle. Can be a sizing token, or arbitrary value.
Square
The Square pattern is used to create a square with equal width and height.
The square
function accepts the following properties:
size
: The size of the square. Can be a sizing token, or arbitrary value.
Visually Hidden
The Visually Hidden pattern is used to hide an element visually, but keep it accessible to screen readers.
import { visuallyHidden } from '../styled-system/patterns'
export function Checkbox() {
return (
<label>
<input type="checkbox" className={visuallyHidden()}>
I'm hidden
</input>
<span>Checkbox</span>
</label>
)
}
Bleed
The Bleed pattern is used to create a full width element by negating the padding applied to its parent container.
The bleed
function accepts the following properties:
inline
: The amount of padding to negate on the horizontal axis. Should match the parent's padding.block
: The amount of padding to negate on the vertical axis. Should match the parent's padding.
Usage with JSX
To use the pattern in JSX, you need to set the jsxFramework
property in the config. When this is set, Panda will emit
files for JSX elements based on the framework.
Every pattern can be used as a JSX element and imported from the /jsx
entrypoint. By default, the pattern name is the
function name in PascalCase. You can override both the component name (with the jsx
config property) and the element rendered (with the jsxElement
config property).
Learn more about pattern customization here.
import { VStack, Center } from '../styled-system/jsx'
function App() {
return (
<VStack gap="6" mt="4">
<div>First</div>
<div>Second</div>
<div>Third</div>
<Center>4</Center>
</VStack>
)
}