@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.
@@ -2,20 +2,20 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const DemolitionHammer = (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
- ...props,
12
+ ref: svgRef
13
+ }, props, {
14
14
  children: jsx("path", {
15
15
  fillRule: "evenodd",
16
16
  d: "M7 2a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H7ZM3 4a1 1 0 0 1 1-1h1v2H4a1 1 0 0 1-1-1Zm12-1h1a1 1 0 1 1 0 2h-1V3ZM9 14h2v3a1 1 0 1 1-2 0v-3Zm3.5-5h-5v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V9Z"
17
17
  })
18
- });
18
+ }));
19
19
  };
20
20
 
21
21
  const ForwardRef = React.forwardRef(DemolitionHammer);
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const DemolitionHammer = (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 DemolitionHammer = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "M12 16v5m5-16v3a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V5m10 0a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2m10 0h3M7 5H4m7 11h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2Z"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(DemolitionHammer);
package/Directions.js CHANGED
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Directions = (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
- ...props,
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 16Zm4.263-8.182a1 1 0 0 0 0-1.414L12.04 6.182a1 1 0 1 0-1.414 1.414l.515.515h-.919a3 3 0 0 0-3 3v1.556a1 1 0 1 0 2 0V11.11a1 1 0 0 1 1-1h.92l-.516.515a1 1 0 0 0 1.414 1.414l2.223-2.222Z",
17
17
  clipRule: "evenodd"
18
18
  })
19
- });
19
+ }));
20
20
  };
21
21
 
22
22
  const ForwardRef = React.forwardRef(Directions);
package/Directions2.js CHANGED
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Directions = (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 Directions = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "m13 8 3 3m0 0-3 3m3-3h-4a2 2 0 0 0-2 2v2m11-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(Directions);
package/Excavator.js CHANGED
@@ -2,20 +2,20 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Excavator = (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
- ...props,
12
+ ref: svgRef
13
+ }, props, {
14
14
  children: jsx("path", {
15
15
  fillRule: "evenodd",
16
16
  d: "M12 3.586A2 2 0 0 1 13.414 3H14.5a2 2 0 0 1 2 2v5.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-5A.5.5 0 0 0 14 5h-.379a.5.5 0 0 0-.353.146l-1.662 1.662A1.997 1.997 0 0 0 10 6h-.414L12 3.586ZM8 7a1 1 0 0 0-1 1v5h3a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H8Zm-5 4a1 1 0 0 1 1-1h2v3H4a1 1 0 0 1-1-1v-1Zm0 4.5A1.5 1.5 0 0 1 4.5 14h5a1.5 1.5 0 0 1 0 3h-5A1.5 1.5 0 0 1 3 15.5ZM14.55 12h2.15a.3.3 0 0 1 .3.3 2.7 2.7 0 0 1-2.7 2.7.3.3 0 0 1-.3-.3v-2.15a.55.55 0 0 1 .55-.55Z"
17
17
  })
18
- });
18
+ }));
19
19
  };
20
20
 
21
21
  const ForwardRef = React.forwardRef(Excavator);
package/Excavator2.js CHANGED
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Excavator = (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 Excavator = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "m11 9 4.414-4.414A2 2 0 0 1 16.828 4H18a2 2 0 0 1 2 2v7m-10 4h2a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2Zm-2-5H5a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h3v-5Zm14 2a1 1 0 0 0-1-1h-1.667c-.736 0-1.333.597-1.333 1.333V16a1 1 0 0 0 1 1 3 3 0 0 0 3-3Zm-8 5a2 2 0 0 0-2-2H6a2 2 0 1 0 0 4h6a2 2 0 0 0 2-2Z"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(Excavator);
package/FitToHeight.js CHANGED
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const FitToHeight = (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
- ...props,
12
+ ref: svgRef
13
+ }, props, {
14
14
  children: jsx("path", {
15
15
  fillRule: "evenodd",
16
16
  d: "M16 4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4Zm-4.207 4.207a1 1 0 1 0 1.414-1.414l-2.5-2.5a1 1 0 0 0-1.414 0l-2.5 2.5a1 1 0 0 0 1.414 1.414L9 7.414v5.172l-.793-.793a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.414 0l2.5-2.5a1 1 0 0 0-1.414-1.414l-.793.793V7.414l.793.793Z",
17
17
  clipRule: "evenodd"
18
18
  })
19
- });
19
+ }));
20
20
  };
