mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
19 lines
443 B
TypeScript
19 lines
443 B
TypeScript
import { 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)
|
|
};
|
|
};
|