Skip to main content

Checkbox
component

A component for boolean selections with checked and disabled states. You can view the Storybook for more interactive examples.

Was this section helpful?

Checkbox

import {Checkbox} from '@shopify/shop-minis-react'

export default function MyComponent() {
return <Checkbox checked />
}

Preview

Checkbox states and configurations

A checked checkbox

A disabled checkbox

Was this section helpful?

Checked state

import {Checkbox} from '@shopify/shop-minis-react'

export default function MyComponent() {
return <Checkbox checked />
}