0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 21:53:27 -05:00
penpot-exporter-figma-plugin/ui-src/converters/createPenpotPage.ts

15 lines
374 B
TypeScript
Raw Permalink Normal View History

2024-05-13 03:12:58 -05:00
import { PenpotFile } from '@ui/lib/types/penpotFile';
import { PenpotPage } from '@ui/lib/types/penpotPage';
2024-04-08 10:50:01 -05:00
import { createPenpotItem } from '.';
export const createPenpotPage = (file: PenpotFile, node: PenpotPage) => {
file.addPage(node.name, node.options);
for (const child of node.children ?? []) {
createPenpotItem(file, child);
2024-04-08 10:50:01 -05:00
}
file.closePage();
2024-04-08 10:50:01 -05:00
};