0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-09 08:30:08 -05:00
penpot-exporter-figma-plugin/ui-src/parser/creators/createPath.ts

23 lines
663 B
TypeScript
Raw Normal View History

import { PenpotFile } from '@ui/lib/types/penpotFile';
import { PathShape } from '@ui/lib/types/shapes/pathShape';
import { parseFigmaId } from '@ui/parser';
import {
symbolBlendMode,
symbolFillGradients,
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: symbolFillGradients(fills),
blendMode: symbolBlendMode(blendMode),
content: symbolPathContent(content),
...rest
});
};