@slup/ripple
v0.5.1
Published
Ripple element built upon Inferno with the Slup framework
Downloads
4
Readme
This package contains the Ripple, a Material Design Component which is part of a bigger ecosystem called Slup
Description
From Google's Material Design guidelines:
Installation
This package can be installed with NPM
npm install --save @slup/ripple
Usage
Implementing the ripple is very easy, all you have to do is putting it inside a Component with relative
position
import { Ripple } from '@slup/ripple'
export const Test = () =>
<div style={{ position: 'relative', height: 50, width: 100 }}>
<Ripple />
</div>