soccer-jersey-fork 1.0.52 → 1.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/patterns/patterns.js +8 -2
- package/package.json +1 -1
package/lib/patterns/patterns.js
CHANGED
|
@@ -254,6 +254,12 @@ export const drawShortsSideStriped = (page, primaryColor, secondaryColor) => {
|
|
|
254
254
|
});
|
|
255
255
|
};
|
|
256
256
|
export function addShoulderStriped(page, color) {
|
|
257
|
-
page
|
|
258
|
-
|
|
257
|
+
page
|
|
258
|
+
.path(`m 0 34, l 16.5 -26, 18 -8`)
|
|
259
|
+
.fill("none")
|
|
260
|
+
.stroke({ width: 2, color, linecap: "butt" });
|
|
261
|
+
page
|
|
262
|
+
.path(`m 100 34 l -16.5 -26, -18 -8`)
|
|
263
|
+
.fill("none")
|
|
264
|
+
.stroke({ width: 2, color, linecap: "butt" });
|
|
259
265
|
}
|