mirror of
https://github.com/handsomezhuzhu/QQuiz.git
synced 2026-04-18 14:32:54 +00:00
34 lines
1.1 KiB
TypeScript
34 lines
1.1 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-full border px-2.5 py-1 text-xs font-medium transition-colors",
|
|
{
|
|
variants: {
|
|
variant: {
|
|
default: "border-transparent bg-primary/12 text-primary",
|
|
secondary: "border-transparent bg-secondary text-secondary-foreground",
|
|
outline: "border-border text-foreground",
|
|
success: "border-transparent bg-success/15 text-success",
|
|
warning: "border-transparent bg-warning/20 text-warning",
|
|
destructive: "border-transparent bg-destructive/15 text-destructive"
|
|
}
|
|
},
|
|
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 };
|