0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 21:53:27 -05:00
penpot-exporter-figma-plugin/ui-src/converters/createPenpotText.ts
2024-05-06 08:06:14 +02:00

10 lines
348 B
TypeScript

import { PenpotFile } from '@ui/lib/penpot';
import { TextShape } from '@ui/lib/types/shapes/textShape';
import { translateUiBlendMode } from '@ui/translators';
export const createPenpotText = (file: PenpotFile, { type, blendMode, ...rest }: TextShape) => {
file.createText({
blendMode: translateUiBlendMode(blendMode),
...rest
});
};