my/ui

Command Palette

Search for a command to run...

All components

Right Aligned 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-140.json

Usage

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

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 justify-between gap-2">
      <Checkbox className="order-1" id={id} />
      <Label htmlFor={id}>Right aligned checkbox</Label>
    </div>
  );
}

Source: Origin UI