badgeVariants.tsx raw
1 import { cva } from "class-variance-authority";
2
3 export const badgeVariants = cva(
4 "inline-flex w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-full border border-transparent bg-origin-border bg-clip-border px-2 py-0.5 text-xs font-medium whitespace-nowrap 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",
5 {
6 variants: {
7 variant: {
8 default: "bg-primary text-primary-foreground [a&]:hover:bg-primary/90",
9 secondary:
10 "bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90",
11 destructive:
12 "bg-destructive text-white focus-visible:ring-destructive/20 dark:bg-destructive/60 dark:focus-visible:ring-destructive/40 [a&]:hover:bg-destructive/90",
13 outline:
14 "border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
15 ghost: "[a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
16 link: "text-primary underline-offset-4 [a&]:hover:underline",
17 positive:
18 "border-positive-foreground bg-positive text-positive-foreground [a&]:hover:bg-positive/90",
19 warning:
20 "border-warning-foreground bg-warning text-warning-foreground [a&]:hover:bg-warning/90",
21 },
22 },
23 defaultVariants: {
24 variant: "default",
25 },
26 }
27 );
28