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

@300codes/astro-icon

v1.0.4

Published

Vue icon component for Astro with SSR support

Readme

@300codes/astro-icon

Vue 3 icon component for Astro with full SSR and Tailwind CSS support.

Installation

npm install @300codes/astro-icon

Requirements

  • Astro ^4.0.0 || ^5.0.0
  • Vue ^3.0.0
  • Tailwind CSS (for size utility classes)

Tailwind CSS configuration

Tailwind does not scan node_modules by default, so the size utility classes from this library won't be generated unless you explicitly include it.

Tailwind v4 (with @tailwindcss/vite) — add @source in your CSS:

/* src/styles/global.css */
@import 'tailwindcss';
@source '../../node_modules/@300codes/astro-icon/dist';

Tailwind v3 — add the path to the content array in your config:

// tailwind.config.mjs
export default {
  content: [
    './src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
    './node_modules/@300codes/astro-icon/dist/**/*.js',
  ],
};

This ensures Tailwind picks up classes like w-6, min-w-6, h-6, etc. used by the component.

Usage in Astro

SSR only (no client-side JavaScript)

Icon rendered on the server without hydration — the lightest option:

---
import { BaseIcon } from '@300codes/astro-icon';
---

<BaseIcon name="arrow-right" />
<BaseIcon name="star" size="lg" />

Hydrate on page load

Icon rendered on the server and immediately hydrated on the client — useful when the name prop may change dynamically:

---
import { BaseIcon } from '@300codes/astro-icon';
---

<BaseIcon client:load name="arrow-right" size="md" />

Hydrate when visible

Icon rendered on the server, hydrated only when it enters the viewport — optimal for icons below the fold:

---
import { BaseIcon } from '@300codes/astro-icon';
---

<BaseIcon client:visible name="star" size="xl" />

Client only (no SSR)

Icon rendered exclusively on the client — it will not appear in the server HTML:

---
import { BaseIcon } from '@300codes/astro-icon';
---

<BaseIcon client:only="vue" name="logo" size="2xl" icon-path="/custom-icons" />

Usage in Vue

Standard usage inside a Vue component:

<script setup>
import { BaseIcon } from '@300codes/astro-icon';
</script>

<template>
  <BaseIcon name="arrow-right" />
  <BaseIcon name="star" size="lg" />
  <BaseIcon name="logo" size="auto" icon-path="/custom-icons" />
</template>

Props

| Prop | Type | Default | Description | |------------|------------|------------|------------------------------------------------| | name | string | (required) | SVG file name (without the .svg extension) | | size | IconSize | 'md' | Icon size | | iconPath | string | '/icons' | Path to the icons directory inside public/ |

Sizes (IconSize)

The component uses Tailwind CSS classes for sizing. The classes are not compiled within the library — they are generated by the Tailwind configuration in your Astro project.

| Size | Pixels | Tailwind classes | |-------|--------|-----------------------| | 2xs | 12px | w-3 min-w-3 h-3 | | xs | 16px | w-4 min-w-4 h-4 | | sm | 20px | w-5 min-w-5 h-5 | | md | 24px | w-6 min-w-6 h-6 | | lg | 32px | w-8 min-w-8 h-8 | | xl | 40px | w-10 min-w-10 h-10 | | 2xl | 48px | w-12 min-w-12 h-12 | | 3xl | 64px | w-16 min-w-16 h-16 | | auto| — | (no classes) |

The auto size does not apply any classes — the icon will adapt to its parent's dimensions.

Types

The library exports the IconSize type for use in your code:

import { BaseIcon, type IconSize } from '@300codes/astro-icon';

const size: IconSize = 'lg';

Where to place icons

SVG files should be placed in the public/ directory of your Astro project. The default path is public/icons/:

my-astro-project/
  public/
    icons/          <-- default path (iconPath="/icons")
      arrow-right.svg
      star.svg
      logo.svg

Pass the file name (without .svg) as the name prop:

<!-- Loads public/icons/arrow-right.svg -->
<BaseIcon name="arrow-right" />

Custom path

If you keep icons in a different directory, use the iconPath prop:

<!-- Loads public/assets/ui/star.svg -->
<BaseIcon name="star" icon-path="/assets/ui" />

How the component works

  1. SSR (server) — during server-side rendering, the component reads the SVG file directly from the filesystem (public/iconPath/name.svg) and injects its content into the HTML. This makes the icon visible immediately, without waiting for client-side JavaScript.

  2. Client — after the component is mounted in the browser, if the SVG content has not been loaded yet (e.g. during client-side navigation), it fetches it via fetch.

  3. Reactivity — changing the name prop automatically fetches and displays the new icon.

  4. Fallback — if the icon is not found, the component displays a placeholder.

SVG — set fill to currentColor

For icons to properly inherit the text color from CSS (e.g. via Tailwind's text-red-500), SVG files must have the fill attribute set to currentColor:

<!-- arrow-right.svg -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
  <path d="M..." />
</svg>

If the SVG has fill set to a specific color (e.g. #000000), changing the color via CSS will not work. The same applies to the stroke attribute — if the icon uses strokes, set stroke="currentColor".

License

MIT