checkbox-style-toggle

PreviousNext
Docs
retrouiblock

Preview

Loading preview…
preview/components/checkbox-style-variants.tsx
import { Checkbox } from "@/components/retroui/Checkbox";

export default function CheckboxStyleVariants() {
  return (
    <div className="flex gap-4">
      <Checkbox />
      <Checkbox variant="outline" />
      <Checkbox variant="solid" />
    </div>
  );
}

Installation

npx shadcn@latest add @retroui/checkbox-style-toggle

Usage

import { CheckboxStyleToggle } from "@/components/checkbox-style-toggle"
<CheckboxStyleToggle />