Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@justeattakeaway/pie-icons-webc
Advanced tools
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.
Add the module to your project
yarn add @justeattakeaway/pie-icons-webc
// 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
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:
Large
suffixRegular 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" />
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'
.
The component extends @justeat/browserslist-config-fozzie package for the list of browsers to support.
Before starting please read our contributing guide
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.
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.
You can check the list of all the icons on our documentation site.
FAQs
Shared PIE Icon Components built using [Lit Web Components](https://lit.dev/docs/).
The npm package @justeattakeaway/pie-icons-webc receives a total of 529 weekly downloads. As such, @justeattakeaway/pie-icons-webc popularity was classified as not popular.
We found that @justeattakeaway/pie-icons-webc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.