21
21
 
22
22
  const ForwardRef = React.forwardRef(FitToHeight);
package/FitToHeight2.js CHANGED
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const FitToHeight = (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 FitToHeight = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "m12 7 2.5 2.5M12 7 9.5 9.5M12 7v10m0 0 2.5-2.5M12 17l-2.5-2.5M7 3h10a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Z"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(FitToHeight);
package/FitToWidth.js CHANGED
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const FitToWidth = (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
- ...props,
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 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Zm4.207 4.207a1 1 0 0 0-1.414-1.414l-2.5 2.5a1 1 0 0 0 0 1.414l2.5 2.5a1 1 0 0 0 1.414-1.414L7.414 11h5.172l-.793.793a1 1 0 0 0 1.414 1.414l2.5-2.5a1 1 0 0 0 0-1.414l-2.5-2.5a1 1 0 1 0-1.414 1.414l.793.793H7.414l.793-.793Z",
17
17
  clipRule: "evenodd"
18
18
  })
19
- });
19
+ }));
20
20
  };
21
21
 
22
22
  const ForwardRef = React.forwardRef(FitToWidth);
package/FitToWidth2.js CHANGED
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const FitToWidth = (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 FitToWidth = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "m7 12 2.5-2.5M7 12l2.5 2.5M7 12h10m0 0-2.5-2.5M17 12l-2.5 2.5M5 5h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Z"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(FitToWidth);
package/Gps.js CHANGED
@@ -2,21 +2,21 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Gps = (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
- ...props,
12
+ ref: svgRef
13
+ }, props, {
14
14
  children: jsx("path", {
15
15
  fillRule: "evenodd",
16
16
  d: "M10 3a1 1 0 0 1 1 1v1.1a5.007 5.007 0 0 1 3.9 3.902H16a1 1 0 1 1 0 2h-1.1a5.007 5.007 0 0 1-3.9 3.901V16a1 1 0 1 1-2 0v-1.096a5.007 5.007 0 0 1-3.9-3.902H4a1 1 0 1 1 0-2h1.1A5.007 5.007 0 0 1 9 5.1V4a1 1 0 0 1 1-1Zm0 8.717a1.715 1.715 0 1 0 0-3.429 1.715 1.715 0 0 0 0 3.43Z",
17
17
  clipRule: "evenodd"
18
18
  })
19
- });
19
+ }));
20
20
  };
21
21
 
22
22
  const ForwardRef = React.forwardRef(Gps);
package/Gps2.js CHANGED
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Gps = (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 Gps = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "M19 12a7 7 0 0 1-7 7m7-7a7 7 0 0 0-7-7m7 7h2m-9 7a7 7 0 0 1-7-7m7 7v2m-7-9a7 7 0 0 1 7-7m-7 7H3m9-7V3m3 9a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(Gps);
package/Hardhat.js CHANGED
@@ -2,20 +2,20 @@ import { jsxs, jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Hardhat = (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
  viewBox: "0 0 20 20",
9
9
  width: props.width,
10
10
  height: props.height,
11
- ref: svgRef,
12
- ...props,
11
+ ref: svgRef
12
+ }, props, {
13
13
  children: [jsx("path", {
14
14
  d: "M11.5 8.5v-5A.5.5 0 0 0 11 3H9a.5.5 0 0 0-.5.5v5a1.5 1.5 0 1 0 3 0Z"
15
15
  }), jsx("path", {
16
16
  d: "M3 11a6.997 6.997 0 0 1 3.5-6.064v3.752C6.5 10.758 8.326 12 10 12s3.5-1.24 3.5-3.313v-3.75A6.997 6.997 0 0 1 17 11v2.527c0 .303-.12.593-.335.808L14.43 16.57a1.463 1.463 0 0 1-1.035.429H6.606c-.388 0-.76-.154-1.035-.429l-2.236-2.236A1.143 1.143 0 0 1 3 13.526V11Z"
17
17
  })]
18
- });
18
+ }));
19
19
  };
