22 lines
519 B
TypeScript
22 lines
519 B
TypeScript
import * as React from 'react';
|
|
import { TransitionGroup } from 'react-transition-group';
|
|
import { StandardProps } from '..';
|
|
|
|
export interface TouchRippleProps
|
|
extends StandardProps<TransitionGroup.TransitionGroupProps, TouchRippleClassKey> {
|
|
center?: boolean;
|
|
}
|
|
|
|
export type TouchRippleClassKey =
|
|
| 'root'
|
|
| 'wrapper'
|
|
| 'wrapperLeaving'
|
|
| 'wrapperPulsating'
|
|
| 'ripple'
|
|
| 'rippleVisible'
|
|
| 'rippleFast';
|
|
|
|
declare const TouchRipple: React.ComponentType<TouchRippleProps>;
|
|
|
|
export default TouchRipple;
|