mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
13 lines
489 B
TypeScript
13 lines
489 B
TypeScript
import { PenpotFile } from '@ui/lib/penpot';
|
|
import { RECT_TYPE } from '@ui/lib/types/rect/rectAttributes';
|
|
import { RectShape } from '@ui/lib/types/rect/rectShape';
|
|
import { translateFillGradients } from '@ui/translators';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export const createPenpotRectangle = (file: PenpotFile, { type, fills, ...rest }: RectShape) => {
|
|
file.createRect({
|
|
type: RECT_TYPE,
|
|
fills: translateFillGradients(fills),
|
|
...rest
|
|
});
|
|
};
|