mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
3094f05e98
* Optimize images before generating zip file * add changelog * refactor * fix lint
11 lines
306 B
TypeScript
11 lines
306 B
TypeScript
import { translateFills } from '@plugin/translators/fills';
|
|
|
|
import { ShapeAttributes } from '@ui/lib/types/shapes/shape';
|
|
|
|
export const transformFills = (
|
|
node: MinimalFillsMixin & DimensionAndPositionMixin
|
|
): Pick<ShapeAttributes, 'fills'> => {
|
|
return {
|
|
fills: translateFills(node.fills)
|
|
};
|
|
};
|