UNPKG

@fluid-topics/ft-ripple

Version:

A custom Fluid Topics ripple component

24 lines (18 loc) 409 B
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> ` } ```