my/ui

Command Palette

Search for a command to run...

All components

Outline Check Badge

badges

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-419.json

Usage

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

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

Component source

import { CheckIcon } from "lucide-react";

import { Badge } from "@/components/ui/badge";

export default function Component() {
  return (
    <Badge className="gap-1" variant="outline">
      <CheckIcon aria-hidden="true" className="text-emerald-500" size={12} />
      Badge
    </Badge>
  );
}

Source: Origin UI