UNPKG

449 BTypeScriptView Raw
1import * as React from 'react';
2import { StandardProps } from '..';
3
4export type TouchRippleProps = StandardProps<
5 React.HTMLAttributes<HTMLElement>,
6 TouchRippleClassKey
7> & {
8 center?: boolean;
9};
10
11export type TouchRippleClassKey =
12 | 'root'
13 | 'ripple'
14 | 'rippleVisible'
15 | 'ripplePulsate'
16 | 'child'
17 | 'childLeaving'
18 | 'childPulsate';
19
20declare const TouchRipple: React.ComponentType<TouchRippleProps>;
21
22export default TouchRipple;