0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-22 23:38:42 -05:00
penpot-exporter-figma-plugin/ui-src/parser/creators/symbols/symbolStrokes.ts

16 lines
356 B
TypeScript
Raw Normal View History

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;
});
};