npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-easy-button

v1.0.15

Published

Implement easily customize out of the box. Work with a vast number of pre-maid react button themes

Downloads

71

Readme

react-easy-button

Implement easily customize out of the box. Work with a vast number of pre-maid react button themes

1668563583029

Installation

# NPM
npm i react-easy-button

# Yarn
yarn add react-easy-button

# Pnpm 
pnpm add react-easy-button

Simple example

import React from 'react'
import {EasyButton} from 'react-easy-button';

const Button: React.FC = () => {
    return (
	<EasyButton label="Press me" />
    )
}

Custom style

Style

Note: If theme is not equal to custom it will not work

If the style is provided through style prop it will reset previous styles & apply provided style. In this example below button will only have color & background color style. The rest of the styles will be reset. To avoid this use extendStyle prop.

<EasyButton label="Press me" style={{color: "#242424", backgroundColor: "#fcfcfc"}} />

Extend styles

It will keep all previous styles & only change provided styles. It will work for all themes

<EasyButton label="Press me" extendStyle={{color: "#242424", backgroundColor: "#fcfcfc"}} />

EasyButton props

| Attributes | Type | Default value | Description | | ---------------- | ------------ | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | label | string | undefined | Required. If not provided, will throw error. | | title | string | undefined | Optional. Title attribute of html button tag. | | theme | string | primary | Optional. Available themes (custom, error, success, warn, purple, pink, primary) | | debounceTimeout | number | 0 | Optional. Delaytime in ms (eg. 100 = 100ms)) | | disabled | boolean | false | Optional.  | | style | object | undefined | Optional. If provided & theme === "custom" then only provided style will be applyed | | extendStyle | object | undefined | Optional. If provided, will change only provided styles. eg. theme="purple" & extendStyle={{border: "2px solid purple"}} it will keep theme styles with provided style border: "2px solid purple""" | | hoverStyle | object | undefined | Optional. If mouse entered then provided style will applied | | extendHoverStyle | object | undefined | Optional. Provided styles will be applied if mouse entered. | | easyRef | object | undefined | Optional. Will return referance of the button | | onClick | function | undefined | Optional. Will run the function if button is clicked | | onHover | function | undefined | Optional. Will run the function if mouse cursor hovered on the button | | onFocus | function | undefined | Optional. Will run the function if button is focused | | | | | |

License

MIT