antd
Version:
An enterprise-class UI design language and React components implementation
11 lines (10 loc) • 317 B
TypeScript
import type { WaveProps } from '.';
import type { ShowWaveEffect } from './interface';
export interface WaveEffectProps {
className: string;
target: HTMLElement;
component?: string;
colorSource?: WaveProps['colorSource'];
}
declare const showWaveEffect: ShowWaveEffect;
export default showWaveEffect;