Badge
Badge is a React and Tailwind CSS feedback component from HextaUI, licensed MIT. Copy it and paste it into your project.
HextaUI
MIT
feedback
What it is
Badge is a React and Tailwind CSS feedback component from HextaUI, 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.
Five free copies a month. No card.
Needs
npm i @radix-ui/react-slot
Licence
This component comes from HextaUI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Badge
import { Slot } from "@radix-ui/react-slot";
import { cva, type VariantProps } from "class-variance-authority";
import * as React from "react";
import { cn } from "@/lib/utils";
const badgeVariants = cva(
"inline-flex min-h-5 w-fit shrink-0 touch-manipulation items-center justify-center gap-1 overflow-hidden whitespace-nowrap rounded-full border px-2 py-0.5 font-medium text-xs tabular-nums transition-[color,box-shadow] focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3",
{
variants: {
variant: {
default:
"border-transparent bg-primary text-primary-foreground [a&]:hover:bg-primary/90",
secondary:
"border-transparent bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90",
destructive:
"border-transparent bg-destructive text-white focus-visible:ring-destructive/20 dark:bg-destructive/60 dark:focus-visible:ring-destructive/40 [a&]:hover:bg-destructive/90",
outline:
"text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
},
},
defaultVariants: {
variant: "default",
},
}
);
const Badge = React.forwardRef<
HTMLSpanElement,
React.ComponentProps<"span"> &
VariantProps<typeof badgeVariants> & { asChild?: boolean }
>(function Badge({ className, variant, asChild = false, ...props }, ref) {
const Comp = asChild ? Slot : "span";
return (
<Comp
className={cn(badgeVariants({ variant }), className)}
data-slot="badge"
ref={ref}
{...props}
/>
);
});
export { Badge, badgeVariants };