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

@esri/calcite-ui-icons

Package Overview
Dependencies
Maintainers
26
Versions
213
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@esri/calcite-ui-icons

A collection of UI SVG icons created by Esri for applications.

  • 2.3.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
36K
decreased by-20.3%
Maintainers
26
Weekly downloads
 
Created
Source

calcite-ui-icons

A collection of UI SVG icons created by Esri for mapping applications. https://esri.github.io/calcite-ui-icons/

Installation

npm install @esri/calcite-ui-icons --save

Description

Icons come in two styles:

  • filled
  • outlined

and 3 sizes:

  • 16x16
  • 24x24
  • 32x32

Why 3 Sizes?

More info on what happens when you scale vector based icons here

Outline icons are the standard

Outline icons have the default name. For example, trash-16.svg will render the default outline icon.

If needed, appending -f (trash-16-f.svg) will render the filled version.

Outline icons should be the primary icons to be used.

Sprite packages

Furtheremore, sprites are available in 6 packages and live ouside the icons/ directory:

  • sprite-16.svg
  • sprite-16-f.svg
  • sprite-24.svg
  • sprite-24-f.svg
  • sprite-32.svg
  • sprite-32-f.svg

Filenames that contain -f contain filled icons only. Icons in the sprite have an id of the individual SVG file name.

JavaScript Exports

The icons are also made avaiable as named ES6 exports. This way you can import just the icons you need into your app:

import {arrowLeft16, copyToClipboard32F} from "@esri/calcite-ui-icons";

console.log(arrowLeft16); // => "M16 6v3H5.035l5 5H6.5L0 7.5 6.5 1h3.536l-5 5z"

The icon names will be lower camel case. If the icon name starts with a number (ex. 2d-explore, 3d-glasses) prefix the name with i. This is due to the fact that JavaScript variables cannot begin with a number.

Note: It is not recommended to import the entire library of icons. This will have negative performance implications. Use the technique above to select only the icons your users actually need to download.

JSON Format

All icons are also provided as part of a JSON file. If you installed via npm, you can import the full icon data set using the following:

var calciteIcons = require('@esri/calcite-ui-icons/docs/icons.json');

This will give you an object containing all the icons in the library at all sizes in outlined and filled styles:

{
  version: '{current version number}',
  icons: {
    blog: {
      alias: ['social'],
      category: 'Social-Media',
      filled: {
        16:['M15.541...'],
        24:['M23.756...'],
        32:['M31.618...']
      },
      outline: {
        16:['M15.541...'],
        24:['M23.756...'],
        32:['M31.618...']
      }
    },
    ...
  }
}

Note: path data ommitted for brevity.

Individual icons structure

All the individual SVG icons have a common file structure.

This is what the close-16.svg looks like:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
  <path d="M0 10V7h10.965l-5-5H9.5L16 8.5 9.5 15H5.964l5-5H0z"/>
</svg>

None of the icons have stroke attributes. The fill attribute can be defined with css:

svg {
  fill: gray;
}

All the other styling properties applicable to the whole svg element are applicable.

svg:hover {
  fill: blue;
}

Licensing

COPYRIGHT © 2019 Esri

All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.

This material is licensed for use under the Esri Master License Agreement (MLA), and is bound by the terms of that agreement. You may redistribute and use this code without modification, provided you adhere to the terms of the MLA and include this copyright notice.

See use restrictions at http://www.esri.com/legal/pdfs/mla_e204_e300/english

For additional information, contact: Environmental Systems Research Institute, Inc. Attn: Contracts and Legal Services Department 380 New York Street Redlands, California, USA 92373 USA

email: contracts@esri.com

Contributing

Please read the contribute document.

Keywords

FAQs

Package last updated on 26 Jul 2019

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