mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
f726dc9cec
* Add image library to optimize performance * fix and improve * Add changelog and improve naming * refactor * improve * fix todos
18 lines
641 B
TypeScript
18 lines
641 B
TypeScript
import { PenpotFile } from '@ui/lib/types/penpotFile';
|
|
import { PathShape } from '@ui/lib/types/shapes/pathShape';
|
|
import { parseFigmaId } from '@ui/parser';
|
|
import { symbolBlendMode, symbolFills, symbolPathContent } from '@ui/parser/creators/symbols';
|
|
|
|
export const createPath = (
|
|
file: PenpotFile,
|
|
{ type, fills, blendMode, content, figmaId, figmaRelatedId, ...rest }: PathShape
|
|
) => {
|
|
file.createPath({
|
|
id: parseFigmaId(file, figmaId),
|
|
shapeRef: parseFigmaId(file, figmaRelatedId, true),
|
|
fills: symbolFills(fills),
|
|
blendMode: symbolBlendMode(blendMode),
|
|
content: symbolPathContent(content),
|
|
...rest
|
|
});
|
|
};
|