mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
import { PenpotFile } from '@ui/lib/penpot';
|
|
import { TEXT_TYPE } from '@ui/lib/types/text/textAttributes';
|
|
import { TextShape } from '@ui/lib/types/text/textShape';
|
|
|
|
export const createPenpotText = (file: PenpotFile, { type, ...rest }: TextShape) => {
|
|
file.createText({
|
|
type: TEXT_TYPE,
|
|
...rest
|
|
});
|
|
};
|