0.1.3 • Published 2 years ago

reactive-buttons v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Installation

npm i reactive-buttons --save

Usage

import React from "react";
import { Button } from "reactive-buttons";

export default function App() {
  return (
    <Button
      bgColor="#0a5cf5"
      textColor="#fff"
      shadow
      ripple
      onClick={(e) => console.log("Hello world!")}
    >
      Hi! I am button
    </Button>
  );
}