0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 13:43:03 -05:00
penpot-exporter-figma-plugin/ui-src/converters/createPenpotText.ts
Alex Sánchez 54df5ead1e
Fix Text Image Fills (#102)
* fix text image fills (pending on develop release in penpot app)

* changeset
2024-05-13 13:23:28 +02:00

10 lines
358 B
TypeScript

import { PenpotFile } from '@ui/lib/types/penpotFile';
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
});
};