Export your SVGs that are in your Figma project easily via CLI.
- You will need a DEV_TOKEN (See Step 5 of Setup)
- Your Icons are in a single Frame
- Each icon is a Figma Component (Select Icon and use the shortcut key ⌥⌘K)
Your SVGs will be generated in src/svg
folder
yarn install
- Select the frame your icons are in
- Copy the URL in the browser; it should look similar to
https://www.figma.com/file/abcASewbASmnas/Test?node-id=1%3123
- Run
node src/setupEnv.js
and paste in your URL copied from step 3 when prompted. This will generate a.env
file - Generate a DEV_TOKEN a.k.a Personal Access Token by going to Help and Account > Account Settings > Personal Access Token
- Add your DEV_TOKEN from step 5 into
.env
file - Run
node src/index.js
and your SVGs will be generated intosrc/svg
folder
- If you want to ignore / filter private components that start with a . or _, change the FILTER_PRIVATE_COMPONENTS variable to
true
. Thanks to lennertVanSever for their contribution to this
Figma API has a fixed number of requests (rate limits) you can call per minute. This script will process a 20 requests per 45 seconds to avoid hitting that limit.