my/ui

Command Palette

Search for a command to run...

All components

Terms Agree Checkbox

checkboxes

Origin UI component.

responsive · 600px

Install

Same command in any shadcn project — React (Vite/CRA), Next.js, Remix, Astro, and more:

$npx shadcn@latest add https://your-domain/r/comp-138.json

Usage

import Cmp from "@/registry/origin-ui/comp-138";

export default function Demo() {
  return <Cmp />;
}

Component source

import { useId } from "react";

import { Checkbox } from "@/components/ui/checkbox";
import { Label } from "@/components/ui/label";

export default function Component() {
  const id = useId();
  return (
    <div className="flex items-center gap-2">
      <Checkbox id={id} />
      <Label htmlFor={id}>
        I agree to the{" "}
        <a
          className="underline"
          href="https://coss.com/origin"
          rel="noreferrer"
          target="_blank"
        >
          terms of service
        </a>
      </Label>
    </div>
  );
}

Source: Origin UI