reablocks
Version:
Component library for React
21 lines (20 loc) • 508 B
TypeScript
export interface StepperTheme {
/** CSS class applied to the root stepper container. */
base: string;
/** Class names applied to each step. */
step: {
base: string;
marker: {
container: string;
base: string;
active: string;
label: {
base: string;
active: string;
};
};
active: string;
content: string;
};
}
export declare const stepperTheme: StepperTheme;