@trackunit/ui-icons 0.0.47 → 0.0.49
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/Battery.js +4 -4
- package/Battery2.js +4 -4
- package/BatteryCharging.js +4 -4
- package/BatteryCharging2.js +4 -4
- package/BatteryFull.js +4 -4
- package/BatteryFull2.js +4 -4
- package/BatteryLow.js +4 -4
- package/BatteryLow2.js +4 -4
- package/BatteryMedium.js +4 -4
- package/BatteryMedium2.js +4 -4
- package/Bluetooth.js +4 -4
- package/Bluetooth2.js +4 -4
- package/BluetoothOff.js +4 -4
- package/BluetoothOff2.js +4 -4
- package/Bucket.js +4 -4
- package/Bucket2.js +4 -4
- package/Bug.js +4 -4
- package/Bug2.js +4 -4
- package/Compass.js +4 -4
- package/Compass2.js +4 -4
- package/ConcreteMixer.js +4 -4
- package/ConcreteMixer2.js +4 -4
- package/ConstructionCone.js +4 -4
- package/ConstructionCone2.js +4 -4
- package/DemolitionHammer.js +4 -4
- package/DemolitionHammer2.js +4 -4
- package/Directions.js +4 -4
- package/Directions2.js +4 -4
- package/Excavator.js +4 -4
- package/Excavator2.js +4 -4
- package/FitToHeight.js +4 -4
- package/FitToHeight2.js +4 -4
- package/FitToWidth.js +4 -4
- package/FitToWidth2.js +4 -4
- package/Gps.js +4 -4
- package/Gps2.js +4 -4
- package/Hardhat.js +4 -4
- package/Hardhat2.js +4 -4
- package/Hierarchy.js +4 -4
- package/Hierarchy2.js +4 -4
- package/Plug.js +4 -4
- package/Plug2.js +4 -4
- package/Timeline.js +4 -4
- package/Timeline1.js +4 -4
- package/Timeline12.js +4 -4
- package/Timeline2.js +4 -4
- package/Wrench.js +4 -4
- package/Wrench2.js +4 -4
- package/Zone.js +4 -4
- package/Zone2.js +4 -4
- package/index.js +4 -0
- package/package.json +1 -1
package/Battery.js
CHANGED
|
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const Battery = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
className: "h-5 w-5",
|
|
9
9
|
viewBox: "0 0 20 20",
|
|
10
10
|
width: props.width,
|
|
11
11
|
height: props.height,
|
|
12
|
-
ref: svgRef
|
|
13
|
-
|
|
12
|
+
ref: svgRef
|
|
13
|
+
}, props, {
|
|
14
14
|
children: jsx("path", {
|
|
15
15
|
fillRule: "evenodd",
|
|
16
16
|
d: "M7 4a1 1 0 0 0-2 0v1H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1V4a1 1 0 1 0-2 0v1H7V4Zm4.14 3.232a1 1 0 0 1 .128 1.408L10.135 10H12a1 1 0 0 1 .768 1.64l-2.5 3a1 1 0 1 1-1.536-1.28L9.865 12H8a1 1 0 0 1-.768-1.64l2.5-3a1 1 0 0 1 1.408-.128Z",
|
|
17
17
|
clipRule: "evenodd"
|
|
18
18
|
})
|
|
19
|
-
});
|
|
19
|
+
}));
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
const ForwardRef = React.forwardRef(Battery);
|
package/Battery2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const Battery = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const Battery = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
d: "m11.5 16 2.5-3h-4l2.5-3M16 6h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m8 0V4m0 2H8m0 0V4"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(Battery);
|
package/BatteryCharging.js
CHANGED
|
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const BatteryCharging = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
className: "h-5 w-5",
|
|
9
9
|
viewBox: "0 0 20 20",
|
|
10
10
|
width: props.width,
|
|
11
11
|
height: props.height,
|
|
12
|
-
ref: svgRef
|
|
13
|
-
|
|
12
|
+
ref: svgRef
|
|
13
|
+
}, props, {
|
|
14
14
|
children: jsx("path", {
|
|
15
15
|
fillRule: "evenodd",
|
|
16
16
|
d: "M2 6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v2h.5A1.5 1.5 0 0 1 18 9.5v1a1.5 1.5 0 0 1-1.5 1.5H16v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm8.14.232a1 1 0 0 1 .128 1.408L9.135 9H11a1 1 0 0 1 .768 1.64l-2.5 3a1 1 0 1 1-1.536-1.28L8.865 11H7a1 1 0 0 1-.768-1.64l2.5-3a1 1 0 0 1 1.408-.128Z",
|
|
17
17
|
clipRule: "evenodd"
|
|
18
18
|
})
|
|
19
|
-
});
|
|
19
|
+
}));
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
const ForwardRef = React.forwardRef(BatteryCharging);
|
package/BatteryCharging2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const BatteryCharging = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const BatteryCharging = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
d: "M19 10.5h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1M10.5 15l2.5-3H9l2.5-3M5.639 19h10.555C17.652 19 19 17.657 19 16V8c0-1.657-1.348-3-2.806-3H5.64C4.18 5 3 6.343 3 8v8c0 1.657 1.181 3 2.639 3Z"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(BatteryCharging);
|
package/BatteryFull.js
CHANGED
|
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const BatteryFull = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
className: "h-5 w-5",
|
|
9
9
|
viewBox: "0 0 20 20",
|
|
10
10
|
width: props.width,
|
|
11
11
|
height: props.height,
|
|
12
|
-
ref: svgRef
|
|
13
|
-
|
|
12
|
+
ref: svgRef
|
|
13
|
+
}, props, {
|
|
14
14
|
children: jsx("path", {
|
|
15
15
|
fillRule: "evenodd",
|
|
16
16
|
d: "M2 6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v2h.5A1.5 1.5 0 0 1 18 9.5v1a1.5 1.5 0 0 1-1.5 1.5H16v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm12 1a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0V7ZM5 6a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1Zm5 1a1 1 0 0 0-2 0v6a1 1 0 1 0 2 0V7Z",
|
|
17
17
|
clipRule: "evenodd"
|
|
18
18
|
})
|
|
19
|
-
});
|
|
19
|
+
}));
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
const ForwardRef = React.forwardRef(BatteryFull);
|
package/BatteryFull2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const BatteryFull = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const BatteryFull = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
d: "M15 9v6m-4-6v6M7 9v6m12-4.5h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1M5.639 19h10.555C17.652 19 19 17.657 19 16V8c0-1.657-1.348-3-2.806-3H5.64C4.18 5 3 6.343 3 8v8c0 1.657 1.181 3 2.639 3Z"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(BatteryFull);
|
package/BatteryLow.js
CHANGED
|
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const BatteryLow = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
className: "h-5 w-5",
|
|
9
9
|
viewBox: "0 0 20 20",
|
|
10
10
|
width: props.width,
|
|
11
11
|
height: props.height,
|
|
12
|
-
ref: svgRef
|
|
13
|
-
|
|
12
|
+
ref: svgRef
|
|
13
|
+
}, props, {
|
|
14
14
|
children: jsx("path", {
|
|
15
15
|
fillRule: "evenodd",
|
|
16
16
|
d: "M2 6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v2h.5A1.5 1.5 0 0 1 18 9.5v1a1.5 1.5 0 0 1-1.5 1.5H16v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm3 0a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1Z",
|
|
17
17
|
clipRule: "evenodd"
|
|
18
18
|
})
|
|
19
|
-
});
|
|
19
|
+
}));
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
const ForwardRef = React.forwardRef(BatteryLow);
|
package/BatteryLow2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const BatteryLow = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const BatteryLow = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
d: "M7 9v6m12-4.5h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1M5.639 19h10.555C17.652 19 19 17.657 19 16V8c0-1.657-1.348-3-2.806-3H5.64C4.18 5 3 6.343 3 8v8c0 1.657 1.181 3 2.639 3Z"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(BatteryLow);
|
package/BatteryMedium.js
CHANGED
|
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const BatteryMedium = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
className: "h-5 w-5",
|
|
9
9
|
viewBox: "0 0 20 20",
|
|
10
10
|
width: props.width,
|
|
11
11
|
height: props.height,
|
|
12
|
-
ref: svgRef
|
|
13
|
-
|
|
12
|
+
ref: svgRef
|
|
13
|
+
}, props, {
|
|
14
14
|
children: jsx("path", {
|
|
15
15
|
fillRule: "evenodd",
|
|
16
16
|
d: "M4 4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-2h.5a1.5 1.5 0 0 0 1.5-1.5v-1A1.5 1.5 0 0 0 16.5 8H16V6a2 2 0 0 0-2-2H4Zm2 3a1 1 0 0 0-2 0v6a1 1 0 1 0 2 0V7Zm3-1a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1Z",
|
|
17
17
|
clipRule: "evenodd"
|
|
18
18
|
})
|
|
19
|
-
});
|
|
19
|
+
}));
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
const ForwardRef = React.forwardRef(BatteryMedium);
|
package/BatteryMedium2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const BatteryMedium = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const BatteryMedium = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
d: "M11 9v6M7 9v6m12-4.5h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1M5.639 19h10.555C17.652 19 19 17.657 19 16V8c0-1.657-1.348-3-2.806-3H5.64C4.18 5 3 6.343 3 8v8c0 1.657 1.181 3 2.639 3Z"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(BatteryMedium);
|
package/Bluetooth.js
CHANGED
|
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const Bluetooth = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
className: "h-5 w-5",
|
|
9
9
|
viewBox: "0 0 20 20",
|
|
10
10
|
width: props.width,
|
|
11
11
|
height: props.height,
|
|
12
|
-
ref: svgRef
|
|
13
|
-
|
|
12
|
+
ref: svgRef
|
|
13
|
+
}, props, {
|
|
14
14
|
children: jsx("path", {
|
|
15
15
|
fillRule: "evenodd",
|
|
16
16
|
d: "M8.567 2.099a1 1 0 0 1 1.058.12l5 4a1 1 0 0 1-.07 1.613L11.303 10l3.252 2.168a1 1 0 0 1 .07 1.613l-5 4A1 1 0 0 1 8 17v-4.798l-2.445 1.63a1 1 0 1 1-1.11-1.664L7.697 10 4.445 7.832a1 1 0 0 1 1.11-1.664L8 7.798V3a1 1 0 0 1 .567-.901ZM10 11.535l2.307 1.538L10 14.92v-3.384Zm0-3.07V5.08l2.307 1.846L10 8.465Z",
|
|
17
17
|
clipRule: "evenodd"
|
|
18
18
|
})
|
|
19
|
-
});
|
|
19
|
+
}));
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
const ForwardRef = React.forwardRef(Bluetooth);
|
package/Bluetooth2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const Bluetooth = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const Bluetooth = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
d: "m6 8 11 8-6 5V3l6 5-11 8"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(Bluetooth);
|
package/BluetoothOff.js
CHANGED
|
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const BluetoothOff = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
className: "h-5 w-5",
|
|
9
9
|
viewBox: "0 0 20 20",
|
|
10
10
|
width: props.width,
|
|
11
11
|
height: props.height,
|
|
12
|
-
ref: svgRef
|
|
13
|
-
|
|
12
|
+
ref: svgRef
|
|
13
|
+
}, props, {
|
|
14
14
|
children: jsx("path", {
|
|
15
15
|
fillRule: "evenodd",
|
|
16
16
|
d: "M6.403 2.093a1 1 0 0 1 1.067.144l4.588 3.889a1 1 0 0 1-.051 1.567L8.887 10l3.12 2.307a1 1 0 0 1 .051 1.567L7.47 17.763A1 1 0 0 1 5.824 17v-4.734l-2.23 1.65a1 1 0 0 1-1.189-1.609L5.525 10l-3.12-2.307a1 1 0 0 1 1.19-1.608l2.229 1.649V3a1 1 0 0 1 .58-.907Zm1.42 9.608 1.98 1.463-1.98 1.678V11.7Zm0-3.402V5.16l1.98 1.677L7.823 8.3Zm6.182-.179a1 1 0 0 1 1.414.012l.434.442.434-.442a1 1 0 0 1 1.426 1.402l-.458.466.458.466a1 1 0 1 1-1.426 1.402l-.434-.442-.434.442a1 1 0 0 1-1.426-1.402L14.45 10l-.458-.466a1 1 0 0 1 .012-1.414Z",
|
|
17
17
|
clipRule: "evenodd"
|
|
18
18
|
})
|
|
19
|
-
});
|
|
19
|
+
}));
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
const ForwardRef = React.forwardRef(BluetoothOff);
|
package/BluetoothOff2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const BluetoothOff = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const BluetoothOff = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
d: "m4 8 11 8-6 5V3l6 5-11 8m14-5.5 3 3m0-3-3 3"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(BluetoothOff);
|
package/Bucket.js
CHANGED
|
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const Bucket = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
className: "h-5 w-5",
|
|
9
9
|
viewBox: "0 0 20 20",
|
|
10
10
|
width: props.width,
|
|
11
11
|
height: props.height,
|
|
12
|
-
ref: svgRef
|
|
13
|
-
|
|
12
|
+
ref: svgRef
|
|
13
|
+
}, props, {
|
|
14
14
|
children: jsx("path", {
|
|
15
15
|
fillRule: "evenodd",
|
|
16
16
|
d: "M15.262 4H4.738c-1.168 0-2.09.996-2.055 2.163.036 1.203.034 2.686-.112 3.837-.127 1.01-.425 2.23-.727 3.305C1.47 14.633 2.446 16 3.825 16h12.35c1.38 0 2.355-1.367 1.981-2.695-.302-1.076-.6-2.296-.727-3.305-.146-1.151-.148-2.634-.112-3.837C17.352 4.996 16.43 4 15.262 4Zm-1.267 4.1v.007l-.003.028a11.236 11.236 0 0 0-.032.547c-.013.36-.012.804.034 1.205.044.388.151.826.256 1.185a10.686 10.686 0 0 0 .175.546l.01.028.003.006a1 1 0 0 1-1.876.696L13.5 12l-.938.348v-.003l-.002-.003-.004-.013-.015-.041a12.806 12.806 0 0 1-.21-.655 9.46 9.46 0 0 1-.325-1.52c-.061-.54-.06-1.095-.046-1.5A13.404 13.404 0 0 1 12 7.96l.003-.042.002-.012V7.9l.992.1-.992-.1a1 1 0 0 1 1.99.2Zm-8.037 0a1 1 0 0 1 1.99-.2l-.992.1.991-.1v.002l.001.004.001.012.004.042.012.147c.009.125.02.3.027.505.014.406.015.961-.046 1.501a9.466 9.466 0 0 1-.324 1.52 12.832 12.832 0 0 1-.21.655l-.015.041-.005.013-.001.003v.002L6.451 12l.938.347a1 1 0 0 1-1.875-.694l.002-.007.01-.028.041-.118c.035-.104.083-.252.134-.428.105-.359.213-.797.257-1.185.045-.4.047-.845.034-1.205a11.377 11.377 0 0 0-.032-.547l-.003-.028V8.1Z",
|
|
17
17
|
clipRule: "evenodd"
|
|
18
18
|
})
|
|
19
|
-
});
|
|
19
|
+
}));
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
const ForwardRef = React.forwardRef(Bucket);
|
package/Bucket2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const Bucket = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const Bucket = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
d: "M9 9s.11 1.53 0 2.5C8.84 12.912 8 15 8 15m7.049-6s-.11 1.53 0 2.5c.16 1.412 1 3.5 1 3.5M4 12c.2-1.455.185-3.366.128-4.824C4.083 6.004 5.008 5 6.181 5h11.638c1.173 0 2.098 1.004 2.053 2.176-.057 1.458-.072 3.37.128 4.824.18 1.306.622 2.906 1.046 4.247.423 1.338-.557 2.753-1.96 2.753H4.914c-1.404 0-2.384-1.415-1.961-2.753.424-1.341.867-2.94 1.046-4.247Z"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(Bucket);
|
package/Bug.js
CHANGED
|
@@ -2,18 +2,18 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const Bug = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
viewBox: "0 0 20 20",
|
|
9
9
|
width: props.width,
|
|
10
10
|
height: props.height,
|
|
11
|
-
ref: svgRef
|
|
12
|
-
|
|
11
|
+
ref: svgRef
|
|
12
|
+
}, props, {
|
|
13
13
|
children: jsx("path", {
|
|
14
14
|
d: "M12 5a2 2 0 1 0-4 0 2 2 0 0 0-2 2v.415A1.5 1.5 0 0 1 5 6a1 1 0 0 0-2 0 3.5 3.5 0 0 0 3 3.465v3.07A3.5 3.5 0 0 0 3 16a1 1 0 1 0 2 0 1.5 1.5 0 0 1 1.296-1.486 4.001 4.001 0 0 0 7.408 0A1.5 1.5 0 0 1 15 16a1 1 0 1 0 2 0 3.501 3.501 0 0 0-3-3.465v-3.07A3.5 3.5 0 0 0 17 6a1 1 0 1 0-2 0 1.5 1.5 0 0 1-1 1.415V7a2 2 0 0 0-2-2Z"
|
|
15
15
|
})
|
|
16
|
-
});
|
|
16
|
+
}));
|
|
17
17
|
};
|
|
18
18
|
|
|
19
19
|
const ForwardRef = React.forwardRef(Bug);
|
package/Bug2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const Bug = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const Bug = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
d: "M8 9a2 2 0 0 1 2-2M8 9v4m0-4H7a3 3 0 0 1-3-3m12 3a2 2 0 0 0-2-2m2 2v4m0-4h1a3 3 0 0 0 3-3m-6 1h-4m4 0V6a2 2 0 1 0-4 0v1m6 6v3c0 .345-.044.68-.126 1M16 13h4M8 13v3c0 .345.044.68.126 1M8 13H4m11.874 4a4.002 4.002 0 0 1-7.748 0m7.748 0H17a3 3 0 0 1 3 3M8.126 17H7a3 3 0 0 0-3 3"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(Bug);
|
package/Compass.js
CHANGED
|
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const Compass = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
className: "h-5 w-5",
|
|
9
9
|
viewBox: "0 0 20 20",
|
|
10
10
|
width: props.width,
|
|
11
11
|
height: props.height,
|
|
12
|
-
ref: svgRef
|
|
13
|
-
|
|
12
|
+
ref: svgRef
|
|
13
|
+
}, props, {
|
|
14
14
|
children: jsx("path", {
|
|
15
15
|
fillRule: "evenodd",
|
|
16
16
|
d: "M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm-2.2-5.424 3.238-1.388a.286.286 0 0 0 .15-.15l1.388-3.239a.286.286 0 0 0-.375-.375L8.962 8.812a.286.286 0 0 0-.15.15l-1.388 3.239a.286.286 0 0 0 .375.375Z",
|
|
17
17
|
clipRule: "evenodd"
|
|
18
18
|
})
|
|
19
|
-
});
|
|
19
|
+
}));
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
const ForwardRef = React.forwardRef(Compass);
|
package/Compass2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const Compass = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const Compass = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
d: "m14 14-5 1 1-5 5-1-1 5M12 3a9 9 0 1 1 0 18 9 9 0 0 1 0-18Z"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(Compass);
|
package/ConcreteMixer.js
CHANGED
|
@@ -2,15 +2,15 @@ import { jsxs, jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const ConcreteMixer = (props, svgRef) => {
|
|
5
|
-
return jsxs("svg", {
|
|
5
|
+
return jsxs("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
className: "h-5 w-5",
|
|
9
9
|
viewBox: "0 0 20 20",
|
|
10
10
|
width: props.width,
|
|
11
11
|
height: props.height,
|
|
12
|
-
ref: svgRef
|
|
13
|
-
|
|
12
|
+
ref: svgRef
|
|
13
|
+
}, props, {
|
|
14
14
|
children: [jsx("path", {
|
|
15
15
|
fillRule: "evenodd",
|
|
16
16
|
d: "M11.876 8.553a4.502 4.502 0 0 1-8.752 0c-.162-.677.058-1.37.403-1.975l.897-1.57A2 2 0 0 1 6.161 4h2.678a2 2 0 0 1 1.737 1.008l.897 1.57c.345.604.565 1.298.403 1.975Z"
|
|
@@ -18,7 +18,7 @@ const ConcreteMixer = (props, svgRef) => {
|
|
|
18
18
|
fillRule: "evenodd",
|
|
19
19
|
d: "M13 5.204V13a2 2 0 0 0-1.732 1H7.732a2 2 0 0 0-3.464 0H4a1 1 0 1 0 0 2h.268a2 2 0 0 0 3.464 0h3.536a2 2 0 0 0 3.464 0H16a1 1 0 0 0 1-1V7.408a2 2 0 0 0-.683-1.506l-1.659-1.45C14.012 3.884 13 4.344 13 5.203Z"
|
|
20
20
|
})]
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(ConcreteMixer);
|
package/ConcreteMixer2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const ConcreteMixer = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const ConcreteMixer = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
d: "M8 18a2 2 0 1 1-4 0m4 0a2 2 0 1 0-4 0m4 0h6M4 18H3m11 0a2 2 0 1 0 4 0m-4 0a2 2 0 0 1 2-2m2 2a2 2 0 0 0-2-2m2 2h1a2 2 0 0 0 2-2V6.836a2 2 0 0 0-.586-1.414l-.828-.828a2 2 0 0 0-1.414-.586H18a2 2 0 0 0-2 2V16M3.071 8H16m-4.124.553a4.502 4.502 0 0 1-8.752 0c-.162-.677.058-1.37.403-1.975l.897-1.57A2 2 0 0 1 6.161 4h2.678a2 2 0 0 1 1.737 1.008l.897 1.57c.345.604.565 1.298.403 1.975Z"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(ConcreteMixer);
|
package/ConstructionCone.js
CHANGED
|
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const ConstructionCone = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "currentColor",
|
|
8
8
|
className: "h-5 w-5",
|
|
9
9
|
viewBox: "0 0 20 20",
|
|
10
10
|
width: props.width,
|
|
11
11
|
height: props.height,
|
|
12
|
-
ref: svgRef
|
|
13
|
-
|
|
12
|
+
ref: svgRef
|
|
13
|
+
}, props, {
|
|
14
14
|
children: jsx("path", {
|
|
15
15
|
fillRule: "evenodd",
|
|
16
16
|
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",
|
|
17
17
|
clipRule: "evenodd"
|
|
18
18
|
})
|
|
19
|
-
});
|
|
19
|
+
}));
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
const ForwardRef = React.forwardRef(ConstructionCone);
|
package/ConstructionCone2.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
|
|
4
4
|
const ConstructionCone = (props, svgRef) => {
|
|
5
|
-
return jsx("svg", {
|
|
5
|
+
return jsx("svg", Object.assign({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
fill: "none",
|
|
8
8
|
stroke: "currentColor",
|
|
@@ -11,14 +11,14 @@ const ConstructionCone = (props, svgRef) => {
|
|
|
11
11
|
viewBox: "0 0 24 24",
|
|
12
12
|
width: props.width,
|
|
13
13
|
height: props.height,
|
|
14
|
-
ref: svgRef
|
|
15
|
-
|
|
14
|
+
ref: svgRef
|
|
15
|
+
}, props, {
|
|
16
16
|
children: jsx("path", {
|
|
17
17
|
strokeLinecap: "round",
|
|
18
18
|
strokeLinejoin: "round",
|
|
19
19
|
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"
|
|
20
20
|
})
|
|
21
|
-
});
|
|
21
|
+
}));
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
const ForwardRef = React.forwardRef(ConstructionCone);
|