UNPKG

966 BTypeScriptView Raw
1export interface TouchRippleClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the internal `Ripple` components `ripple` class. */
5 ripple: string;
6 /** Styles applied to the internal `Ripple` components `rippleVisible` class. */
7 rippleVisible: string;
8 /** Styles applied to the internal `Ripple` components `ripplePulsate` class. */
9 ripplePulsate: string;
10 /** Styles applied to the internal `Ripple` components `child` class. */
11 child: string;
12 /** Styles applied to the internal `Ripple` components `childLeaving` class. */
13 childLeaving: string;
14 /** Styles applied to the internal `Ripple` components `childPulsate` class. */
15 childPulsate: string;
16}
17export type TouchRippleClassKey = keyof TouchRippleClasses;
18export declare function getTouchRippleUtilityClass(slot: string): string;
19declare const touchRippleClasses: TouchRippleClasses;
20export default touchRippleClasses;