{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "stepper-states", "registryDependencies": [ "https://raw.githubusercontent.com/addisonk/custom-ui/main/public/r/stepper.json" ], "files": [ { "path": "registry/custom-ui/stepper-states.tsx", "content": "import {\n Stepper,\n StepperIndicator,\n StepperItem,\n} from \"@/components/custom-ui/stepper\";\n\nconst states = [\n {\n status: \"complete\" as const,\n label: \"Complete\",\n description: \"Step has been finished\",\n },\n {\n status: \"current\" as const,\n label: \"Current\",\n description: \"Step is in progress\",\n },\n {\n status: \"upcoming\" as const,\n label: \"Upcoming\",\n description: \"Step is not yet started\",\n },\n];\n\nexport default function StepperStates() {\n return (\n
\n {states.map((state) => (\n
\n \n \n \n \n \n
\n

{state.label}

\n

\n {state.description}\n

\n
\n
\n ))}\n
\n );\n}\n", "type": "registry:example" } ], "type": "registry:example" }