Code Badge
washiveil/code-badgeFreeComponent
Identifier badge for codes and versions — rounded-md mono, distinct from the taxonomy Chip.
Install it
npx shadcn@latest add https://washiveil.alexchih.com/r/code-badge.jsonSource
1import { cn } from '@/lib/utils';23// Identifier badge (course codes, cert codes) -- rounded-md, no border.4// Distinct from Chip (rounded-full pill, bordered) which marks taxonomy.56export type CodeBadgeProps = React.ComponentProps<'span'>;78export function CodeBadge({ className, ...props }: CodeBadgeProps) {9 return (10 <span11 className={cn(12 'rounded-md bg-ruri/10 px-2 py-1 font-mono text-[0.75rem] font-semibold text-ruri dark:bg-ruri-soft/10 dark:text-ruri-soft',13 className,14 )}15 {...props}16 />17 );18}
What it pulls in
Other registry items
Files it writes
More from washiveil
All 58 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Ambient Fieldambient-field | washiveil | Components | Free | no deps | |
| Chipchip | washiveil | Components | Free | 1 dep | |
| Glass Accordionglass-accordion | washiveil | Components | Free | 2 deps | |
| Glass Alertglass-alert | washiveil | Components | Free | 1 dep | |
| Glass Alert Dialogglass-alert-dialog | washiveil | Components | Free | 1 dep | |
| Glass Aspect Ratioglass-aspect-ratio | washiveil | Components | Free | 1 dep | |
| Glass Avatarglass-avatar | washiveil | Components | Free | 1 dep | |
| Glass Breadcrumbglass-breadcrumb | washiveil | Components | Free | 2 deps |
