Button
The Button component is used to trigger an action or event, such as submitting a form, opening a dialog, canceling an action, or performing a delete operation.
Import#
import { Button, ButtonGroup } from "@chakra-ui/react"
- Button: The button component with support for custom icons, spinners, etc.
- ButtonGroup: Used to group buttons whose actions are related, with an option to flush them together.
Usage#
Button Sizes#
Use the size
prop to change the size of the button. You can set the value to
xs
, sm
, md
, or lg
.
Button variants#
Use the variant
prop to change the visual style of the Button. You can set the
value to solid
, ghost
, outline
, or link
.
Button with icon#
You can add left and right icons to the Button component using the leftIcon
and rightIcon
props respectively.
Note: The
leftIcon
andrightIcon
prop values should be react elements NOT strings.
You can also use icons from popular libraries like react-icons and pass it into the button.
Button loading state#
Pass the isLoading
prop to show its loading state. By default, the button will
show a spinner and leave the button's width unchanged.
You can also pass the loadingText
prop to show a spinner and the loading text.
You can also change the spinner itself to use custom loaders as per your design
requirements. Pass the spinner
prop and set it to a custom react element.
Social Buttons#
We've included the colors for common social media platforms, and you can simply
use their buttons via the colorScheme
prop.
The Facebook and Twitter icons in the above example are available from
react-icons
as FaFacebook
and
FaTwitter
, found in the react-icons/fa
import.
Grouping Buttons#
You can use the Stack
or ButtonGroup
component to group buttons. When you
use the ButtonGroup
component, it allows you to:
- Set the
size
andvariant
of all buttons within it. - Add
spacing
between the buttons. - Flush the buttons together by removing the border radius of the its children as needed.
To flush the buttons, pass the isAttached
prop.
Accessibility#
- Button has
role
ofbutton
. - When Button has focus, Space or Enter activates it.
Composition#
All props you pass (variant
, colorScheme
, etc.) are converted to style
props. This means you can override any style of the Button via props.
Custom Button#
In the event that you need to make your own custom button, you can leverage the
Box
component. It provides the hover
, focus
, active
and disabled
style
props to style the button.
Props#
Button Props#
Button
composes the Box
component, so you can pass all its props.
These are props specific to the Button
component:
Name | Type | Description | Default |
---|---|---|---|
colorScheme | "blue" | "cyan" | "gray" | "green" | "orange" | "pink" | "purple" | "red" | "teal" | "yellow" | "whiteAlpha" | "blackAlpha" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram" | "gray" | |
iconSpacing | SystemProps["marginRight"] | The space between the button icon and label. | - |
isActive | boolean | If `true`, the button will be styled in its active state. | - |
isDisabled | boolean | If `true`, the button will be disabled. | - |
isFullWidth | boolean | If `true`, the button will take up the full width of its container. | - |
isLoading | boolean | If `true`, the button will show a spinner. | - |
leftIcon | React.ReactElement | If added, the button will show an icon before the button's label. | - |
loadingText | string | The label to show in the button when `isLoading` is true If no text is passed, it only shows the spinner | - |
rightIcon | React.ReactElement | If added, the button will show an icon after the button's label. | - |
size | "sm" | "md" | "lg" | "xs" | "md" | |
spinner | React.ReactElement | Replace the spinner component when `isLoading` is set to `true` | - |
variant | "link" | "outline" | "solid" | "ghost" | "unstyled" | "solid" |
Button Group Props#
ButtonGroup
composes the Box
component, so you can pass all its props.
These are props specific to the ButtonGroup
component:
Name | Type | Description | Default |
---|---|---|---|
colorScheme | "blue" | "cyan" | "gray" | "green" | "orange" | "pink" | "purple" | "red" | "teal" | "yellow" | "whiteAlpha" | "blackAlpha" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram" | Color Schemes for ButtonGroup are not implemented in the default theme. You can extend the theme to implement them. | - |
isAttached | boolean | If `true`, the borderRadius of button that are direct children will be altered to look flushed together | - |
isDisabled | boolean | If `true`, all wrapped button will be disabled | - |
size | "sm" | "md" | "lg" | "xs" | - | |
spacing | SystemProps["marginRight"] | The spacing between the buttons | '0.5rem' |
variant | "link" | "outline" | "solid" | "ghost" | "unstyled" | - |