@adcops/autocore-react 3.3.92 → 3.3.93

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.
@@ -1 +1 @@
1
- {"version":3,"file":"Off.d.ts","sourceRoot":"","sources":["../../src/assets/Off.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,eAAO,MAAM,GAAG,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CASjD,CAAC;AAEF,eAAe,GAAG,CAAC"}
1
+ {"version":3,"file":"Off.d.ts","sourceRoot":"","sources":["../../src/assets/Off.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,eAAO,MAAM,GAAG,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAejD,CAAC;AAEF,eAAe,GAAG,CAAC"}
@@ -1 +1 @@
1
- import{jsx as _jsx}from"react/jsx-runtime";export const Off=r=>_jsx("svg",{viewBox:"0 0 354.487 354.487",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg",...r,children:_jsx("path",{d:"M177.241,0C79.504,0,0,79.51,0,177.241c0,97.736,79.51,177.246,177.241,177.246c97.731,0,177.246-79.516,177.246-177.246 C354.487,79.504,274.979,0,177.241,0z M177.241,311.444c-73.994,0-134.198-60.203-134.198-134.203 c0-73.995,60.204-134.199,134.198-134.199c74,0,134.204,60.204,134.204,134.199C311.445,251.241,251.241,311.444,177.241,311.444z"})});export default Off;
1
+ import{jsx as _jsx}from"react/jsx-runtime";export const Off=r=>_jsx("svg",{viewBox:"0 0 72 72",fill:"none",xmlns:"http://www.w3.org/2000/svg",...r,children:_jsx("circle",{cx:"36",cy:"36",r:"20",stroke:"currentColor",strokeWidth:3.6})});export default Off;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adcops/autocore-react",
3
- "version": "3.3.92",
3
+ "version": "3.3.93",
4
4
  "description": "A React component library for industrial user interfaces.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -2,12 +2,18 @@ import type { SVGProps } from "react";
2
2
 
3
3
  export const Off = (props: SVGProps<SVGSVGElement>) => (
4
4
  <svg
5
- viewBox="0 0 354.487 354.487"
6
- fill="currentColor"
5
+ viewBox="0 0 72 72"
6
+ fill="none"
7
7
  xmlns="http://www.w3.org/2000/svg"
8
8
  {...props}
9
9
  >
10
- <path d="M177.241,0C79.504,0,0,79.51,0,177.241c0,97.736,79.51,177.246,177.241,177.246c97.731,0,177.246-79.516,177.246-177.246 C354.487,79.504,274.979,0,177.241,0z M177.241,311.444c-73.994,0-134.198-60.203-134.198-134.203 c0-73.995,60.204-134.199,134.198-134.199c74,0,134.204,60.204,134.204,134.199C311.445,251.241,251.241,311.444,177.241,311.444z" />
10
+ <circle
11
+ cx="36"
12
+ cy="36"
13
+ r="20"
14
+ stroke="currentColor"
15
+ strokeWidth={3.6}
16
+ />
11
17
  </svg>
12
18
  );
13
19