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 }); };