@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.
- package/dist/assets/Off.d.ts.map +1 -1
- package/dist/assets/Off.js +1 -1
- package/package.json +1 -1
- package/src/assets/Off.tsx +9 -3
package/dist/assets/Off.d.ts.map
CHANGED
|
@@ -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,
|
|
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"}
|
package/dist/assets/Off.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsx as _jsx}from"react/jsx-runtime";export const Off=r=>_jsx("svg",{viewBox:"0 0
|
|
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
package/src/assets/Off.tsx
CHANGED
|
@@ -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
|
|
6
|
-
fill="
|
|
5
|
+
viewBox="0 0 72 72"
|
|
6
|
+
fill="none"
|
|
7
7
|
xmlns="http://www.w3.org/2000/svg"
|
|
8
8
|
{...props}
|
|
9
9
|
>
|
|
10
|
-
<
|
|
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
|
|