{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "stepper", "title": "Stepper", "description": "Progress through a finite multi-step flow.", "registryDependencies": [ "@manner/manner-theme" ], "files": [ { "path": "registry/manner/ui/stepper.tsx", "content": "export function Stepper({ current, steps }: { current: number; steps: string[] }) {\n return
    {steps.map((step, index) =>
  1. {index + 1 < current ? \"✓\" : index + 1}{step}
  2. )}
;\n}\n", "type": "registry:ui" } ], "type": "registry:ui" }