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

vite-plugin-react-stylish-svg

v1.0.6

Published

Stylishly handling SVG in Vite + React

Readme

Vite Plugin React Stylish SVG

Stylishly handling SVG in Vite + React

npm

Features

  • ✨ import SVG as React component or Data URL
  • 🎯 query-based import modes
  • ⚡ Powered by SVGR
  • 📦 TypeScript support
  • 🎨 Dynamic color control via color prop
  • 📏 Flexible sizing with size prop (icon query only)

Getting Started

Requires

  • Vite 7.0.0+
  • React 18.0.0+

install

pnpm add -D vite-plugin-react-stylish-svg

Quick Start

Add plugin to Vite config

vite.config.ts

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import reactStylishSvg from 'vite-plugin-react-stylish-svg';

export default defineConfig({
  plugins: [react(), reactStylishSvg()],
});

Add type declarations

You can add type declarations in two ways.

vite-env.d.ts

/// <reference types="vite/client" />
+ /// <reference types="vite-plugin-react-stylish-svg/types" />

or tsconfig.json

{
  "compilerOptions": {
    "types": ["vite-plugin-react-stylish-svg/types"]
  }
}

Usage

App.tsx

import Icon from './icon.svg?react'; // import as React component

function App() {
  return <Icon />;
}

Import Modes

React Component

query: ?react

import Icon from './icon.svg?react';
<Icon color="red" size={24} />;

Icon mode

query: ?icon , ?icon-fill , ?icon-stroke

There are two features.

  • change fill color with color prop
  • set square size with size prop (high priority over width and height)
// Both fill and stroke
import Icon from './icon.svg?icon';
<Icon color="blue" />;

// Fill only
import IconFill from './icon.svg?icon-fill';
<IconFill color="green" />;

// Stroke only
import IconStroke from './icon.svg?icon-stroke';
<IconStroke color="yellow" />;

// Set square size
import IconSize from './icon.svg?icon';
<IconSize size={48} />;

// export as component
export { default as Icon } from './icon.svg?icon';

No Query

Vite will automatically convert the SVG to a Data URL.

import iconUrl from './icon.svg';
<img src={iconUrl} alt="icon" />;

More information

Props type

?react

type ComponentProps = React.SVGProps<SVGSVGElement>;

?icon , ?icon-fill , ?icon-stroke

interface SVGIconProps extends React.SVGProps<SVGSVGElement> {
  color?: string; // Icon color
  size?: number | string; // Sets both width and height
}

Plugin Options

type PluginOptions = {
  /* exclude files from processing */
  exclude?: string | string[] | RegExp;
  /* default size when size prop not provided */
  defaultIconSize?: number | string;
  /* default props for all SVG elements */
  defaultProps?: Partial<SVGProps<SVGSVGElement>>;
};