32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
|
|
import * as React from "react";
|
||
|
|
import { cva, type VariantProps } from "class-variance-authority";
|
||
|
|
import { cn } from "@/lib/utils";
|
||
|
|
|
||
|
|
const badgeVariants = cva(
|
||
|
|
"inline-flex items-center gap-1 rounded-full border px-3 py-1 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
|
||
|
|
{
|
||
|
|
variants: {
|
||
|
|
variant: {
|
||
|
|
default: "border-transparent bg-primary text-primary-foreground",
|
||
|
|
brand: "border-transparent bg-brand/10 text-brand",
|
||
|
|
secondary: "border-transparent bg-secondary text-secondary-foreground",
|
||
|
|
destructive: "border-transparent bg-destructive/12 text-destructive",
|
||
|
|
outline: "border-border text-foreground",
|
||
|
|
success: "border-transparent bg-success/12 text-success",
|
||
|
|
warning: "border-transparent bg-warning/15 text-warning",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
defaultVariants: { variant: "default" },
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
export interface BadgeProps
|
||
|
|
extends React.HTMLAttributes<HTMLDivElement>,
|
||
|
|
VariantProps<typeof badgeVariants> {}
|
||
|
|
|
||
|
|
function Badge({ className, variant, ...props }: BadgeProps) {
|
||
|
|
return <div className={cn(badgeVariants({ variant }), className)} {...props} />;
|
||
|
|
}
|
||
|
|
|
||
|
|
export { Badge, badgeVariants };
|