Skip to main content
v1.0.0 Live on NPM

QuickSVG Documentation

QuickSVG is a high-performance, open-source parametric vector icon library for React, Next.js, and modern Web applications.

Tree-Shakable

Import individual icons as lightweight React components without inflating your client bundle.

Parametric Math

Customize stroke width, roundness, size, and color props dynamically on every icon.

TypeScript First

Full TypeScript definitions included with complete auto-complete for all 81+ icon names.

Quick Example

// 1. Install via NPM
$ npm install @mdsharik/quicksvg
// 2. Import and use in React
import { Home, EyeDashed, Accessibility } from '@mdsharik/quicksvg';

export default function App() {
return (
<Home size={24} color="#3b82f6" strokeWidth={2} />
);
}