mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
3094f05e98
* Optimize images before generating zip file * add changelog * refactor * fix lint
18 lines
643 B
TypeScript
18 lines
643 B
TypeScript
import { PenpotFile } from '@ui/lib/types/penpotFile';
|
|
import { CircleShape } from '@ui/lib/types/shapes/circleShape';
|
|
import { parseFigmaId } from '@ui/parser';
|
|
import { symbolBlendMode, symbolFills, symbolStrokes } from '@ui/parser/creators/symbols';
|
|
|
|
export const createCircle = (
|
|
file: PenpotFile,
|
|
{ type, fills, strokes, blendMode, figmaId, figmaRelatedId, ...rest }: CircleShape
|
|
) => {
|
|
file.createCircle({
|
|
id: parseFigmaId(file, figmaId),
|
|
shapeRef: parseFigmaId(file, figmaRelatedId, true),
|
|
fills: symbolFills(fills),
|
|
strokes: symbolStrokes(strokes),
|
|
blendMode: symbolBlendMode(blendMode),
|
|
...rest
|
|
});
|
|
};
|