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/plugin-src/transformers/transformGroupNode.ts

18 lines
501 B
TypeScript
Raw Normal View History

2024-04-15 06:58:51 -05:00
import { transformDimensionAndPosition } from '@plugin/transformers/partials';
2024-04-15 07:06:38 -05:00
import { transformChildren } from '@plugin/transformers/partials';
2024-04-15 06:58:51 -05:00
import { GroupShape } from '@ui/lib/types/group/groupShape';
export const transformGroupNode = async (
node: GroupNode,
baseX: number,
baseY: number
): Promise<GroupShape> => {
return {
type: 'group',
name: node.name,
2024-04-15 07:06:38 -05:00
...(await transformChildren(node, baseX, baseY)),
2024-04-15 06:58:51 -05:00
...transformDimensionAndPosition(node, baseX, baseY)
};
};