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

ophelia-icons

v2.0.7

Published

A beautifully crafted React icon library that brings your UI to life with customizable variants, smooth animations, and comprehensive accessibility support. Built with TypeScript and optimized for performance.

Downloads

343

Readme

ophelia-icons

✨ A beautifully crafted React icon library that brings your UI to life with customizable variants, smooth animations, and comprehensive accessibility support. Built with TypeScript and optimized for performance.

Features

  • 🎨 4 Variants: Filled, Outlined, Duotone, Linear
  • 🎯 Rich Props: Size, color, stroke, transform, animation
  • Tree-shakable: Import only what you need
  • 📱 TypeScript: Full type safety
  • 🎭 Animations: Spin, pulse, bounce
  • 🔄 Transformations: Rotate, mirror, flip
  • Accessible: ARIA support built-in

Installation

npm install ophelia-icons
# or
yarn add ophelia-icons
# or
pnpm add ophelia-icons

Quick Start

import { ArrowRightIcon, LikeIcon, CheckIcon } from 'ophelia-icons';

function App() {
  return (
    <div>
      {/* Basic usage */}
      <ArrowRightIcon size={24} color="#262626" />
      
      {/* With variants */}
      <LikeIcon 
        size={32}
        color="#FF0000"
        variant="duotone"
        secondaryColor="#FF69B4"
      />
      
      {/* With animations */}
      <CheckIcon 
        size={20}
        color="#00FF00"
        variant="outlined"
        strokeWidth={2}
        spin={true}
      />
    </div>
  );
}

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | size | number \| string | 24 | Icon size (applies to both width and height) | | width | number \| string | - | Custom width | | height | number \| string | - | Custom height | | color | string | - | Primary color | | secondaryColor | string | - | Secondary color (for duotone variant) | | variant | 'filled' \| 'outlined' \| 'duotone' \| 'linear' | 'filled' | Icon variant | | strokeWidth | number \| string | 1.5 | Stroke width (for outlined/linear) | | strokeLinecap | 'butt' \| 'round' \| 'square' | 'round' | Stroke line cap | | strokeLinejoin | 'miter' \| 'round' \| 'bevel' | 'round' | Stroke line join | | rotate | number | 0 | Rotation in degrees | | mirrored | boolean | false | Horizontal flip | | flipped | boolean | false | Vertical flip | | spin | boolean | false | Spin animation | | pulse | boolean | false | Pulse animation | | bounce | boolean | false | Bounce animation | | opacity | number | - | Opacity (0-1) | | visible | boolean | true | Visibility | | title | string | - | Accessibility title | | description | string | - | Accessibility description |

Variants

Filled (Default)

<ArrowRightIcon variant="filled" color="#262626" />

Outlined

<ArrowRightIcon 
  variant="outlined" 
  color="#262626" 
  strokeWidth={2} 
/>

Duotone

<LikeIcon 
  variant="duotone" 
  color="#FF0000" 
  secondaryColor="#FF69B4" 
/>

Linear

<CheckIcon 
  variant="linear" 
  color="#00FF00" 
  strokeWidth={1.5} 
/>

Animations

// Spin animation
<SpinnerIcon spin={true} />

// Pulse animation
<LikeIcon pulse={true} />

// Bounce animation
<CheckIcon bounce={true} />

// Multiple animations
<ArrowRightIcon spin={true} pulse={true} />

Transformations

// Rotation
<ArrowRightIcon rotate={45} />

// Mirror (horizontal flip)
<ArrowRightIcon mirrored={true} />

// Flip (vertical flip)
<ArrowRightIcon flipped={true} />

// Combined
<ArrowRightIcon rotate={90} mirrored={true} />

Accessibility

<Button 
  title="Close dialog"
  description="Click to close the current dialog"
  aria-label="Close"
/>

Available Icons

  • AdvertIcon
  • ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon
  • BellIcon
  • CheckIcon
  • ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon
  • CombinedShapeIcon
  • EyeIcon
  • Flag1Icon
  • HomeIcon
  • LikeIcon
  • MenuIcon
  • MoonIcon
  • PngIcon
  • ProfileIcon
  • RevenueIcon
  • SearchIcon
  • SignUpIcon
  • SpinnerIcon
  • StarIcon
  • SunIcon
  • WalletIcon
  • XIcon

Development

# Clone the repository
git clone https://github.com/kartegagithub/ophelia-ui.git
cd ophelia-ui/ophelia-icons

# Install dependencies
npm install

# Build icons from SVG files
npm run build:icons

# Build the library
npm run build

# Start development mode
npm run dev

License

MIT © Ophelia Team