20
20
 
21
21
  const ForwardRef = React.forwardRef(Hardhat);
package/Hardhat2.js CHANGED
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Hardhat = (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 Hardhat = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "M10 5.252C6.55 6.14 4 9.272 4 13v2.927c0 .047.015.093.044.131L6.4 19.2A2 2 0 0 0 8 20h8a2 2 0 0 0 1.6-.8l2.356-3.142a.219.219 0 0 0 .044-.13V13c0-3.728-2.55-6.86-6-7.748m-4 0V10a2 2 0 1 0 4 0V5.252m-4 0C10 4.561 10.56 4 11.252 4h1.496C13.439 4 14 4.56 14 5.252"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(Hardhat);
package/Hierarchy.js CHANGED
@@ -2,19 +2,19 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Hierarchy = (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
- ...props,
12
+ ref: svgRef
13
+ }, props, {
14
14
  children: jsx("path", {
15
15
  d: "M11.003 6.73A2 2 0 1 0 9 6.733V7c0 1.33-.327 1.913-.645 2.23-.367.368-.88.557-1.671.821l-.073.024c-.702.234-1.649.549-2.38 1.28-.47.47-.81 1.062-1.012 1.803a2 2 0 1 0 2.014.267 1.82 1.82 0 0 1 .412-.655c.367-.368.88-.557 1.671-.821l.073-.024c.473-.158 1.057-.352 1.611-.685v2.028A2 2 0 0 0 10 17a2 2 0 0 0 1-3.732V11.09c.565.377 1.162.601 1.648.784.806.302 1.325.5 1.703.883.149.151.299.358.417.668a2 2 0 1 0 2.013-.266c-.201-.742-.54-1.333-1.006-1.807-.701-.71-1.609-1.047-2.291-1.301L13.35 10c-.769-.288-1.29-.515-1.666-.939-.329-.37-.649-1.015-.682-2.331Z"
16
16
  })
17
- });
17
+ }));
18
18
  };
19
19
 
20
20
  const ForwardRef = React.forwardRef(Hierarchy);
package/Hierarchy2.js CHANGED
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Hierarchy = (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 Hierarchy = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "M5 16a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 0c0-5 7-2 7-7m7 7a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 0c0-5-7-2-7-7m0 7a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 0V9m0-5a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(Hierarchy);
package/Plug.js CHANGED
@@ -2,19 +2,19 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Plug = (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
- ...props,
12
+ ref: svgRef
13
+ }, props, {
14
14
  children: jsx("path", {
15
15
  d: "M14.207 3.707a1 1 0 0 0-1.414-1.414L11.11 3.976l-.093-.093a2 2 0 0 0-3.167.45L4.76 9.952a2 2 0 0 0 .407 2.444l.537.487-3.411 3.41a1 1 0 1 0 1.414 1.415l3.478-3.478.866.787a2 2 0 0 0 2.348.251l5.348-3.096a2 2 0 0 0 .412-3.145l-.135-.136 1.683-1.683a1 1 0 0 0-1.414-1.414L14.61 7.476 12.524 5.39l1.683-1.683Z"
16
16
  })
17
- });
17
+ }));
18
18
  };
19
19
 
20
20
  const ForwardRef = React.forwardRef(Plug);
package/Plug2.js CHANGED
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Plug = (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 Plug = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "m9 15-.98-.98a2 2 0 0 1-.375-2.31l3.114-6.228a2 2 0 0 1 3.203-.52L15 6m-6 9 .98.98a2 2 0 0 0 2.31.375l6.228-3.114a2 2 0 0 0 .52-3.203L18 9m-9 6-5 5M18 9l2.5-2.5M18 9l-3-3m0 0 2.5-2.5"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(Plug);
package/Timeline.js CHANGED
@@ -2,19 +2,19 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Timeline = (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
- ...props,
12
+ ref: svgRef
13
+ }, props, {
14
14
  children: jsx("path", {
15
15
  d: "M16.12 8.996a2 2 0 1 0-1.79-.894l-1.45 2.902c-.2.011-.391.052-.57.119L8.97 8.34a2 2 0 1 0-3.64.761l-1.45 2.902a2 2 0 1 0 1.788.894l1.45-2.902c.2-.011.392-.052.572-.119l3.338 2.782a2 2 0 1 0 3.64-.761l1.45-2.902Z"
16
16
  })
17
- });
17
+ }));
18
18
  };
