mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
14 lines
504 B
TypeScript
14 lines
504 B
TypeScript
import { PenpotFile } from '@ui/lib/penpot';
|
|
import { CIRCLE_TYPE } from '@ui/lib/types/circle/circleAttributes';
|
|
import { CircleShape } from '@ui/lib/types/circle/circleShape';
|
|
|
|
import { translateFillGradients } from '../translators';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export const createPenpotCircle = (file: PenpotFile, { type, fills, ...rest }: CircleShape) => {
|
|
file.createCircle({
|
|
type: CIRCLE_TYPE,
|
|
fills: translateFillGradients(fills),
|
|
...rest
|
|
});
|
|
};
|