UNPKG

604 BTypeScriptView Raw
1export interface StepButtonClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `orientation="horizontal"`. */
5 horizontal: string;
6 /** Styles applied to the root element if `orientation="vertical"`. */
7 vertical: string;
8 /** Styles applied to the `ButtonBase` touch-ripple. */
9 touchRipple: string;
10}
11export type StepButtonClassKey = keyof StepButtonClasses;
12export declare function getStepButtonUtilityClass(slot: string): string;
13declare const stepButtonClasses: StepButtonClasses;
14export default stepButtonClasses;