mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-05 06:10:52 -05:00
7b3192936e
* wip * wip * wipo * more structure * wip * id library wip * wip * main instance working * improvements * fix node order * refactor * remove not used method * refactor * fix component set translation * refactor * add changelog * penpot lib update --------- Co-authored-by: Jordi Sala Morales <jordism91@gmail.com>
22 lines
663 B
TypeScript
22 lines
663 B
TypeScript
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
|
|
});
|
|
};
|