
Blueprint Icon Components and files
Blueprint is a React UI toolkit for the web.
This package contains a collection of React components and other files for displaying icons.
Installation
npm install --save @blueprintjs/icons
Full Documentation | Source Code
Adding new icons (repo contributors)
- Add the 16px SVG under
resources/icons/16pxand the 20px SVG underresources/icons/20px, same kebab-case basename in each. The basename then becomes theiconName. - Run
pnpm --filter @blueprintjs/icons icons:add. It checks the pair, runs SVGO on the SVGs, and appends a row topackages/icons/icons.jsonwhen the icon isn’t listed yet. - Fill in
tagsandgroupfor the new row. - Run
pnpm --filter @blueprintjs/icons icons:verifybefore you ship the change.
To normalize every icon SVG in the repo at once: pnpm --filter @blueprintjs/icons icons:format.