Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@equinor/eds-icons
Advanced tools
This package is a collection of the system icons
from the Equinor Design System as javascript objects.
npm install @equinor/eds-icons
If you use Typescript, make sure you have typescript >= 3.8 as a devDependency:
npm install typescript --save-dev
Import svg data:
import { save } from "@equinor/eds-icons"
We have developed a react component to simplify use of the EDS icons library within react.
import { Icon } from '@equinor/eds-core-react'
import { save } from '@equinor/eds-icons'
// Use library approach
Icon.add({ save }) // (this needs only be done once)
<Icon name="save" />
// OR
// Use directly via data prop:
<Icon data={save} />
You can render the EDS icons using plain svg.
⚠️ Due to how Figma parses and exports svg icons the following attributes must be added to your <path>
element; fill-rule="evenodd" clip-rule="evenodd"
.
These are not included to reduce bundle size as they are needed for every icon.
import { save } from '@equinor/eds-icons'
<svg viewBox={`0 0 ${save.width} ${save.height}`}>
<path d={save.svgPathData} fill-rule="evenodd" clip-rule="evenodd">
</svg>
Use EDS Assets in Figma(Equinor Figma account needed🔒) or our icon preview in Storybook for icon names. Spaces in icon names are replaced with underscores.
star-filled -> star_filled
.
{
name: 'star_filled',
prefix: 'eds',
height: '24',
width: '24',
svgPathData: 'M12 16.067l4.947 3.6-1.894-5.814L20 10.334h-6.067l-1.933-6-1.933 6H4l4.947 3.52-1.894 5.814 4.947-3.6z',
}
If you are using NodeJS 13+ for module loading, it now has native ES modules support. Add "type":"module"
to your apps package.json
to enable this.
If you get a syntax error trying to import ES module, try importing the CJS module as not all loaders have support for ES modules yet
The EDS system icons are built on a copy of the Outlined Material Design icons provided open-source by Google. The icons have been customised and renamed for Equinor’s use.
FAQs
Icons from the Equinor Design System
The npm package @equinor/eds-icons receives a total of 7,882 weekly downloads. As such, @equinor/eds-icons popularity was classified as popular.
We found that @equinor/eds-icons demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.