mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
import { createFile } from '@ui/lib/penpot.js';
|
|
import { PenpotDocument } from '@ui/lib/types/penpotDocument';
|
|
|
|
import { createPenpotPage } from '.';
|
|
|
|
export const createPenpotFile = (node: PenpotDocument) => {
|
|
const file = createFile(node.name);
|
|
|
|
for (const page of node.children ?? []) {
|
|
createPenpotPage(file, page);
|
|
}
|
|
|
|
return file;
|
|
};
|