UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

12 lines 499 B
export interface StepContentClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element if `last={true}` (controlled by `Step`). */ last: string; /** Styles applied to the Transition component. */ transition: string; } export type StepContentClassKey = keyof StepContentClasses; export declare function getStepContentUtilityClass(slot: string): string; declare const stepContentClasses: StepContentClasses; export default stepContentClasses;