46 lines
1.5 KiB
TypeScript
46 lines
1.5 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 rounded-md px-2.5 py-0.5 text-xs font-semibold transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
|
|
{
|
|
variants: {
|
|
variant: {
|
|
default:
|
|
"border-transparent bg-primary/10 text-primary hover:bg-primary/20",
|
|
primary:
|
|
"border-transparent bg-primary text-primary-foreground hover:bg-primary/90",
|
|
secondary:
|
|
"border-transparent bg-muted text-muted-foreground hover:bg-muted/80",
|
|
destructive:
|
|
"border-transparent bg-destructive/10 text-destructive hover:bg-destructive/20",
|
|
outline:
|
|
"border border-border text-foreground bg-transparent hover:bg-muted",
|
|
success:
|
|
"border-transparent bg-primary/10 text-primary hover:bg-primary/20",
|
|
warning:
|
|
"border-transparent bg-accent/10 text-accent hover:bg-accent/20",
|
|
info:
|
|
"border-transparent bg-blue-50 text-blue-600 hover:bg-blue-100",
|
|
},
|
|
},
|
|
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 };
|