UNPKG

@material-ui/core

Version:

Quickly build beautiful React apps. Material-UI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

13 lines (12 loc) 532 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 declare type StepContentClassKey = keyof StepContentClasses; export declare function getStepContentUtilityClass(slot: string): string; declare const stepContentClasses: StepContentClasses; export default stepContentClasses;