mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-20 06:22:38 -05:00
6 lines
225 B
TypeScript
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);
|
|
};
|