Socket
Socket
Sign inDemoInstall

@dnanpm/icons

Package Overview
Dependencies
6
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @dnanpm/icons

DNA Icons repository provides the set of icons used in various DNA projects. Icons are fetched directly from Figma, processed and published to NPM.


Version published
Maintainers
2
Created

Readme

Source

DNA Icons repository provides the set of icons used in various DNA projects. Icons are fetched directly from Figma, processed and published to NPM.

Installation

Run install command in repository where DNA Icons should be added

npm install @dnanpm/icons

Usage example

React component

import { Warning } from '@dnanpm/icons';
import { Icon } from '@dnanpm/styleguide';

interface Props {
    myProp?: string;
}

const MyComponent = ({
    myProp,
}: Props) => {
    // foo/bar/baz

    return (
        <Icon icon={Warning} />
    );
};

export default MyComponent;

SVG Sprite

Asset
import '@dnanpm/icons/sprite';
Javascript
import sprite from '@dnanpm/icons/spriteJs';

// Will log spritesheet as string
console.log(sprite);

Keywords

FAQs

Last updated on 21 Mar 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc