Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@justeattakeaway/pie-icons-webc

Package Overview
Dependencies
Maintainers
9
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@justeattakeaway/pie-icons-webc

Shared PIE Icon Components for Web Components.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
529
decreased by-37.1%
Maintainers
9
Weekly downloads
 
Created
Source

pie-icons-webc

Shared PIE Icon Components for Web Components.

This package generates a Web Component iconset for applications using the base pie-icons package. The SVGs in pie-icons are compiled into web components that can be imported into applications.


npm version


Usage

Installation

Add the module to your project

yarn add @justeattakeaway/pie-icons-webc

Applications

// Only import what you need!
import { IconAppRestaurant, IconAppRestaurantLarge } from '@justeattakeaway/pie-icons-webc';

Within the context of a Lit app, that will look like:

import { IconAppRestaurant } from '@justeattakeaway/pie-icons-webc';
export { IconAppRestaurant }

export class IconButton extends LitElement {
  render () {
    return html`
      <button>
        <icon-app-restaurant size="xs" />
      </button>`;
  }
}

If you require icons for a React app, please head to pie-icons-react

If you require icons for a Vue app, please head to pie-icons-vue

Props

Icons accept any standard attribute, except for width and height since those are set implicitly by using the size prop.

size

Icons are made available in different size variants:

  • regular
  • large, when its name has the Large suffix

Regular icons default size is xs and can use one of the following pre-determined values for size: xs, s, m, l, xl, and xxl. You can learn more about regular icon sizes here.

Large icons size default and minimum value is 32. Values larger than the minimum must be multiples of 8, otherwise will be automatically rounded. You can learn more about large icon sizes here.

Example:

<icon-alert-triangle size="s" />
<icon-alert-triangle-large size="80" />

Tree shaking

By using ES imports like import { IconCalendar } from '@justeattakeaway/pie-icons-webc' with Webpack v4+ or Rollup, unused exports in this module will be automatically eliminated.

If you can't use a tree-shaking compatible build tool, then you can use the per-file icons from the /icons directory, e.g. import IconCalendar from '@justeattakeaway/pie-icons-webc/icons/IconCalendar'.

Browser Support

The component extends @justeat/browserslist-config-fozzie package for the list of browsers to support.

Contributing

Before starting please read our contributing guide

Adding new icons

Icons should be added as SVGs to the main pie-icons package and published, before simply incrementing the dependency of pie-icons in the pie-icons-webc package, to generate the new set of Web Components.

The PIE iconset is managed by our PIE design team and new icon requests should go through them to ensure that they are designed in-line with our standards and guildelines. Please reach out to PIE design system team using #help-designsystem slack channel.

Building the Module

Run yarn build --filter=pie-icons-webc from the project level or yarn turbo run build --filter=pie-icons-webc from the root level to compile the module.

Icon list

You can check the list of all the icons on our documentation site.

Keywords

FAQs

Package last updated on 03 Jul 2023

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