0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-03 13:20:37 -05:00
penpot-exporter-figma-plugin/ui-src/converters/createPenpotRectangle.ts
2024-04-15 11:36:37 +00:00

12 lines
427 B
TypeScript

import { PenpotFile } from '@ui/lib/penpot';
import { RECT_TYPE } from '@ui/lib/types/rect/rectAttributes';
import { RectShape } from '@ui/lib/types/rect/rectShape';
import { translateFillGradients } from '@ui/translators';
export const createPenpotRectangle = (file: PenpotFile, { type, fills, ...rest }: RectShape) => {
file.createRect({
type: RECT_TYPE,
fills: translateFillGradients(fills),
...rest
});
};