6.0.1 • Published 1 year ago

@figma-export/output-components-as-svgstore v6.0.1

Weekly downloads
37
License
MIT
Repository
github
Last release
1 year ago

@figma-export/output-components-as-svgstore

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.

.figmaexportrc.js

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.

Install

Using npm:

npm install --save-dev @figma-export/output-components-as-svgstore

or using yarn:

yarn add @figma-export/output-components-as-svgstore --dev
6.0.1

1 year ago

6.0.0

1 year ago

6.0.0-beta.0

1 year ago

5.0.1

1 year ago

5.0.0

1 year ago

4.8.0

1 year ago

4.8.0-alpha.4

1 year ago

4.8.0-alpha.1

1 year ago

4.8.0-alpha.2

1 year ago

4.8.0-alpha.3

1 year ago

4.8.0-alpha.0

1 year ago

4.7.0

2 years ago

4.7.0-alpha.0

2 years ago

4.6.0

2 years ago

4.5.0

3 years ago

4.4.0

3 years ago

4.0.0-alpha.1

4 years ago

4.0.1

4 years ago

4.0.0

4 years ago

4.2.0

3 years ago

4.0.0-alpha.0

4 years ago

3.5.0

4 years ago

3.4.0

4 years ago

3.3.1

4 years ago

3.3.0

4 years ago

3.2.0

5 years ago

3.1.0

5 years ago

3.0.0

5 years ago

3.0.0-alpha.5

5 years ago

3.0.0-alpha.4

5 years ago

3.0.0-alpha.3

5 years ago

3.0.0-alpha.2

5 years ago

3.0.0-alpha.1

5 years ago

3.0.0-alpha.0

5 years ago

2.2.0

5 years ago

2.1.1

5 years ago

2.1.0

5 years ago

2.0.0

5 years ago

2.0.0-alpha.3

5 years ago

2.0.0-alpha.0

5 years ago

2.0.0-alpha.1

5 years ago

1.1.1

5 years ago

1.1.0

6 years ago