All components

Badge Indicator

Badge Indicator is a React and Tailwind CSS feedback component from Bund UI, licensed MIT. Copy it and paste it into your project.

Bund UI MIT feedback

What it is

Badge Indicator is a React and Tailwind CSS feedback component from Bund UI, licensed MIT. Copy it and paste it into your project.

How to use it

Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.

Open in the catalogue

Five free copies a month. No card.

No packages beyond the project baseline

Licence

This component comes from Bund UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.

Badge Indicator

examples/components/badge/indicator/page.tsx
import { Badge } from "@/components/ui/badge";

export default function BadgeIndicator() {
  return (
    <div className="flex items-center justify-center gap-2">
      <Badge variant="outline">
        <span className="me-0.5 size-2 rounded-full bg-green-500" />
        Success
      </Badge>
      <Badge variant="outline">
        <span className="me-0.5 size-2 rounded-full bg-indigo-500" />
        Info
      </Badge>
      <Badge variant="outline">
        <span className="bg-destructive me-0.5 size-2 rounded-full" />
        Destructive
      </Badge>
    </div>
  );
}

Similar components