--- title: Checkbox Card description: Used to select or deselect options displayed within cards. links: source: components/checkbox-card storybook: components-checkbox-card--basic recipe: checkbox-card ark: https://ark-ui.com/react/docs/components/checkbox --- ## Usage ```tsx import { CheckboxCard } from "@chakra-ui/react" ``` ```tsx ``` :::info If you prefer a closed component composition, check out the [snippet below](#closed-component). ::: ## Examples ### Description Use the `CheckboxCard.Description` component to add a description to the checkbox card. ### Group Use the `CheckboxCardGroup` component to group multiple checkbox cards. ### Sizes Pass the `size` prop to the `CheckboxCard.Root` component to change the size of the checkbox card. ### Variants Use the `variant` prop to Pass the `variant` prop to the `CheckboxCard.Root` component to change the variant of the checkbox card. ### Disabled Pass the `disabled` prop to the `CheckboxCard.Root` component to make the checkbox card disabled. ### Addon Render additional content within the `CheckboxCard.Addon` component to add some more context to the checkbox card. ### No Indicator Here's an example of how to use the checkbox card without an indicator. ### Icon Here's an example of how to render custom icons within the checkbox card. ### Closed Component Here's how to setup the Checkbox card for a closed component composition. If you want to automatically add the closed component to your project, run the command: ```bash npx @chakra-ui/cli snippet add checkbox-card ``` Here's how to use the it ```tsx ``` ## Props ### Root