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

modern-3d-icons-vue

v0.1.1

Published

A Vue 3 library for modern 3D SVG icons

Readme

Modern 3D Icons Vue

A Vue 3 library featuring modern 3D PNG icons with responsive sizing and high-quality assets.

Features

  • 🎨 High-quality 3D PNG icons
  • 📱 Responsive sizing with automatic resolution selection
  • 🎯 TypeScript support
  • 🚀 Vue 3 composition API
  • 📦 Tree-shakeable imports
  • ♿ Accessibility support with alt text
  • 🎯 Zero dependencies

Installation

npm install modern-3d-icons-vue
# or
yarn add modern-3d-icons-vue
# or
pnpm add modern-3d-icons-vue

Usage

Basic Usage

<template>
  <AiChipIcon />
  <AirplaneIcon />
  <BellIcon />
  <BookIcon />
  <BookmarkIcon />
  <BoxIcon />
  <DigitalQuaverIcon />
  <FootballIcon />
  <MagnifyingGlassIcon />
  <SpeakerIcon />
  <WalletIcon />
</template>

<script setup>
import {
  AiChipIcon,
  AirplaneIcon,
  BellIcon,
  BookIcon,
  BookmarkIcon,
  BoxIcon,
  DigitalQuaverIcon,
  FootballIcon,
  MagnifyingGlassIcon,
  SpeakerIcon,
  WalletIcon
} from 'modern-3d-icons-vue'
</script>

Customizing Icons

All icons accept the following props:

<template>
  <AiChipIcon
    :size="32"         <!-- Size in pixels (default: 32) -->
    alt="AI Chip"      <!-- Alt text for accessibility -->
  />
</template>

Responsive Sizing

The icons automatically use the appropriate resolution based on their size:

  • ≤ 64px: Uses 64x64 PNG
  • 65-128px: Uses 128x128 PNG
  • 128px: Uses 256x256 PNG

Available Icons

  • AiChipIcon - AI chip with golden prongs and stars
  • AirplaneIcon - Commercial airplane
  • BellIcon - Minimalist bell
  • BookIcon - Embossed book with red bookmark
  • BookmarkIcon - Minimalist bookmark
  • BoxIcon - Shipping box with handling symbols
  • DigitalQuaverIcon - 3D digital quaver music note
  • FootballIcon - American football close-up
  • MagnifyingGlassIcon - 3D magnifying glass
  • SpeakerIcon - 3D speaker with sound waves
  • WalletIcon - Beige wallet with blue banknote

Additional Image Attributes

You can pass any valid image attributes to the icons:

<template>
  <AiChipIcon
    class="my-icon"
    style="opacity: 0.8"
    alt="AI Chip"
  />
</template>

Project Structure

modern-3d-icons-vue/
├── src/
│   ├── assets/
│   │   └── png/           # Icon assets in different resolutions
│   │       ├── 64/        # 64x64 icons
│   │       ├── 128/       # 128x128 icons
│   │       └── 256/       # 256x256 icons
│   ├── components/        # Vue components
│   └── index.ts          # Main entry point
├── example-app/          # Example application
├── dist/                 # Build output
└── package.json

Development

Prerequisites

  • Node.js 16+
  • npm 7+ or yarn 1.22+ or pnpm 7+

Setup

# Install dependencies
npm install

# Start development server
npm run dev

# Build for production
npm run build

# Type checking
npm run type-check

Example App

The project includes an example application to showcase the icons:

cd example-app
npm install
npm run dev

Adding New Icons

  1. Add your PNG icons to the appropriate resolution folders in src/assets/png/
  2. Create a new component in src/components/
  3. Export the component in src/index.ts

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-icon)
  3. Commit your changes (git commit -m 'Add amazing icon')
  4. Push to the branch (git push origin feature/amazing-icon)
  5. Open a Pull Request

Icon Guidelines

  • Icons should be in PNG format
  • Provide icons in all required resolutions (64x64, 128x128, and 256x256)
  • Maintain consistent style across all icons
  • Ensure icons are properly centered and padded
  • Use transparent backgrounds

License

MIT © Rafael Aguilar