0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-11 01:20:16 -05:00
penpot-exporter-figma-plugin/plugin-src/transformers/partials/transformProportion.ts

8 lines
223 B
TypeScript
Raw Normal View History

import { ShapeAttributes } from '@ui/lib/types/shape/shapeAttributes';
export const transformProportion = (node: LayoutMixin): Partial<ShapeAttributes> => {
return {
proportionLock: node.constrainProportions
};
};