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

1.0.2 • Public • Published

🎈 ClickMe 🎈

A react library full of highly customizable and animated buttons out of the box

Preview of a few available animations

Quick installation and usage

  • NPM installation
npm i react-clickme
  • Importing in a React component
import ClickMe from "./components/global/clickmeButton";

export default function App() {
  return <ClickMe>Example text</ClickMe>;
}
  • Customization
import ClickMe from "./components/global/clickmeButton";

const clickmeProps = {
  ariaLabel: "my-btn",
  style: { fontWeight: "500", padding: "0.5rem 1rem" },
  primaryBgColor: "#3D7DF6",
  primaryTextColor: "#fff",
  secondaryBgColor: "#000",
  hoverType: "slideToRight",
  idleType: "pulse",
};

export default function App() {
  return <ClickMe {...clickmeProps}>Example text</ClickMe>;
}

To see all of the available custom options and presets, click here. 👈

ClickMe logo

Readme

Keywords

none

Package Sidebar

Install

npm i react-clickme

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

3.81 kB

Total Files

3

Last publish

Collaborators

  • muchassakkk