UNPKG

@material-tailwind/react

Version:

@material-tailwind/react is an easy-to-use components library for ReactJS & Tailwind CSS inspired by Material Design.

15 lines 596 B
import type { ReactNode } from "react"; /** * This file contains the types and prop-types for Stepper and Step components. */ export type activeStep = number; export type isLastStep = (arg: boolean) => void; export type isFirstStep = (arg: boolean) => void; export type children = ReactNode; export type className = string; export declare const propTypesActiveStep: any; export declare const propTypesIsLastStep: any; export declare const propTypesIsFirstStep: any; export declare const propTypesChildren: any; export declare const propTypesClassName: any; //# sourceMappingURL=stepper.d.ts.map