@trackunit/ui-icons 0.0.38-alpha-4849.1 → 0.0.39
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/ConstructionCone.js +2 -2
- package/ConstructionCone2.js +4 -4
- package/package.json +1 -1
package/ConstructionCone.js
CHANGED
|
@@ -9,9 +9,9 @@ const ConstructionCone = (props, svgRef) => jsx("svg", {
|
|
|
9
9
|
ref: svgRef,
|
|
10
10
|
...props,
|
|
11
11
|
children: jsx("path", {
|
|
12
|
-
|
|
12
|
+
fillRule: "evenodd",
|
|
13
13
|
d: "M9.043 2.709 7.433 8h5.134l-1.61-5.291c-.288-.945-1.626-.945-1.914 0ZM6.216 12l.609-2h6.35l.609 2H6.216Zm-.608 2L5 15.997H4a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2h-1L14.392 14H5.608Z",
|
|
14
|
-
|
|
14
|
+
clipRule: "evenodd"
|
|
15
15
|
})
|
|
16
16
|
});
|
|
17
17
|
|
package/ConstructionCone2.js
CHANGED
|
@@ -7,13 +7,13 @@ const ConstructionCone = (props, svgRef) => jsx("svg", {
|
|
|
7
7
|
fill: "none",
|
|
8
8
|
viewBox: "0 0 24 24",
|
|
9
9
|
stroke: "currentColor",
|
|
10
|
-
|
|
10
|
+
strokeWidth: "2",
|
|
11
11
|
ref: svgRef,
|
|
12
12
|
...props,
|
|
13
13
|
children: jsx("path", {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
strokeLinecap: "round",
|
|
15
|
+
strokeLinejoin: "round",
|
|
16
|
+
strokeWidth: "2",
|
|
17
17
|
d: "m6 20 1.5-4M18 20l-1.5-4M9 12l-.75 2-.75 2M9 12l.75-2 .75-2L12 4l1.5 4 .75 2 .75 2m-6 0h6m-7.5 4h9M15 12l.75 2 .75 2M4 20h16"
|
|
18
18
|
})
|
|
19
19
|
});
|