Files
a37f030d-6e8a-4f3d-9f23-1ce…/research/replit/badge.md
vitalijmulika fb5d40bc69 Initial commit
2026-04-29 13:20:41 +03:00

1.5 KiB

import * as React from "react" import { cva, type VariantProps } from "class-variance-authority"

import { cn } from "@/lib/utils"

const badgeVariants = cva( // @replit // Whitespace-nowrap: Badges should never wrap. "whitespace-nowrap inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2" + " hover-elevate ", { variants: { variant: { default: // @replit shadow-xs instead of shadow, no hover because we use hover-elevate "border-transparent bg-primary text-primary-foreground shadow-xs", secondary: // @replit no hover because we use hover-elevate "border-transparent bg-secondary text-secondary-foreground", destructive: // @replit shadow-xs instead of shadow, no hover because we use hover-elevate "border-transparent bg-destructive text-destructive-foreground shadow-xs", // @replit shadow-xs" - use badge outline variable outline: "text-foreground border [border-color:var(--badge-outline)]", }, }, defaultVariants: { variant: "default", }, } )

export interface BadgeProps extends React.HTMLAttributes, VariantProps {}

function Badge({ className, variant, ...props }: BadgeProps) { return ( <div className={cn(badgeVariants({ variant }), className)} {...props} /> ) }

export { Badge, badgeVariants }