@praetorian-chariot/ui
Version:
The UI component library for Chariot, built with Tailwind CSS and React.
12 lines • 373 B
TypeScript
export interface Step {
label: string;
value: string;
}
export interface StepperProps {
steps: Step[];
selected: Step | null;
onSelect: (step: Step) => void;
className?: string;
}
export declare const Stepper: ({ steps, selected, onSelect, className, }: StepperProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Stepper.d.ts.map