0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-02-07 23:28:04 -05:00
penpot-exporter-figma-plugin/ui-src/converters/createPenpotImage.ts

7 lines
225 B
TypeScript
Raw Normal View History

import { PenpotFile } from '@ui/lib/penpot';
2024-05-06 08:06:14 +02:00
import { ImageShape } from '@ui/lib/types/shapes/imageShape';
2024-04-08 17:50:01 +02:00
export const createPenpotImage = (file: PenpotFile, { type, ...rest }: ImageShape) => {
2024-05-06 08:06:14 +02:00
file.createImage(rest);
2024-04-08 17:50:01 +02:00
};