UNPKG

@bigbinary/neetoui

Version:

neetoUI drives the experience at all neeto products

11 lines (8 loc) 241 B
import React from "react"; export type StepperProps = { steps: { id: string | number; label: string }[]; activeIndex: number; setActiveIndex: (index: number) => void; }; const Stepper: React.FC<StepperProps>; export default Stepper;