Button
The Button component is used to trigger an action or event.
Import
Importimport { Button } from '@backyard-ui/core';
Usage
UsageSize
SizeUse the size
prop to increase the visual size.
Appearance
AppearanceUse the appearance
prop to change the visual communication.
Variants
VariantsUse the variant
prop to change the visual communication.
Radius
RadiusUse the radius
prop to increase the border-radius
.
Icon
IconUse the iconLeft
or iconRight
prop to display an icon on both sides.
States
StatesLoading
LoadingUse the isLoading
prop to show its loading state.
Disabled
DisabledUse the isDisabled
prop to show its disabled state.
Full width
Full widthUse the isFullWidth
prop to render a button with size 100%
.
Link
LinkUse the asChild
prop to render as Link
.
API Reference
API Reference- asChildDescription Change the component to the HTML tag or custom component of the only childType
boolean
- radiusDescription The `border-radius` propertyType
"sm" | "md" | "lg" | "xl" | "2xl" | "full"
Defaultxl - appearanceDescription The Button appearanceType
"success" | "critical" | "info" | "warning" | "neutral" | "primary" | "secondary" | "tertiary"
Defaultprimary - variantDescription The variant is used to change the visual communication.Type
"solid" | "subtle" | "outline" | "ghost"
Defaultsolid - isLoadingDescription Set loading state.Type
boolean
- sizeDescription The Button sizeType
"xs" | "sm" | "md"
Defaultsm - isDisabledDescription Set disabled state.Type
boolean
- iconLeftDescription Display an icon.Type
ReactNode
- iconRightDescription Display an icon.Type
ReactNode
- isFullWidthDescription Set button full width.Type
boolean
- socialDescription Used to apply social login stylesType
"apple" | "facebook" | "google" | "twitter"