mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
21 lines
516 B
TypeScript
21 lines
516 B
TypeScript
import { PenpotFile } from '@ui/lib/types/penpotFile';
|
|
import { GroupShape } from '@ui/lib/types/shapes/groupShape';
|
|
import { translateUiBlendMode } from '@ui/translators';
|
|
|
|
import { createPenpotItem } from '.';
|
|
|
|
export const createPenpotGroup = (
|
|
file: PenpotFile,
|
|
{ type, blendMode, children = [], ...rest }: GroupShape
|
|
) => {
|
|
file.addGroup({
|
|
blendMode: translateUiBlendMode(blendMode),
|
|
...rest
|
|
});
|
|
|
|
for (const child of children) {
|
|
createPenpotItem(file, child);
|
|
}
|
|
|
|
file.closeGroup();
|
|
};
|