/* Copyright 2026 Marimo. All rights reserved. */ import { Checkbox } from "@/components/ui/checkbox"; export default { title: "Checkbox", component: Checkbox, }; export const WithText = { render: () => (

You agree to our Terms of Service and Privacy Policy.

), name: "With text", }; export const Disabled = { render: () => (
), name: "Disabled", };