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/parser/creators/createGroup.ts
Jordi Sala Morales 738ebfeffe
Remove symbols when possible (#173)
* remove symbols for blend mode

* remove symbol for gradients

* optimize symbols for path contents

* optimize code

* remove symbols
2024-06-18 11:20:51 +02:00

19 lines
509 B
TypeScript

import { PenpotFile } from '@ui/lib/types/penpotFile';
import { GroupShape } from '@ui/lib/types/shapes/groupShape';
import { parseFigmaId } from '@ui/parser';
import { createItems } from '.';
export const createGroup = (
file: PenpotFile,
{ type, children = [], figmaId, figmaRelatedId, ...shape }: GroupShape
) => {
shape.id = parseFigmaId(file, figmaId);
shape.shapeRef = parseFigmaId(file, figmaRelatedId, true);
file.addGroup(shape);
createItems(file, children);
file.closeGroup();
};