UNPKG

@stakefish/ui

Version:

<div align="center"> <a href="https://www.npmjs.com/package/@stakefish/ui"><img src="https://gateway.pinata.cloud/ipfs/QmbZL1ceA8Yiz2pKALTg919jYx141DPUGegC9L4XpyayW5" width="300" /></a> </div>

16 lines (15 loc) 403 B
/// <reference types="react" /> export interface StepperHorizontalProps { /** * Two or more steps. */ steps: string[]; /** * Set the active step (zero based index). * Set to -1 to disable all the steps. * @default 0 */ activeStep: number; } declare const StepperHorizontal: React.FC<StepperHorizontalProps>; export default StepperHorizontal;