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

gradient-outline

v1.0.3

Published

A React gradient outline component

Readme

GradientOutline

A React component that adds a customizable animated gradient outline effect to any element.

Demo

Installation

Before using this package, you need to install ** Tailwind CSS ** in your project:

npm install tailwindcss postcss autoprefixer
npx tailwindcss init -p

Add the following to your tailwind.config.js file:

module.exports = {
  purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
  darkMode: false, // or 'media' or 'class'
  theme: {
    extend: {},
  },
  variants: {
    extend: {},
  },
  plugins: [],
};

Add the following to your postcss.config.js file:

module.exports = {
  plugins: {
    tailwindcss: {},
    autoprefixer: {},
  },
};

or go to the documentation Tailwind Installation Using PostCSS

After tailwind is installed, you can install the package:

yarn add gradient-outline

or using npm:

npm install gradient-outline

Usage

import React from "react";
import Gline from "gradient-outline";

const App = () => {
  return (
    <Gline borderRadius={16} strokeWidth={2} className="w-full ">
      <button className="p-4 text-white bg-black">Click Me</button>
    </Gline>
  );
};

export default App;

Props

| Prop | Type | Default Value | Description | | --------------------- | --------------- | -------------------- | ----------------------------------------------- | | id | string | undefined | Unique identifier for the component. | | style | CSSProperties | {} | Custom styles for the outer container. | | contentStyle | CSSProperties | {} | Styles applied to the inner content container. | | contentClass | string | "" | Additional class names for the inner content. | | allowHover | boolean | true | Enables hover effect to change gradient colors. | | strokeWidth | number | 1.5 | Width of the gradient border stroke. | | borderRadius | number | 24 | Border radius of the outline. | | hoverGradientColors | string[] | [#E6CAA4, #E9B84E] | Gradient colors when hovered. | | gradientColors | string[] | [...] | Default gradient colors. | | gradientAngle | number | 135 | Angle of the gradient direction. | | className | string | "" | Additional class names for the outer container. | | onClick | () => void | undefined | Click handler. |

Features

  • Customizable animated gradient border
  • Resizable with automatic dimension tracking
  • Configurable gradient colors and angles
  • Supports hover state changes

License

MIT