rsuite
Version:
A suite of react components
12 lines (11 loc) • 409 B
TypeScript
import React from 'react';
import type { WithAsProps } from '../types';
export interface RippleProps extends WithAsProps {
onMouseDown?: (position: any, event: React.MouseEvent) => void;
}
/**
* The `Ripple` component is used to implement the ripple effect.
* @private
*/
declare const Ripple: React.ForwardRefExoticComponent<RippleProps & React.RefAttributes<HTMLSpanElement>>;
export default Ripple;