mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-20 14:32:31 -05:00
7 lines
223 B
TypeScript
7 lines
223 B
TypeScript
import { ShapeAttributes } from '@ui/lib/types/shape/shapeAttributes';
|
|
|
|
export const transformProportion = (node: LayoutMixin): Partial<ShapeAttributes> => {
|
|
return {
|
|
proportionLock: node.constrainProportions
|
|
};
|
|
};
|