BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/Manifest UI/status-badge

Status Badge

manifest-ui/status-badge
FreeBlock

Status badge with multiple states (success, pending, processing, error, shipped, delivered).

Install it

npx shadcn@latest add https://ui.manifest.build/r/status-badge.json

Source

registry/status/status-badge.tsxui.manifest.build/r/status-badge.json
1"use client"
2
3import {
4 Check,
5 Clock,
6 AlertCircle,
7 XCircle,
8 Loader2,
9 Truck,
10} from "lucide-react"
11import { cn } from "@/lib/utils"
12import { demoStatusBadge } from './demo/status'
13
14/**
15 * Available status types for the badge.
16 * @typedef {"success" | "pending" | "processing" | "warning" | "error" | "shipped" | "delivered" | "cancelled"} StatusType
17 */
18export type StatusType =
19 | "success"
20 | "pending"
21 | "processing"
22 | "warning"
23 | "error"
24 | "shipped"
25 | "delivered"
26 | "cancelled"
27
28/**
29 * ═══════════════════════════════════════════════════════════════════════════
30 * StatusBadgeProps
31 * ═══════════════════════════════════════════════════════════════════════════
32 *
33 * Props for the StatusBadge component.
34 * Displays a status indicator with configurable appearance.
35 */
36export interface StatusBadgeProps {
37 data?: {
38 /** The status to display (success, pending, processing, warning, error, shipped, delivered, cancelled). */
39 status?: StatusType
40 }
41 appearance?: {
42 /** Custom label text that overrides the default status label. */
43 label?: string
44 /**
45 * Whether to show the status icon.
46 * @default true
47 */
48 showIcon?: boolean
49 /**
50 * Badge size variant.
51 * @default "md"
52 */
53 size?: "sm" | "md" | "lg"
54 }
55}
56
57const statusConfig: Record<
58 StatusType,
59 { icon: React.ElementType; className: string; defaultLabel: string }
60> = {
61 success: {
62 icon: Check,
63 className: "bg-muted text-foreground border-border",
64 defaultLabel: "Success",
65 },
66 pending: {
67 icon: Clock,
68 className: "bg-muted text-muted-foreground border-border",
69 defaultLabel: "Pending",
70 },
71 processing: {
72 icon: Loader2,
73 className: "bg-muted text-foreground border-border",
74 defaultLabel: "Processing",
75 },
76 warning: {
77 icon: AlertCircle,
78 className: "bg-muted text-foreground border-border",
79 defaultLabel: "Warning",
80 },
81 error: {
82 icon: XCircle,
83 className: "bg-destructive/10 text-destructive border-destructive/20",
84 defaultLabel: "Error",
85 },
86 shipped: {
87 icon: Truck,
88 className: "bg-muted text-foreground border-border",
89 defaultLabel: "Shipped",
90 },
91 delivered: {
92// … truncated

What it pulls in

npm packages

  • lucide-react

Files it writes

  • registry/status/status-badge.tsx
  • registry/status/demo/status.ts

Facts

Registry
Manifest UI
Type
registry:block
Access
Free
Files written
2
Licence
the repository states none
In the index
at or before 2026-08-09
Last confirmed
today

Go to the source

ui.manifest.build Raw registry item This item as JSON

More from Manifest UI

All 32 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Amount Inputamount-inputManifest UIBlocksFree1 dep · 2 files
Chat Conversationchat-conversationManifest UIBlocksFree1 dep · 3 files
Contact Formcontact-formManifest UIBlocksFree1 dep · 3 files
Date & Time Pickerdate-time-pickerManifest UIBlocksFree1 dep · 2 files
Event Cardevent-cardManifest UIBlocksFree1 dep · 2 files
Event Confirmationevent-confirmationManifest UIBlocksFree1 dep · 2 files
Event Detailevent-detailManifest UIBlocksFree3 deps · 2 files
Event Listevent-listManifest UIBlocksFree3 deps · 2 files

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex