JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 70
  • Score
    100M100P100Q75001F
  • License MIT

Light and Bold, Regular, Filled React SVG icon set generated from techpack.

Package Exports

  • techpack-icons

Readme

techpack-icons

React SVG icon set with Light and Bold variants generated from the original SVG files.

Install

npm install techpack-icons
# эсвэл
yarn add techpack-icons

Usage

import { UserLight, UserBold } from "techpack-icons";

export function Example() {
  return (
    <div>
      <UserLight className="w-6 h-6 text-blue-500" />
      <UserBold className="w-6 h-6 text-red-500" />
    </div>
  );
}

All icons:

  • Use fill="currentColor" so you can control color with className (e.g. Tailwind text-*).
  • Accept className and other SVG props.