@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS
14 lines (13 loc) • 425 B
TypeScript
import { AllHTMLAttributes } from "react";
//#region src/components/Stepper/Stepper.types.d.ts
interface StepperProps extends AllHTMLAttributes<HTMLDivElement> {
length: number;
current?: number;
currentAs?: 'progress' | 'step';
getValueLabel?: ((current: number, length: number) => string) | null;
max?: number;
value?: number;
}
//#endregion
export { StepperProps };
//# sourceMappingURL=Stepper.types.d.ts.map