import { cva, type VariantProps } from 'class-variance-authority'; import * as React from 'react'; import { cn } from '@/shared/lib/utils'; const badgeVariants = cva( 'focus:ring-ring inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:ring-2 focus:ring-offset-2 focus:outline-none', { variants: { variant: { default: 'bg-primary text-primary-foreground hover:bg-primary/80 border-transparent', secondary: 'bg-secondary text-secondary-foreground hover:bg-secondary/80 border-transparent', destructive: 'bg-destructive text-destructive-foreground hover:bg-destructive/80 border-transparent', outline: 'text-foreground', }, }, defaultVariants: { variant: 'default', }, }, ); export interface BadgeProps extends React.HTMLAttributes, VariantProps {} function Badge({ className, variant, ...props }: BadgeProps) { return (
); } export { Badge, badgeVariants };