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

react-avatar-gradient

v2.2.6

Published

A customizable React component for creating avatars with dynamic gradients and initials.

Readme

React Avatar Gradient

A simple, customizable React Avatar component that generates avatars with initials on a pastel background color.

Features

  • Displays user initials on a pastel-colored background
  • Color is consistently generated based on the user's name
  • Customizable size
  • Shape options: circle or square
  • TypeScript support

Installation

npm install react-avatar-gradient
# or
yarn add react-avatar-gradient

Usage Avatar

import React from 'react';
import { Avatar } from 'react-avatar-gradient';

function App() {
  return (
    <div className="App">
      {/* Default avatar (circle, size 40px) */}
      <Avatar title="John Doe"/>
      
      {/* Custom size */}
      <Avatar title="Jane Smith" size={60} />
      
      {/* Square shape */}
      <Avatar title="Alex Johnson" shape="square"  color="#FFB6C1"/>
    </div>
  );
}

export default App;

Usage AvatarGroup

import React from "react";
import { AvatarGroup } from "react-avatar-gradient";

function App() {
  return (
    <div className="App">
      {/* Default avatar (circle, size 40px) */}
      <AvatarGroup avatars={["John Doe", "Jane Smith", "Alex Johnson"]} />
      
      {/* Custom size and color */}
      <AvatarGroup avatars={["Michael Brown", "Sara Lee"]} size={60} color="#FFB6C1" />
      
      {/* Square shape */}
      <AvatarGroup avatars={["Chris Evans", "Emily Davis"]} shape="square" color="#E0BBE4" />
    </div>
  );
}

export default App;

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | title | string | (required) | The user's name used to generate initials and background color | | size | number | 40 | Size of the avatar in pixels | | shape | 'circle' | 'square' | 'circle' | Shape of the avatar | | color | string | '#FFB6C1' | Color of the avatar |

How It Works

The component extracts the first letter from each word in the title prop (up to 2 letters) and displays them as initials. The background color is a pastel color generated deterministically from the title string, ensuring the same name always gets the same color.

License

MIT License