JSPM

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

Light and Bold React SVG icon set generated from techpack.

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (techpack-icons) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    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.