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

simple-solid-icons

v0.0.12

Published

SSR-safe, simple, and auto-generated icon library for SolidJS with components from popular open-source icon sets.

Readme

simple-solid-icons

Netlify Status

🌐 Live Icon Search & Demo

SSR-safe, simple, and auto-generated icon library for SolidJS with components from popular open-source icon sets.


Quick Start

pnpm add simple-solid-icons
# or
npm install simple-solid-icons
// Import a single icon (tree-shakable):
import { TablerHeart } from 'simple-solid-icons/tabler/TablerHeart'

// Or import from a set (auto-exports all icons in the set/variant):
import { TablerHeart } from 'simple-solid-icons/tabler'
import { FaSolidWindowRestore } from 'simple-solid-icons/fontawesome/solid'
import { FaBrandsGithub } from 'simple-solid-icons/fontawesome/brands'
import { AntdOutlineAccountBook } from 'simple-solid-icons/antdesign/outline'
import { EvaFillActivity } from 'simple-solid-icons/eva/fill'

Features

  • SSR Compatible - Works perfectly with Vike, SolidStart, and other SSR frameworks
  • 🔄 Auto-generated - Icons are automatically generated from upstream sources
  • 🎯 Tree-shakable - Only bundle the icons you use
  • 📦 Multiple icon sets - Tabler, Heroicons, Lucide, Feather, Bootstrap, Remix, Boxicons, Simple Icons, Eva, Font Awesome (solid/regular/brands), Ant Design (outline/fill/twotone), Zondicons, Ionicons, Codicons, and more
  • 🚀 TypeScript - Full TypeScript support with proper types
  • 🛡️ License Attribution - Every icon file includes license and source info

Installation

pnpm add simple-solid-icons
# or
npm install simple-solid-icons

Usage

// Import an icon directly from its file for maximum tree-shaking:
import { TablerHeart } from 'simple-solid-icons/tabler/TablerHeart'

// Or import from a set/variant:
import { FaSolidWindowRestore } from 'simple-solid-icons/fontawesome/solid'
import { FaBrandsGithub } from 'simple-solid-icons/fontawesome/brands'
import { AntdOutlineAccountBook } from 'simple-solid-icons/antdesign/outline'
import { EvaFillActivity } from 'simple-solid-icons/eva/fill'
import { HeroHome } from 'simple-solid-icons/heroicons'
import { LucideSettings } from 'simple-solid-icons/lucide'

function MyComponent() {
  return (
    <div>
      <TablerHeart class="text-red-500" />
      <FaSolidWindowRestore size={32} />
      <FaBrandsGithub />
      <AntdOutlineAccountBook />
      <EvaFillActivity />
      <HeroHome size={32} />
      <LucideSettings stroke-width="1" />
    </div>
  )
}

}



## Icon Sets & Prefixes

- **Tabler Icons** (`Tabler*`) — MIT
- **Heroicons** (`Hero*`) — MIT
- **Lucide** (`Lucide*`) — ISC
- **Feather** (`Feather*`) — MIT
- **Bootstrap Icons** (`Bootstrap*`) — MIT
- **Remix Icon** (`Remix*`) — Apache-2.0
- **Boxicons** (`Box*`) — MIT
- **Simple Icons** (`Simple*`) — CC0-1.0
- **Eva Icons** (`EvaFill*`, `EvaOutline*`) — MIT
- **Font Awesome** (`FaSolid*`, `FaRegular*`, `FaBrands*`) — CC BY 4.0
- **Ant Design** (`AntdOutline*`, `AntdFill*`, `AntdTwotone*`) — MIT
- **Zondicons** (`Zondicon*`) — MIT
- **Ionicons** (`Ion*`) — MIT
- **Codicons** (`Codicon*`) — MIT

Each icon file includes a header with license and source info. See the source repos for full license details.

Each icon file includes a header with license and source info. See the source repos for full license details.

## Development

The demo app and icon generator scripts are not included in the npm package. To work on the icons or demo locally:

```bash
# Install dependencies
pnpm install

# Update icon repos (clone/pull latest SVGs)
pnpm update:repos

# Generate icon components/types from SVGs
pnpm generate:icons

# Update everything (repos + generate)
pnpm update:all

# Clean all generated files
pnpm clean

Why This Exists

Popular icon libraries like solid-icons, @tabler/icons-solidjs, and lucide-solid have SSR compatibility issues with frameworks like Vike. This library generates clean, simple SolidJS components that work perfectly with SSR.

Note: This package is tested with Vike and plain SolidJS. If you use SolidStart and encounter any issues, please open an issue or PR!

Contributing

Contributions, bug reports, and feature requests are welcome! Please open an issue or PR on GitHub.


License & Attribution

  • This package is MIT licensed (codegen and wrapper code).
  • All icons are copyright their respective authors.
  • Each icon set is included under its original open-source license (see file headers and above).
  • No icons or trademarks are claimed by this package or its authors.
  • See each icon set's repo for full license terms and attribution requirements.

Generated and maintained by the Saztunes team.