0.5.1 • Published 6 years ago

@slup/ripple v0.5.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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>