19
19
 
20
20
  const ForwardRef = React.forwardRef(Timeline);
package/Timeline1.js CHANGED
@@ -2,19 +2,19 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Timeline1 = (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
- ...props,
12
+ ref: svgRef
13
+ }, props, {
14
14
  children: jsx("path", {
15
15
  d: "M15 7a2 2 0 1 0-1.932-1.482l-2.55 2.55a2.002 2.002 0 0 0-2.45 2.45l-2.55 2.55a2 2 0 1 0 1.414 1.414l2.55-2.55a2 2 0 0 0 2.45-2.45l2.55-2.55c.165.044.339.068.518.068Z"
16
16
  })
17
- });
17
+ }));
18
18
  };
19
19
 
20
20
  const ForwardRef = React.forwardRef(Timeline1);
package/Timeline12.js CHANGED
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Timeline1 = (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 Timeline1 = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "M13.414 10.586a2 2 0 1 0-2.828 2.828m2.828-2.828a2 2 0 1 1-2.828 2.828m2.828-2.828 4.172-4.172m-7 7-4.172 4.172M17.586 6.414a2 2 0 1 0 2.828-2.828 2 2 0 0 0-2.828 2.828ZM6.414 17.586a2 2 0 1 0-2.828 2.828 2 2 0 0 0 2.828-2.828Z"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(Timeline1);
package/Timeline2.js CHANGED
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Timeline = (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 Timeline = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "M18.008 9.737a2 2 0 1 0 1.985-3.474 2 2 0 0 0-1.985 3.474Zm0 0-2.016 3.526m0 0a1.996 1.996 0 0 0-2.529.456m2.53-.456a2 2 0 1 1-2.53.457m0 0-2.926-2.44m0 0a2 2 0 1 0-2.529.456m2.529-.456a1.996 1.996 0 0 1-2.53.457m0 0-2.015 3.526m0 0a2 2 0 1 0-1.985 3.474 2 2 0 0 0 1.985-3.474Z"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(Timeline);
package/Wrench.js CHANGED
@@ -2,19 +2,19 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Wrench = (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
- ...props,
12
+ ref: svgRef
13
+ }, props, {
14
14
  children: jsx("path", {
15
15
  d: "M17 8a5 5 0 0 1-7.459 4.355L5.29 16.607a1.34 1.34 0 0 1-1.896-1.896l4.252-4.252A5 5 0 0 1 13.74 3.31c.315.117.375.516.138.753L11.5 6.441A1.456 1.456 0 0 0 13.559 8.5l2.377-2.377c.237-.237.636-.177.753.138C16.89 6.802 17 7.388 17 8Z"
16
16
  })
17
- });
17
+ }));
18
18
  };
19
19
 
20
20
  const ForwardRef = React.forwardRef(Wrench);
package/Wrench2.js CHANGED
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
4
  const Wrench = (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 Wrench = (props, svgRef) => {
11
11
  viewBox: "0 0 24 24",
12
12
  width: props.width,
13
13
  height: props.height,
14
- ref: svgRef,
15
- ...props,
14
+ ref: svgRef
15
+ }, props, {
16
16
  children: jsx("path", {
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
19
  d: "M15 15a6 6 0 0 0 5.382-8.654l-2.968 2.968a2 2 0 1 1-2.828-2.829l2.932-2.932a6 6 0 0 0-7.9 8.102L3.57 17.707a1.929 1.929 0 1 0 2.728 2.728l6.046-6.054a5.97 5.97 0 0 0 2.655.618z"
20
20
  })
21
- });
21
+ }));
22
22
  };
23
23
 
24
24
  const ForwardRef = React.forwardRef(Wrench);