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

@jengaicons/svelte

v0.8.0

Published

Jenga Icons is a collection of over 2,500 beautifully crafted icons designed for use in interfaces, diagrams, and other applications. **Fully compatible with Svelte 5 runes.**

Downloads

279

Readme

Jenga Icons for Svelte

Jenga Icons is a collection of over 2,500 beautifully crafted icons designed for use in interfaces, diagrams, and other applications. Fully compatible with Svelte 5 runes.

NPM Version Discord

Installation

# with npm
npm install @jengaicons/svelte

# with yarn
yarn add @jengaicons/svelte

# with bun
bun add @jengaicons/svelte

Usage

<script>
  import { Activity, ActivityFill, AirplayMono } from "@jengaicons/svelte"
</script>

<Activity />
<ActivityFill color="#6864d4" size={32} />
<AirplayMono size={24} />

Icon Variants

Jenga Icons comes with three variants to suit different design needs:

| Variant | Count | Naming | Description | |---------|-------|--------|-------------| | Regular | 1,208 | Activity, AddressBook | Outline/stroke icons with customizable weight | | Fill | 1,205 | ActivityFill, AddressBookFill | Solid filled icons | | Mono | 122 | AirplayMono, GithubMono | Brand logos and monochrome icons |

Regular (Outline) Icons

<script>
  import { Activity, Bell, Calendar } from "@jengaicons/svelte"
</script>

<Activity />
<Bell strokeWidth={1.5} />
<Calendar size={32} color="blue" />

Fill (Solid) Icons

<script>
  import { ActivityFill, BellFill, CalendarFill } from "@jengaicons/svelte"
</script>

<ActivityFill />
<BellFill size={32} />
<CalendarFill color="#6864d4" />

Mono (Brand) Icons

<script>
  import { GithubMono, TwitterMono, FigmaMono } from "@jengaicons/svelte"
</script>

<GithubMono />
<TwitterMono size={32} />
<FigmaMono color="black" />

Tree-Shaking & Individual Imports

For optimal bundle size, import icons individually:

<script>
  // Direct import - best for tree-shaking
  import Activity from "@jengaicons/svelte/icons/Activity"
  import ActivityFill from "@jengaicons/svelte/icons/ActivityFill"
</script>

<Activity />
<ActivityFill />

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | color | string | currentColor | Icon color. Accepts any CSS color value. | | size | number \| string | 32 | Icon dimensions (width & height). | | strokeWidth | number \| string | 1 | Stroke width for Regular icons. | | absoluteStrokeWidth | boolean | false | Scale stroke width with icon size. | | class | string | '' | CSS class name. |

All standard SVG attributes are also supported and passed through to the <svg> element.

Examples

<script>
  import { Activity } from "@jengaicons/svelte"
</script>

<!-- Basic usage -->
<Activity />

<!-- Custom size and color -->
<Activity size={48} color="#6366f1" />

<!-- Custom stroke width -->
<Activity strokeWidth={2} />

<!-- With CSS class -->
<Activity class="my-icon hover:text-blue-500" />

<!-- With inline styles -->
<Activity style="margin-right: 8px;" />

<!-- With event handlers -->
<Activity onclick={() => console.log('clicked')} />

TypeScript

Full TypeScript support is included:

<script lang="ts">
  import { Activity } from "@jengaicons/svelte"
  import type { IconProps } from "@jengaicons/svelte"

  const props: IconProps = {
    size: 24,
    color: "currentColor",
    strokeWidth: 1.5
  }
</script>

<Activity {...props} />

SvelteKit

Works out of the box with SvelteKit:

<!-- src/routes/+page.svelte -->
<script>
  import { Activity, Bell, Settings } from "@jengaicons/svelte"
</script>

<nav>
  <Activity size={20} />
  <Bell size={20} />
  <Settings size={20} />
</nav>

Bundle Size

Each icon adds approximately 200-500 bytes (uncompressed) to your bundle. With tree-shaking, only the icons you import are included.

| Import | Approximate Size (uncompressed) | Gzipped | |--------|--------------------------------|---------| | 1 icon | ~1 KB | ~400 bytes | | 10 icons | ~4 KB | ~1.5 KB | | 100 icons | ~40 KB | ~15 KB |

Our icons are optimized to be smaller than alternatives like Lucide.

License

Jenga Icons is a project by Outpost.

Released under the MIT License.