LmnRippleAnimationConfig
Interface that describes the configuration for the animation of a ripple. There are two animation phases with different durations for the ripples.
Presentation
type LmnRippleAnimationConfig = {
/** Duration in milliseconds for the enter animation (expansion from point of contact). */
enterDuration?: number;
/** Duration in milliseconds for the exit animation (fade-out). */
exitDuration?: number;
};