@artsy/icons is the canonical source for icons used at Artsy, and serves as an automatic build pipeline for generating JSX representations of .svg
sources that can easily be imported into React apps.
You can view available icons here and click to copy the import path of the desired icon.
- State: production
- GitHub: https://github.com/artsy/icons
- CI/Deploys: CircleCi; merged PRs to
artsy/icons#main
are automatically deployed to NPM - Docs: https://icons.artsy.net
- Point People: @dzucconi
yarn add @artsy/icons
And then later, import icons like so:
import ArtsyLogo from "@artsy/icons/ArtsyLogo"
const MyApp = () => {
return <ArtsyLogo />
}
Alternatively, visit the docs and select individual icons, which will copy the import path to your clipboard.
We've setup the repo so that adding new icons and publishing to NPM is as automated as can be:
- Clone the repo:
git clone https://github.com/artsy/icons.git
- Create a new branch:
git checkout -b add-new-icon
- Copy your new icon
.svg
file into thesrc
folder (and follow pre-existing naming conventions! 🙏) - Push your branch up to GitHub and open a PR. This should automatically be tagged with a
minor
label indicating a new feature addition - Merge PR. This will automatically generate JSX components and publish to NPM, and additionally update the docs
- Once published, a new comment will be added to the PR announcing the new version.
yarn install
yarn build
yarn docs