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

@nobertdev/react-3d-icons

v1.5.2

Published

Beautiful 3D React icon components with multiple styles — dynamic color, dynamic premium, front color, and premium front

Downloads

65

Readme

🚀 React 3D Icons



✨ Features

  • 🎨 650+ 3D icons across multiple styles
  • Tree-shakable imports (import only what you use)
  • 🧩 Simple React components
  • 🎯 Multiple styles & categories
  • 🚀 Zero dependencies
  • 💤 Lazy-loaded images by default

📦 Installation

npm install @nobertdev/react-3d-icons

Peer dependency: React 18+


🚀 Quick Usage

import { Rocket, Heart, Star } from "@nobertdev/react-3d-icons/front-color";

export default function App() {
  return (
    <div className="flex gap-4">
      <Rocket className="w-12 h-12" />
      <Heart className="w-12 h-12" />
      <Star className="w-12 h-12" />
    </div>
  );
}

⚡ Short Aliases

import { Rocket } from "@nobertdev/react-3d-icons/dc"; // dynamic-color
import { Heart } from "@nobertdev/react-3d-icons/dp"; // dynamic-premium
import { Star } from "@nobertdev/react-3d-icons/fc"; // front-color
import { Bell } from "@nobertdev/react-3d-icons/pf"; // premium-front

🎨 Categories

| Category | Import Path | Alias | Description | | --------------- | ----------------- | ----- | ------------------------------------------ | | Dynamic Color | dynamic-color | dc | Colorful 3D icons with dynamic perspective | | Dynamic Premium | dynamic-premium | dp | Premium 3D icons with dynamic perspective | | Front Color | front-color | fc | Colorful 3D icons (front view) | | Premium Front | premium-front | pf | Premium icons (front view) |


🧩 Props

All icons are forwardRef components rendering an <img />.

| Prop | Description | | -------------- | ------------------------------------ | | className | Style using Tailwind / CSS | | style | Inline styles | | width/height | Control size | | onClick | Click handler | | ref | Access the <img> element | | alt | Defaults to icon name (overrideable) | | loading | "lazy" by default |


🧠 Naming Convention

| File Name | Component | | --------------------------------------- | ------------ | | 3dicons-rocket-dynamic-color.png | Rocket | | 3dicons-credit-card-front-premium.png | CreditCard | | 3dicons-chat-bubble-dynamic-color.png | ChatBubble | | 3dicons-3d-coin-front-color.png | ThreeDCoin |


🔗 Links

  • 🌐 Icons & Documentation: https://react-3d-icons.vercel.app/
  • 💻 GitHub: https://github.com/NOBERT167/react-3d-icons
  • 📦 npm: https://www.npmjs.com/package/@nobertdev/react-3d-icons

💡 Use Cases

  • Dashboards
  • SaaS products
  • Landing pages
  • Mobile-first UIs
  • Design systems

👨‍🍳 Author

Built with ❤️ by Nobert Langat


📄 License

MIT