New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@coorpacademy/nova-icons

Package Overview
Dependencies
Maintainers
16
Versions
380
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coorpacademy/nova-icons

React components bank based on Nova SVG icons

  • 1.2.8
  • npm
  • Socket score

Version published
Weekly downloads
589
increased by17.8%
Maintainers
16
Weekly downloads
 
Created
Source

nova-icons

Components bank based on nova svg icons

Adding an icon

  • find your .svg path within /third-party:
/third-party/Nova-Icons/SVG/Solid icons/07-Users/user-shield-1.svg
  • add the correponding path within icons.json:
  "@coorpacademy/nova-icons/solid/users/user-shield-1"
  • generate the .js
npm run prepare
  • by now your js file should be added within /solid, /composition or /line depending on your svg path.

Usage

import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import Beard from 'nova-icons/solid/beauty-and-spa/beard';
import Hat from 'nova-icons/solid/clothes/hat-1';

class App extends Component {
  render() {
    return (
      <div className="App">
        <Beard width={100} height={100} />
        <Hat width={100} height={100} />
      </div>
    );
  }
}

export default App;

FAQs

Package last updated on 29 Nov 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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc