Socket
Socket
Sign inDemoInstall

@material/mwc-icon

Package Overview
Dependencies
Maintainers
13
Versions
722
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@material/mwc-icon

A [Material Components](https://material.io/components/) icon implementation using [Web Components](https://www.webcomponents.org/introduction)


Version published
Weekly downloads
54K
decreased by-0.94%
Maintainers
13
Weekly downloads
 
Created
Source

mwc-icon

A Material Components icon implementation using Web Components

Getting started

  • The easiest way to try out mwc-icon is to use one of these online tools:

  • You can also copy this HTML file into a local file and run it in any browser that supports JavaScript Modules.

  • When you're ready to use mwc-icon in a project, install it via npm. To run the project in the browser, a module-compatible toolctain is required. We recommend installing the Polymer CLI and using its development server as follows.

    1. Ensure the webcomponents polyfills are included in your HTML page

      • Install webcomponents polyfills

        npm i @webcomponents/webcomponentsjs

      • Add webcomponents polyfills to your HTML page

        <script src="@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>

    2. Add mwc-icon to your project:

      npm i @material/mwc-icon

    3. Import the mwc-icon definition into your HTML page:

      <script type="module" src="@material/mwc-icon/index.js"></script>

      Or into your module script:

      import {Icon} from "@material/mwc-icon"

    4. Create an instance of mwc-icon in your HTML page, or via any framework that supports rendering Custom Elements:

      <mwc-icon>sentiment_very_satisfied</mwc-icon>

    5. Install the Polymer CLI:

      npm i -g polymer-cli

    6. Run the development server and open a browser pointing to its URL:

      polymer serve

    mwc-icon is published on npm using JavaScript Modules. This means it can take advantage of the standard native JavaScript module loader available in all current major browsers.

    However, since mwc-icon uses npm convention to reference dependencies by name, a light transform to rewrite specifiers to URLs is required to get it to run in the browser. The polymer-cli's development server polymer serve automatically handles this transform.

    Tools like WebPack and Rollup can also be used to serve and/or bundle mwc-icon.

Supported Browsers

The last 2 versions of all modern browsers are supported, including Chrome, Safari, Opera, Firefox, Edge. In addition, Internet Explorer 11 is also supported.

FAQs

Package last updated on 26 Mar 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