react-subtle-nudge
v0.1.3
Published
A collection of animations to subtly nudge users to your React components.
Downloads
58
Maintainers
Readme
react-subtle-nudge
A collection of animations to subtly nudge users to your React components.
Installation
npm
npm install --save react-subtle-nudgepnpm
pnpm install --save react-subtle-nudgeyarn
yarn add react-subtle-nudgeAdd the following CSS to your entry file
import 'react-subtle-nudge/dist/index.css'Usage
Simply wrap your component in one of the animation components.
import { Bounce } from 'react-subtle-nudge'
const BtnBounce = () => {
return (
<Bounce>
<button>Click Me!</button>
</Bounce>
)
}