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

@solar-icons/svelte

v1.0.1

Published

Solar Icons for Svelte

Readme

@solar-icons/svelte

The @solar-icons/svelte package provides Svelte 5 components for the Solar icon set. It's designed for performance with minimal bundle size and full tree-shaking support.

Installation

Install the package using npm, pnpm or yarn:

npm install @solar-icons/svelte

or

pnpm add @solar-icons/svelte

Usage

Import icons from a style and use them as Svelte components:

<script>
    import { Home, Settings } from '@solar-icons/svelte/Bold';
</script>

<Home size={24} color="#000" />
<Settings size={32} color="blue" />

Importing by Category

<script>
    import { AltArrowLeft, ArrowUp } from '@solar-icons/svelte/category/arrows/Bold';
    import { Cart, Bag } from '@solar-icons/svelte/category/shopping/Linear';
</script>

Direct Import (Optimal Tree-Shaking)

<script>
    import Home from '@solar-icons/svelte/category/buildings/Bold/Home.svelte';
</script>

Key Features

  • Svelte 5 Ready: Built with Svelte 5 runes for optimal performance.
  • Tree-Shakable: Only the icons you import are included in your bundle.
  • Minimal Size: Each icon component is ~360 bytes.
  • TypeScript Ready: Full TypeScript support with proper types.
  • Multiple Import Patterns: Import by style, by category, or individual icons.

Properties

Each icon component supports the following properties:

  • size: Defines the size of the icon (e.g., 24, "1.5em").
  • color: Sets the color of the icon (e.g., "#000", "currentColor").
  • mirrored: Flips the icon horizontally when set to true.
  • alt: Provides an accessible title for the icon.

Available Styles

  • Bold - Filled icons
  • Linear - Stroke-based icons
  • Outline - Outlined icons
  • BoldDuotone - Two-tone filled icons
  • LineDuotone - Two-tone stroke icons
  • Broken - Broken line style icons

Contributing

Contributions to further optimize and expand the @solar-icons/svelte package are welcome. If you wish to contribute, please follow our contribution guidelines.

License

The @solar-icons/svelte code and library are licensed under the MIT License. The Solar icon pack itself is licensed under CC BY 4.0 by 480 Design, which requires attribution for any use. For more information and to view the original icon set, visit 480 Design's Figma page.

Acknowledgements

Special thanks to 480 Design for creating the original Solar icon pack. Additional appreciation goes to Phosphor Icons and Lucide Icons for their inspiration in shaping the design and approach of the Solar icon packages.


For more details on other packages and usage examples, refer to the project's main documentation.