Ripple
Material-style click ripple. Adds a <span> per click that radiates from the click point, fades out, and removes itself.
Usage
import { Ripple } from '@bwo-ui/react';
<Ripple color="rgba(255,255,255,0.5)">
<button>Tap me</button>
</Ripple>Props
| Prop | Type | Default | Description |
|---|---|---|---|
color | string | 'rgba(255,255,255,0.45)' | Ripple colour. |
duration | number | 0.7 | Per-ripple duration. |
opacity | number | 0 | End opacity. |
ease | string | 'power2.out' | GSAP ease. |
respectDisabled | boolean | true | Ignore clicks on disabled / aria-disabled elements. |