🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

ndla-icons

Package Overview
Dependencies
Maintainers
5
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ndla-icons

A package containing icons used in NDLA frontends

latest
Source
npmnpm
Version
0.4.7
Version published
Maintainers
5
Created
Source

ndla-icons

A package containing icons used in NDLA frontends.

Installation

$ npm install ndla-icons --save
$ yarn add ndla-icons

Usage

import { Audio } from 'ndla-icons/common');
import { Camera } from 'ndla-icons/editor');

const IconList = () => (
  <ul>
    <li><Audio /> Audio icon</li>
    <li><Camera /> Camera icon</li>
  </ul>
)

or

import { Audio } from 'ndla-icons/lib/common/Audio');

<Audio />

Icons are currently grouped into three folders

  • common
  • license
  • editor
  • contentType

Development

TLDR: Change/Add/Remove svg file(s). Run node scripts/createIconComponents.js. Commit.

Add new svg file:

  • Add svg file to an appropiate folder in ndla-icons/svg.
  • Ensure that data-license and data-source attributes are on the <svg> element.
  • Run node scripts/createIconComponents.js from root folder.
  • Commit changes.

Edit svg file:

  • Edit existing svg file.
  • Run node scripts/createIconComponents.js from root folder.
  • Commit changes.

Delete svg file:

  • Delete svg file.
  • Run node scripts/createIconComponents.js from root folder.
  • Commit changes.

Rename or adding new folders

  • Do changes.
  • Run node scripts/createIconComponents.js from root folder.
  • Update files array in packages.json.

Keywords

ndla

FAQs

Package last updated on 30 Oct 2018

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