animate-uikit
v3.2.0
Published
A React component for Lottie animations in web3 apps
Downloads
1,360
Readme
Animate UI Kit React
Free animated components for your web3 projects. Build beautiful web3 apps faster.
Installation
To install the package from NPM, run the following command:
npm install animate-uikit
Usage
Here is an example of how to use the AnimateUIKit
component:
import React from 'react';
import { AnimateUIKit } from "animate-uikit";
const App = () => {
return (
<div>
<h1>Animate UI Kit Demo</h1>
<AnimateUIKit name="decentralized-cloud" autoplay={true} loop={true} />
</div>
);
};
export default App;