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-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/15 text-primary', secondary: 'border-transparent bg-muted text-muted-foreground', destructive: 'border-transparent bg-destructive/15 text-destructive', outline: 'text-foreground border-border', success: 'border-transparent bg-green-500/15 text-green-400', warning: 'border-transparent bg-yellow-500/15 text-yellow-400', info: 'border-transparent bg-blue-500/15 text-blue-400', }, }, defaultVariants: { variant: 'default', }, }, ) export interface BadgeProps extends React.HTMLAttributes, VariantProps {} function Badge({ className, variant, ...props }: BadgeProps) { return (
) } export { Badge, badgeVariants }