import { cva, type VariantProps } from "class-variance-authority"; import { cn } from "../../lib/utils"; const badgeVariants = cva( "inline-flex items-center gap-1.5 rounded-full px-3 py-1 text-xs font-medium transition-colors", { variants: { variant: { default: "bg-leaf-pale text-leaf-dark border border-leaf-light/50", amber: "bg-amber-pale text-amber-glow border border-amber-soft/40", muted: "bg-sand-light/60 text-warm-gray border border-sand/40", }, }, defaultVariants: { variant: "default", }, }, ); export interface BadgeProps extends React.HTMLAttributes, VariantProps {} export const Badge = ({ className, variant, ...props }: BadgeProps) => { return
; };