0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-18 13:32:28 -05:00
penpot-exporter-figma-plugin/ui-src/converters/createPenpotCircle.ts

18 lines
529 B
TypeScript
Raw Normal View History

import { PenpotFile } from '@ui/lib/penpot';
import { CIRCLE_TYPE } from '@ui/lib/types/circle/circleAttributes';
import { CircleShape } from '@ui/lib/types/circle/circleShape';
2024-04-12 18:52:19 +02:00
2024-04-15 15:47:41 +02:00
import { translateFillGradients, translateUiBlendMode } from '../translators';
2024-04-08 17:50:01 +02:00
2024-04-15 15:47:41 +02:00
export const createPenpotCircle = (
file: PenpotFile,
{ type, fills, blendMode, ...rest }: CircleShape
) => {
file.createCircle({
type: CIRCLE_TYPE,
fills: translateFillGradients(fills),
2024-04-15 15:47:41 +02:00
blendMode: translateUiBlendMode(blendMode),
...rest
2024-04-08 17:50:01 +02:00
});
};