0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-05 06:10:52 -05:00
penpot-exporter-figma-plugin/ui-src/parser/creators/symbols/symbolStrokes.ts
Jordi Sala Morales 3094f05e98
Optimize images before generating zip file (#141)
* Optimize images before generating zip file

* add changelog

* refactor

* fix lint
2024-06-05 12:36:49 +02:00

15 lines
356 B
TypeScript

import { Stroke } from '@ui/lib/types/utils/stroke';
import { symbolFillImage } from '.';
export const symbolStrokes = (strokes?: Stroke[]): Stroke[] | undefined => {
if (!strokes) return;
return strokes.map(stroke => {
if (stroke.strokeImage) {
stroke.strokeImage = symbolFillImage(stroke.strokeImage);
}
return stroke;
});
};