A ripple component, which shows click interactions with components.

## Install

```shell
npm install @fluid-topics/ft-ripple
yarn add @fluid-topics/ft-ripple
```

## Usage

```typescript
import { html } from "lit"
import "@fluid-topics/ft-ripple"

function render() {
    return html` 
        <div style="width:300px; height: 150px; position: relative">
            <ft-ripple/> 
        </div>
    `
}
```
