mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-23 14:14:05 -05:00
8 lines
275 B
TypeScript
8 lines
275 B
TypeScript
import { ShapeAttributes } from '@ui/lib/types/shape/shapeAttributes';
|
|
|
|
export const transformSceneNode = (node: SceneNodeMixin): Partial<ShapeAttributes> => {
|
|
return {
|
|
blocked: node.locked,
|
|
hidden: false // @TODO: check this. it won't export if we hide it
|
|
};
|
|
};
|