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 🙏

© 2026 – Pkg Stats / Ryan Hefner

amazing-react-buttons

v7.0.6

Published

Performant, extendable, highly customisable, production ready React Component that renders an animated basic set of UI buttons

Readme

Amazing React Buttons

A performant, extendable, highly customizable, production-ready React component library that renders an animated set of UI buttons.

🚀 Features

  • Multiple Button Types - Primary, secondary, link, anchor, danger
  • Different Sizes - Small, medium, large
  • Icon Support - Before and after text icons
  • Ripple Effects - Material design-inspired ripple animations
  • Progress Buttons - Async operations with progress indicators
  • Social Buttons - Pre-configured social media sharing buttons
  • Custom Styling - Inline styles and CSS classes
  • TypeScript Support - Full TypeScript definitions
  • Accessibility - ARIA attributes and keyboard navigation
  • React 18.3.1 - Modern React compatibility

📦 Installation

npm install amazing-react-buttons

🎯 Quick Start

import React from 'react';
import AwesomeButton from 'amazing-react-buttons';
import 'amazing-react-buttons/dist/styles.css';

function App() {
  return (
    <AwesomeButton type="primary" onPress={() => alert('Clicked!')}>
      Click Me!
    </AwesomeButton>
  );
}

🎨 Examples

Basic Buttons

<AwesomeButton type="primary">Primary</AwesomeButton>
<AwesomeButton type="secondary">Secondary</AwesomeButton>
<AwesomeButton type="link">Link</AwesomeButton>
<AwesomeButton disabled>Disabled</AwesomeButton>

Different Sizes

<AwesomeButton size="small">Small</AwesomeButton>
<AwesomeButton size="medium">Medium</AwesomeButton>
<AwesomeButton size="large">Large</AwesomeButton>

With Icons

<AwesomeButton before="🚀">Launch</AwesomeButton>
<AwesomeButton after="⭐">Star</AwesomeButton>
<AwesomeButton before="📧" after="→">Email</AwesomeButton>

Ripple Effect

<AwesomeButton ripple>Click for Ripple</AwesomeButton>

Progress Button

<AwesomeButtonProgress
  onPress={(event, next) => {
    setTimeout(next, 2000);
  }}
>
  Start Progress
</AwesomeButtonProgress>

Social Buttons

<AwesomeButtonSocial type="facebook" href="https://facebook.com">
  Share on Facebook
</AwesomeButtonSocial>

<AwesomeButtonSocial type="twitter" href="https://twitter.com">
  Share on Twitter
</AwesomeButtonSocial>

📚 Documentation

🔧 Development

# Install dependencies
npm install

# Start development server
npm start

# Build for production
npm run build

# Run tests
npm test

📋 Requirements

  • React >= 16.8.0
  • React DOM >= 16.8.0

🎉 License

MIT License - feel free to use in your projects!


Built with ❤️ using React 18.3.1 and TypeScript