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

astraicons

v1.7.0

Published

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

Downloads

534

Readme

Astra Icons

✨ Features

  • 900+ Total Icons - Comprehensive collection for all your UI needs
  • 5 Distinct Styles - Linear, Bold, Duotone, Brand, and 3D icons
  • 288 Unique Icons - Each available in multiple styles
  • 32 3D Icons - Modern three-dimensional style icons
  • 18 Brand Icons - Popular company and service logos
  • Framework Support - Official React and Vue packages
  • TypeScript Support - Fully typed for better developer experience
  • Tree Shakeable - Import only the icons you need
  • Customizable - Easy to style with CSS or utility classes
  • Accessible - Built with accessibility in mind

📦 Installation

React

npm install @astraicons/react
# or
yarn add @astraicons/react
# or
pnpm add @astraicons/react

Vue

npm install @astraicons/vue
# or
yarn add @astraicons/vue
# or
pnpm add @astraicons/vue

🚀 Quick Start

React

import { HomeIcon } from '@astraicons/react/linear';
import { HeartIcon } from '@astraicons/react/bold';
import { StarIcon } from '@astraicons/react/duotone';
import { AppleIcon } from '@astraicons/react/brand';
import { CubeIcon } from '@astraicons/react/3d';

function MyComponent() {
  return (
    <div>
      <HomeIcon className="w-6 h-6 text-gray-500" />
      <HeartIcon className="w-6 h-6 text-red-500" />
      <StarIcon className="w-6 h-6 text-yellow-500" />
      <AppleIcon className="w-8 h-8" />
      <CubeIcon className="w-8 h-8 text-purple-500" />
    </div>
  );
}

Vue

<template>
  <div>
    <HomeIcon class="w-6 h-6 text-gray-500" />
    <HeartIcon class="w-6 h-6 text-red-500" />
    <StarIcon class="w-6 h-6 text-yellow-500" />
    <AppleIcon class="w-8 h-8" />
    <CubeIcon class="w-8 h-8 text-purple-500" />
  </div>
</template>

<script setup>
import { HomeIcon } from '@astraicons/vue/linear';
import { HeartIcon } from '@astraicons/vue/bold';
import { StarIcon } from '@astraicons/vue/duotone';
import { AppleIcon } from '@astraicons/vue/brand';
import { CubeIcon } from '@astraicons/vue/3d';
</script>

Direct SVG Usage

Copy the SVG source from uiastra.com and embed it directly into your HTML:

<svg
  class="w-6 h-6 text-gray-500"
  fill="none"
  viewBox="0 0 24 24"
  stroke="currentColor"
  stroke-width="1.5"
>
  <rect x="2" y="2" width="20" height="20" rx="10" />
  <path
    d="M9 3C7.66667 8.84 7.66667 15.16 9 21"
    stroke-linecap="round"
    stroke-linejoin="round"
  />
  <path
    d="M15 3C16.3333 8.84 16.3333 15.16 15 21"
    stroke-linecap="round"
    stroke-linejoin="round"
  />
  <path d="M2 12L22 12" />
  <path d="M3 7L21 7" />
  <path d="M3 17L21 17" />
</svg>

🎨 Icon Styles

Linear

Outline style icons with consistent 1.5px stroke width. Perfect for modern, minimalist interfaces.

import { ActivityIcon, BellIcon, CameraIcon } from '@astraicons/react/linear';

Bold

Filled or bold stroke icons for emphasis and better visibility at smaller sizes.

import { ActivityIcon, BellIcon, CameraIcon } from '@astraicons/react/bold';

Duotone

Two-tone icons that combine filled and outline styles for depth and visual interest.

import { ActivityIcon, BellIcon, CameraIcon } from '@astraicons/react/duotone';

Brand

Company and service logos including social media platforms and popular brands.

import { AppleIcon, GoogleIcon, TwitterIcon } from '@astraicons/react/brand';

3D

Modern three-dimensional style icons with depth and perspective for contemporary interfaces.

import { CubeIcon, FolderIcon, BoxIcon } from '@astraicons/react/3d';

📋 Icon Naming Convention

Icons follow a consistent naming pattern:

  • Upper camel case (PascalCase)
  • Always end with Icon suffix
  • Descriptive names for easy discovery

Examples:

  • HomeIcon
  • ShoppingCartIcon
  • ArrowRightIcon
  • UserProfileIcon

🔧 Customization

Using Tailwind CSS

<HomeIcon className="w-8 h-8 text-blue-500 hover:text-blue-600 transition-colors" />

Using Inline Styles

<HomeIcon style={{ width: 32, height: 32, color: '#3B82F6' }} />

Using CSS

.custom-icon {
  width: 2rem;
  height: 2rem;
  color: #3B82F6;
}
<HomeIcon className="custom-icon" />

📚 Documentation

🌐 Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)
  • Opera (latest)

📦 Package Details

React Package

  • Package: @astraicons/react
  • Version: 1.0.1
  • Size: ~14MB unpacked
  • Files: 3,524 (JS + TypeScript definitions)
  • Tree-shakeable: ✅
  • TypeScript: ✅
  • Peer Dependencies: React >= 16

Vue Package

  • Package: @astraicons/vue
  • Version: 1.0.1
  • Size: ~14MB unpacked
  • Files: 3,524 (JS + TypeScript definitions)
  • Tree-shakeable: ✅
  • TypeScript: ✅
  • Peer Dependencies: Vue >= 3

🤝 Contributing

We welcome contributions to improve the library! However, please note:

  • Bug fixes - Report or fix issues with existing icons
  • TypeScript improvements - Enhance type definitions
  • Documentation - Improve guides and examples
  • Performance - Optimize build process or package size
  • New icons - We're not accepting new icon contributions at this time

Development Setup

# Clone the repository
git clone https://github.com/uiastra/astraicons.git
cd astraicons

# Install dependencies
npm install

# Build all packages
npm run build

# Build specific style
npm run build-linear
npm run build-bold
npm run build-duotone
npm run build-brand
npm run build-3d

🙏 Credits

  • Icon design and curation by UI Astra
  • Build system inspired by Heroicons
  • Created with ❤️ for the developer community

📄 License

This library is MIT licensed. See LICENSE for details.