This component no longer exists. It was in gmhlab’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-09 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
badge
gmhlab/badgeRemovedComponent
gmhlab publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/gmhlab/monorepo/main/packages/ui/public/r/badge.jsonSource
1import * as React from "react"2import { cva, type VariantProps } from "class-variance-authority"3import { Slot } from "radix-ui"45import { cn } from "@/lib/utils"67const badgeVariants = cva(8 "inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden",9 {10 variants: {11 variant: {12 default: "bg-primary text-primary-foreground [a&]:hover:bg-primary/90",13 secondary:14 "bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90",15 destructive:16 "bg-destructive text-white [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",17 outline:18 "border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground",19 ghost: "[a&]:hover:bg-accent [a&]:hover:text-accent-foreground",20 link: "text-primary underline-offset-4 [a&]:hover:underline",21 },22 },23 defaultVariants: {24 variant: "default",25 },26 }27)2829function Badge({30 className,31 variant = "default",32 asChild = false,33 ...props34}: React.ComponentProps<"span"> &35 VariantProps<typeof badgeVariants> & { asChild?: boolean }) {36 const Comp = asChild ? Slot.Root : "span"3738 return (39 <Comp40 data-slot="badge"41 data-variant={variant}42 className={cn(badgeVariants({ variant }), className)}43 {...props}44 />45 )46}4748export { Badge, badgeVariants }
What it pulls in
npm packages
