mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
15 lines
437 B
TypeScript
15 lines
437 B
TypeScript
import { PenpotFile } from '@ui/lib/penpot';
|
|
import { CircleShape } from '@ui/lib/types/shapes/circleShape';
|
|
|
|
import { translateFillGradients, translateUiBlendMode } from '../translators';
|
|
|
|
export const createPenpotCircle = (
|
|
file: PenpotFile,
|
|
{ type, fills, blendMode, ...rest }: CircleShape
|
|
) => {
|
|
file.createCircle({
|
|
fills: translateFillGradients(fills),
|
|
blendMode: translateUiBlendMode(blendMode),
|
|
...rest
|
|
});
|
|
};
|