0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-20 06:22:38 -05:00
penpot-exporter-figma-plugin/ui-src/converters/createPenpotImage.ts
2024-05-06 08:06:14 +02:00

6 lines
225 B
TypeScript

import { PenpotFile } from '@ui/lib/penpot';
import { ImageShape } from '@ui/lib/types/shapes/imageShape';
export const createPenpotImage = (file: PenpotFile, { type, ...rest }: ImageShape) => {
file.createImage(rest);
};