@trail-ui/react
Version:
14 lines (11 loc) • 356 B
TypeScript
import { HTMLMotionProps } from 'framer-motion';
import { FC } from 'react';
import { RippleType } from './use-ripple.js';
interface RippleProps {
ripples: RippleType[];
color?: string;
motionProps?: HTMLMotionProps<'span'>;
style?: React.CSSProperties;
}
declare const Ripple: FC<RippleProps>;
export { RippleProps, Ripple as default };