Created
March 14, 2025 00:15
-
-
Save dabbott/fd83b1d6f4087890d7bbc89ef8bd1119 to your computer and use it in GitHub Desktop.
Figma to SVG
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default async function main({ inputs }) { | |
const components = Object.values(inputs.figma.components) | |
const files = {} | |
for (let component of components) { | |
files[`${component.name}.svg`] = { content: component.svgString } | |
} | |
return files; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment