mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
5d7263bdbf
* Allow rotation for Ellipses, Rectangles and Texts * undo rotations for texts * Translate rotations for ellipses and rectangles
7 lines
229 B
TypeScript
7 lines
229 B
TypeScript
import { ShapeAttributes } from '@ui/lib/types/shapes/shape';
|
|
|
|
export const transformProportion = (node: LayoutMixin): Pick<ShapeAttributes, 'proportionLock'> => {
|
|
return {
|
|
proportionLock: node.constrainProportions
|
|
};
|
|
};
|