Card
The Card is a data display component to frame elements on the screen.
Import
Importimport { Card } from '@backyard-ui/core';
Usage
UsageSize
SizeUse the size
prop to increase the inner spacing.
Radius
RadiusUse the radius
prop to increase the border-radius
.
Shadow
ShadowUse the shadow
prop to set the box shadow element.
With border
With borderUse the hasBorder
prop to display the border.
Examples
ExamplesWith Image
With ImageHorizontal
HorizontalMultiple Cards
Multiple CardsRender multiple cards to display content by using SimpleGrid or your preferred layout method like Grid or Stack.
Centering content
Centering contentCard extends Flex, so you’re able to use its properties.
API Reference
API ReferenceRoot
Root- 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 - radiusDescription The CSS `border-radius` propertyType
"none" | "xs" | "sm" | "md" | "lg" | "xl"
Defaultmd - sizeDescription The CSS `padding` propertyType
"xs" | "sm" | "md" | "lg" | "xl"
Defaultsm - justifyDescription The CSS `justify-content` propertyType
ResponsiveValue<"center" | "baseline" | "normal" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | "space-evenly">
- shadowDescription The CSS `box-shadow` propertyType
"none" | "xs" | "sm" | "md" | "lg" | "xl"
Defaultxs - hasBorderDescription The CSS `border` propertyType
boolean
Defaultfalse