mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
02fa3363f5
* constraints translation * fix lint * fixes * fix vector constraints * fix lint
12 lines
425 B
TypeScript
12 lines
425 B
TypeScript
import { translateConstraintH, translateConstraintV } from '@plugin/translators';
|
|
|
|
import { ShapeAttributes } from '@ui/lib/types/shapes/shape';
|
|
|
|
export const transformConstraints = (
|
|
node: ConstraintMixin
|
|
): Pick<ShapeAttributes, 'constraintsH' | 'constraintsV'> => {
|
|
return {
|
|
constraintsH: translateConstraintH(node.constraints.horizontal),
|
|
constraintsV: translateConstraintV(node.constraints.vertical)
|
|
};
|
|
};
|