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/plugin-src/transformers/transformRectangleNode.ts
2024-04-15 14:03:30 +02:00

20 lines
514 B
TypeScript

import { translateBlendMode, translateFills } from '@plugin/translators';
import { RectShape } from '@ui/lib/types/rect/rectShape';
export const transformRectangleNode = (
node: RectangleNode,
baseX: number,
baseY: number
): RectShape => {
return {
type: 'rect',
name: node.name,
x: node.x + baseX,
y: node.y + baseY,
width: node.width,
height: node.height,
fills: translateFills(node.fills, node.width, node.height),
blendMode: translateBlendMode(node.blendMode)
};
};