react-animated-heart
TypeScript icon, indicating that this package has built-in type declarations

0.0.8 • Public • Published

react-animated-heart

"Monthly Download" "Latest Release" MIT license

A simple Twitter-like animated button. desperately needed it for one of my projects.

script preview

Installation

npm install react-animated-heart

yarn add react-animated-heart

Usage

import React, { useState } from "react";
import Heart from "react-animated-heart";

export default function App() {
  const [isClick, setClick] = useState(false);
  return (
    <div className="App">
      <Heart isClick={isClick} onClick={() => setClick(!isClick)} />
    </div>
  );
}

License

MIT

/react-animated-heart/

    Package Sidebar

    Install

    npm i react-animated-heart

    Weekly Downloads

    321

    Version

    0.0.8

    License

    MIT

    Unpacked Size

    837 kB

    Total Files

    13

    Last publish

    Collaborators

    • shaunlwm