0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 21:53:27 -05:00
penpot-exporter-figma-plugin/ui-src/converters/createPenpotRectangle.ts

15 lines
432 B
TypeScript
Raw Normal View History

import { PenpotFile } from '@ui/lib/penpot';
2024-05-06 01:06:14 -05:00
import { RectShape } from '@ui/lib/types/shapes/rectShape';
2024-04-15 07:03:30 -05:00
import { translateFillGradients, translateUiBlendMode } from '@ui/translators';
2024-04-08 10:50:01 -05:00
2024-04-15 07:03:30 -05:00
export const createPenpotRectangle = (
file: PenpotFile,
{ type, fills, blendMode, ...rest }: RectShape
) => {
file.createRect({
fills: translateFillGradients(fills),
2024-04-15 07:03:30 -05:00
blendMode: translateUiBlendMode(blendMode),
...rest
2024-04-08 10:50:01 -05:00
});
};