🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

@artsy/icons

Package Overview
Dependencies
Maintainers
5
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@artsy/icons

[@artsy/icons](https://github.com/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.

latest
npmnpm
Version
3.62.0
Version published
Maintainers
5
Created
Source

@artsy/icons

@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.

Meta

Build Status

Installation and Usage

yarn add @artsy/icons

And then later, import icons like so for web:

import ArtsyLogo from "@artsy/icons/ArtsyLogo"

const MyApp = () => {
  return <ArtsyLogo />
}

Or for React Native:

import { ArtsyLogo } from "@artsy/icons/native"

const MyApp = () => {
  return <ArtsyLogo />
}

Alternatively, visit the docs and select individual icons, which will copy the import path to your clipboard.

Adding New Icons

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 the src folder (and follow pre-existing naming conventions! :pray:)
  • Push your branch up to GitHub and open a PR. This should automatically be tagged with a minor label indicating a new feature addition
  • Run yarn build && yarn docs to test the new icon
  • 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.

Development

yarn install
yarn build
yarn docs

FAQs

Package last updated on 03 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts