import * as React from "react"; import { cva, type VariantProps } from "class-variance-authority"; import { cn } from "@/src/utils/tailwind"; const badgeVariants = cva( "inline-flex items-center rounded-md border border-transparent font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2", { variants: { variant: { default: "bg-primary text-primary-foreground hover:bg-primary/80", secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80", destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/80", outline: "text-foreground", tertiary: "bg-tertiary text-tertiary-foreground", success: "bg-light-green text-dark-green", error: "bg-light-red text-dark-red", warning: "bg-light-yellow text-dark-yellow", }, size: { default: "px-2.5 py-0.5 text-xs", sm: "px-1 py-0 text-xs", }, }, defaultVariants: { variant: "default", size: "default", }, }, ); export interface BadgeProps extends React.HTMLAttributes, VariantProps {} function Badge({ className, variant, size, ...props }: BadgeProps) { return (
); } export { Badge, badgeVariants };