Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@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
:
import asSvgstore from '@figma-export/output-components-as-svgstore'
export default {
commands: [
['components', {
fileId: 'fzYhvQpqwhZDUImRz431Qo',
onlyFromPages: ['icons', 'unit-test'],
outputters: [
asSvgstore({
output: './output'
})
]
}],
]
}
output
is mandatory.
getIconId
and svgstoreConfig
are optional.
import asSvgstore from '@figma-export/output-components-as-svgstore'
asSvgstore({
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 )
We found that @figma-export/output-components-as-svgstore demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.