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

@solidmaterial/vite-plugin-solid-svg

v1.0.1

Published

Import SVG files as Solid.js Components

Downloads

342

Readme

@solidmaterial/vite-plugin-solid-svg

Extend Vite with ability to use SVG files as SolidJS components.

This project is a fork of https://github.com/jfgodoy/vite-plugin-solid-svg with the following changes:

  • SVGO dependency removed
  • Uses tsdown instead of tsup to build the plugin

Features

  • Hot Module Replacement support
  • Support for ?url query string
  • SSR

Install

pnpm add -D @solidmaterial/vite-plugin-solid-svg

Setup

// vite.config.js
import solidPlugin from 'vite-plugin-solid';
import solidSvg from '@solidmaterial/vite-plugin-solid-svg';
import { defineConfig } from 'vite';

export default defineConfig({
  plugins: [solidPlugin(), solidSvg()]
});

TypeScript

Vite adds its own definition for "*.svg" and defines them as string. Add this project's types definition before Vite's in your tsconfig file to import SVG files as SolidJS components:

// tsconfig.json
"compilerOptions": {
  "types": [
    "@solidmaterial/vite-plugin-solid-svg/types"
    "vite/client",
  ],
},

Usage

An SVG icon can be imported as a SolidJS component as follows:

import MyIcon from './my-icon.svg'; // Identified as Solid Component

const App = () => {
  return (
    <div>
      <h1> Title </h1>
      <MyIcon />
    </div>
  );
};

export default App;

To import the SVG icon as a URL, like Vite's original definition, add the ?url query string:

import myIconUrl from './my-icon.svg?url'; // Identified as string

const App = () => {
  return (
    <div>
        <h1> Title </h1>
        <img href={myIconUrl}>
    </div>
  );
};

export default App;

To import all SVG files inside a folder, use import.meta.glob('@/svgs/*.svg', { as: 'component-solid' }). See Vite docs for more details.

const icons = import.meta.glob('./*.svg', { as: 'component-solid' });

/*
  icons = {
    icon1: () => import("./icon1.svg"),
    icon2: () => import("./icon2.svg")
  }
*/

const App = () => {
  const Icon1 = lazy(() => iconsDic.icon1());
  return (
    <div>
      <p>hello</p>
      <Icon1 />
    </div>
  );
};

export default App;

Credits

This plugin is based on the work from the following projects:

  • https://github.com/jfgodoy/vite-plugin-solid-svg
  • https://github.com/visualfanatic/vite-svg
  • https://github.com/cobbcheng/vite-plugin-svgstring

License

This package is licensed under the MIT license.