2024-05-13 03:12:58 -05:00
|
|
|
import { PenpotFile } from '@ui/lib/types/penpotFile';
|
2024-05-06 01:06:14 -05:00
|
|
|
import { RectShape } from '@ui/lib/types/shapes/rectShape';
|
2024-04-15 07:03:30 -05:00
|
|
|
import { translateFillGradients, translateUiBlendMode } from '@ui/translators';
|
2024-04-08 10:50:01 -05:00
|
|
|
|
2024-04-15 07:03:30 -05:00
|
|
|
export const createPenpotRectangle = (
|
|
|
|
file: PenpotFile,
|
|
|
|
{ type, fills, blendMode, ...rest }: RectShape
|
|
|
|
) => {
|
2024-04-12 06:55:42 -05:00
|
|
|
file.createRect({
|
|
|
|
fills: translateFillGradients(fills),
|
2024-04-15 07:03:30 -05:00
|
|
|
blendMode: translateUiBlendMode(blendMode),
|
2024-04-12 06:55:42 -05:00
|
|
|
...rest
|
2024-04-08 10:50:01 -05:00
|
|
|
});
|
|
|
|
};
|