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-iconsUsage
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 withclassName(e.g. Tailwindtext-*). - Accept
classNameand otherSVGprops.