pie-icons-webc
Shared PIE Icon Components built using Lit Web Components.
This package provides the PIE iconset as importable Web Components, to ensure icons are used to PIE guidelines for sizing.
The base pie-icons package is used to provide the SVGs that are compiled into Lit web components that can be imported into any application.
Usage
Installation
Add the module to your project
yarn add @justeattakeaway/pie-icons-webc
Usage
Vanilla Javascript
- Import a specific icon from its entry point (recommended)
import { IconCalendarFilledLarge } from '@justeattakeaway/pie-icons-webc/IconCalendarFilledLarge';
function renderIcon() {
const iconElement = new IconCalendarFilledLarge();
document.body.appendChild(iconElement);
}
- Import a specific icon from its entry point without a reference (recommended)
import '@justeattakeaway/pie-icons-webc/IconCalendarFilledLarge';
- Importing all icons at once (not recommended)
import * as icons from '@justeattakeaway/pie-icons-webc';
function renderIcon() {
const iconElement = new icons.IconCalendarFilledLarge();
document.body.appendChild(iconElement);
}
[!WARNING]
While it is also possible to import individual components from the overall bundle, we don't recommend this because
it is likely that the import will be tree-shaken unless you are referencing the imported object in your code.
import { IconAppRestaurant } from '@justeattakeaway/pie-icons-webc';
import { IconAppRestaurant } from '@justeattakeaway/pie-icons-webc';
Lit Components
import '@justeattakeaway/pie-icons-webc/IconAppRestaurant';
export class MyAmazingComponent extends LitElement {
render () {
return html`
<h2>
This is a heading
<icon-app-restaurant size="xl"></icon-app-restaurant>
</h2>`;
}
}
React
To import from the package root:
import { IconAlertTriangleLarge, IconCalendar } from "@justeattakeaway/pie-icons-webc/dist/react";
import { IconAlertTriangleLarge, IconCalendar } from "@justeattakeaway/pie-icons-webc/react";
export default function App() {
return (
<div className="App">
<IconCalendar />
<IconAlertTriangleLarge fill={PIE_ALIAS_COLOR_TOKEN} />
</div>
);
}
To import a single icon:
import { IconCalendar } from "@justeattakeaway/pie-icons-webc/dist/react/IconCalendar";
import { IconCalendar } from "@justeattakeaway/pie-icons-webc/react/IconCalendar";
export default function App() {
return (
<div className="App">
<IconCalendar />
</div>
);
}
Vue
This package requires Node 18+, therefore, if you are using a lower version of Node please use our native Vue component package – pie-icons-vue.
To import from the package root:
import { IconAlertTriangleLarge, IconCalendar } from "@justeattakeaway/pie-icons-webc";
export default function App() {
return (
<div className="App">
<icon-calendar></icon-calendar>
<icon-alert-triangle-large></icon-alert-triangle-large>
</div>
);
}
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>
<icon-alert-triangle-large size="80"></icon-alert-triangle-large>
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/IconCalendar'
.
Browser Support
The component extends @justeattakeaway/browserslist-config-pie 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.