mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-06 23:00:55 -05:00
16 lines
356 B
TypeScript
16 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;
|
||
|
});
|
||
|
};
|