mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-03 13:20:37 -05:00
16 lines
514 B
TypeScript
16 lines
514 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, translateUiBlendMode } from '@ui/translators';
|
|
|
|
export const createPenpotRectangle = (
|
|
file: PenpotFile,
|
|
{ type, fills, blendMode, ...rest }: RectShape
|
|
) => {
|
|
file.createRect({
|
|
type: RECT_TYPE,
|
|
fills: translateFillGradients(fills),
|
|
blendMode: translateUiBlendMode(blendMode),
|
|
...rest
|
|
});
|
|
};
|