2024-05-13 03:12:58 -05:00
|
|
|
import { PenpotFile } from '@ui/lib/types/penpotFile';
|
2024-05-06 01:06:14 -05:00
|
|
|
import { CircleShape } from '@ui/lib/types/shapes/circleShape';
|
2024-05-30 10:54:37 -05:00
|
|
|
import { parseFigmaId } from '@ui/parser';
|
2024-06-18 04:20:51 -05:00
|
|
|
import { symbolFills, symbolStrokes } from '@ui/parser/creators/symbols';
|
2024-04-12 11:52:19 -05:00
|
|
|
|
2024-05-29 05:52:21 -05:00
|
|
|
export const createCircle = (
|
2024-04-15 08:47:41 -05:00
|
|
|
file: PenpotFile,
|
2024-06-18 04:20:51 -05:00
|
|
|
{ type, figmaId, figmaRelatedId, ...shape }: CircleShape
|
2024-04-15 08:47:41 -05:00
|
|
|
) => {
|
2024-06-18 04:20:51 -05:00
|
|
|
shape.id = parseFigmaId(file, figmaId);
|
|
|
|
shape.shapeRef = parseFigmaId(file, figmaRelatedId, true);
|
|
|
|
shape.fills = symbolFills(shape.fills);
|
|
|
|
shape.strokes = symbolStrokes(shape.strokes);
|
|
|
|
|
|
|
|
file.createCircle(shape);
|
2024-04-08 10:50:01 -05:00
|
|
|
};
|