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.
@proxy-figma-export/output-components-as-svgstore
Advanced tools
Outputter for @figma-export that exports components in svg file ( SVG Sprites )
Outputter for @figma-export that exports components in svg file (
SVG Sprites
).
With this outputter you can export all components as <symbol>
inside a .svg
file named with the page name.
This is a sample of the output:
$ tree output/
# output/
# ├── icons.svg
# └── unit-test.svg
Probably you already know what CSS Sprites are, basically you can combine multiple images into a single image file and use it on a website.
SVG Sprites are very similar, but use svg instead of png.
You can read more on Icon System with SVG Sprites article where you can find how to use them.
You can easily add this outputter to your .figmaexportrc.js
:
module.exports = {
commands: [
['components', {
fileId: 'fzYhvQpqwhZDUImRz431Qo',
onlyFromPages: ['icons', 'unit-test'],
outputters: [
require('@proxy-figma-export/output-components-as-svgstore')({
output: './output'
})
]
}],
]
}
output
is mandatory.
getIconId
and svgstoreConfig
are optional.
require('@proxy-figma-export/output-components-as-svgstore')({
output: './output',
getIconId: (options) => `${options.pageName}/${options.componentName}`,
svgstoreConfig: {},
})
defaults may change, please refer to
./src/index.ts
svgstoreConfig
is the svgstore configuration object.
Using npm:
npm install --save-dev @figma-export/output-components-as-svgstore
or using yarn:
yarn add @figma-export/output-components-as-svgstore --dev
FAQs
Outputter for @figma-export that exports components in svg file ( SVG Sprites )
The npm package @proxy-figma-export/output-components-as-svgstore receives a total of 5 weekly downloads. As such, @proxy-figma-export/output-components-as-svgstore popularity was classified as not popular.
We found that @proxy-figma-export/output-components-as-svgstore demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.