mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-03 13:20:37 -05:00
f726dc9cec
* Add image library to optimize performance * fix and improve * Add changelog and improve naming * refactor * improve * fix todos
24 lines
737 B
TypeScript
24 lines
737 B
TypeScript
import { PenpotFile } from '@ui/lib/types/penpotFile';
|
|
import { BoolShape } from '@ui/lib/types/shapes/boolShape';
|
|
import { parseFigmaId } from '@ui/parser';
|
|
import { symbolBlendMode, symbolBoolType, symbolFills } from '@ui/parser/creators/symbols';
|
|
|
|
import { createItems } from '.';
|
|
|
|
export const createBool = (
|
|
file: PenpotFile,
|
|
{ type, fills, boolType, blendMode, figmaId, figmaRelatedId, children = [], ...rest }: BoolShape
|
|
) => {
|
|
file.addBool({
|
|
id: parseFigmaId(file, figmaId),
|
|
shapeRef: parseFigmaId(file, figmaRelatedId, true),
|
|
fills: symbolFills(fills),
|
|
blendMode: symbolBlendMode(blendMode),
|
|
boolType: symbolBoolType(boolType),
|
|
...rest
|
|
});
|
|
|
|
createItems(file, children);
|
|
|
|
file.closeBool();
|
|
};
|