/** * TouchRipple Component - Lynx 版 MUI TouchRipple * 使用 CSS @keyframes 动画实现涟漪效果 * * 由于 Lynx 完整支持 CSS animations,我们可以实现真正的涟漪效果! */ import './TouchRipple.css'; export interface RippleProps { /** X 坐标 */ x?: number; /** Y 坐标 */ y?: number; /** 涟漪大小 */ size?: number; /** 是否居中 */ center?: boolean; } export interface TouchRippleProps { /** 是否居中涟漪 */ center?: boolean; /** 涟漪颜色 */ color?: string; /** 子元素 */ children?: any; /** 自定义类名 */ className?: string; /** 内联样式 */ style?: Record; } export declare const touchRippleClasses: { root: string; ripple: string; rippleVisible: string; ripplePulsate: string; child: string; childLeaving: string; childPulsate: string; }; export declare function TouchRipple(props: TouchRippleProps): JSX.Element; export default TouchRipple; //# sourceMappingURL=index.d.ts.map