UNPKG

@catho/quantum

Version:
22 lines (19 loc) 449 B
import { FC } from 'react'; export interface StepperProps { total?: number; index?: number; skin?: 'primary' | 'secondary' | 'success'; currentStepText?: string; nextStepText?: string; theme?: { colors?: {}; baseFontSize?: number; spacing?: {}; }; i18n?: { paginationPreposition: string; nextWord: string; } } declare const Stepper: FC<StepperProps>; export default Stepper;