@central-icons-react-native/round-outlined-radius-0-stroke-1 1.1.260 → 1.1.262
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/IconPipe/index.d.ts +4 -0
- package/IconPipe/index.js +3 -0
- package/IconPipe/index.js.map +11 -0
- package/IconPipe/index.mjs +3 -0
- package/IconPipe/index.mjs.map +11 -0
- package/IconTorch/index.d.ts +4 -0
- package/IconTorch/index.js +3 -0
- package/IconTorch/index.js.map +11 -0
- package/IconTorch/index.mjs +3 -0
- package/IconTorch/index.mjs.map +11 -0
- package/README.md +2 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:j,defineProperty:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:M}=Object,l=Object.prototype.hasOwnProperty;function m(r){return this[r]}var V,v,L=(r,o,n)=>{var t=r!=null&&typeof r==="object";if(t){var k=o?V??=new WeakMap:v??=new WeakMap,C=k.get(r);if(C)return C}n=r!=null?g(j(r)):{};let i=o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n;for(let u of c(r))if(!l.call(i,u))p(i,u,{get:m.bind(r,u),enumerable:!0});if(t)k.set(r,i);return i},f=(r)=>{var o=(a??=new WeakMap).get(r),n;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!l.call(o,t))p(o,t,{get:m.bind(r,t),enumerable:!(n=M(r,t))||n.enumerable})}return a.set(r,o),o},a;var h=(r)=>r;function y(r,o){this[r]=h.bind(null,o)}var B=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0,configurable:!0,set:y.bind(o,n)})};var F={};B(F,{CentralIconBase:()=>d});module.exports=f(F);var I=L(require("react")),P=require("react-native-svg"),d=({children:r,size:o=24,...n})=>{return I.default.createElement(P.Svg,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var S={};B(S,{default:()=>b,IconPipe:()=>x});module.exports=f(S);var e=L(require("react"));var s=require("react-native-svg"),x=(r)=>{return e.default.createElement(d,{...r},e.default.createElement(s.Path,{d:"M3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(s.Path,{d:"M18.25 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(s.Path,{d:"M5.75 20.25V10.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(s.Path,{d:"M3.5 3.5H20.5V10.5H3.5V3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(s.Path,{d:"M7.75 3.75V10.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(s.Path,{d:"M9.75 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},b=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=BD63F11BA4B1D90764756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPipe/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPipe: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 20.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M18.25 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5.75 20.25V10.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.5 3.5H20.5V10.5H3.5V3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.75 3.75V10.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.75 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPipe;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,oECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqC,CAAC,IAAU,CAC3D,OAAO,wBAAqmB,EAArmB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,8BAA8B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG/lB",
|
|
9
|
+
"debugId": "BD63F11BA4B1D90764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:o=24,...s})=>{return p.createElement(i,{...s,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e)};import r from"react";import{Path as n}from"react-native-svg";var u=(e)=>{return r.createElement(t,{...e},r.createElement(n,{d:"M3.5 20.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M18.25 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M5.75 20.25V10.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M3.5 3.5H20.5V10.5H3.5V3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M7.75 3.75V10.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M9.75 10.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},I=u;export{I as default,u as IconPipe};
|
|
2
|
+
|
|
3
|
+
//# debugId=81060C6A984905DD64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPipe/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPipe: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 20.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M18.25 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5.75 20.25V10.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.5 3.5H20.5V10.5H3.5V3.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M7.75 3.75V10.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.75 10.75V20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPipe;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAqC,CAAC,IAAU,CAC3D,OAAO,gBAAqmB,EAArmB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,8BAA8B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG/lB",
|
|
9
|
+
"debugId": "81060C6A984905DD64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:x,defineProperty:i,getOwnPropertyNames:d,getOwnPropertyDescriptor:v}=Object,c=Object.prototype.hasOwnProperty;function h(r){return this[r]}var w,y,m=(r,o,e)=>{var p=r!=null&&typeof r==="object";if(p){var u=o?w??=new WeakMap:y??=new WeakMap,L=u.get(r);if(L)return L}e=r!=null?g(x(r)):{};let s=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let l of d(r))if(!c.call(s,l))i(s,l,{get:h.bind(r,l),enumerable:!0});if(p)u.set(r,s);return s},f=(r)=>{var o=(a??=new WeakMap).get(r),e;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var p of d(r))if(!c.call(o,p))i(o,p,{get:h.bind(r,p),enumerable:!(e=v(r,p))||e.enumerable})}return a.set(r,o),o},a;var F=(r)=>r;function S(r,o){this[r]=F.bind(null,o)}var k=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var _={};k(_,{CentralIconBase:()=>C});module.exports=f(_);var P=m(require("react")),B=require("react-native-svg"),C=({children:r,size:o=24,...e})=>{return P.default.createElement(B.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var b={};k(b,{default:()=>j,IconTorch:()=>I});module.exports=f(b);var t=m(require("react"));var n=require("react-native-svg"),I=(r)=>{return t.default.createElement(C,{...r},t.default.createElement(n.G,{ClipPath:"url(#clip0_15368_27809)"},t.default.createElement(n.Path,{d:"M10.25 5.25L18.75 13.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M1.5 16.725L8.85 9.375L9.375 5.7L13.575 1.5L22.5 10.425L18.3 14.625L14.625 15.15L7.275 22.5L1.5 16.725Z",stroke:"currentColor",strokeWidth:"1.05",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M9.75 14.25L11.75 12.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),t.default.createElement(n.Defs,null,t.default.createElement(n.ClipPath,{id:"clip0_15368_27809"},t.default.createElement(n.Rect,{width:"24",height:"24",fill:"white"}))))},j=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=27A5AA440FF37CD564756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconTorch/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconTorch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><G ClipPath=\"url(#clip0_15368_27809)\"><Path d=\"M10.25 5.25L18.75 13.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M1.5 16.725L8.85 9.375L9.375 5.7L13.575 1.5L22.5 10.425L18.3 14.625L14.625 15.15L7.275 22.5L1.5 16.725Z\" stroke=\"currentColor\" strokeWidth=\"1.05\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.75 14.25L11.75 12.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></G><Defs><ClipPath id=\"clip0_15368_27809\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></CentralIconBase>;\n};\n\nexport default IconTorch;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,qECvBoB,IAA1B,sBAE8C,IAA9C,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAAikB,EAAjkB,IAAqB,GAAO,wBAA6b,IAA7b,CAAG,SAAS,2BAA0B,wBAAC,OAAD,CAAM,EAAE,0BAA0B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,0GAA0G,OAAO,eAAe,YAAY,OAAO,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,0BAA0B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAAE,wBAA+F,OAA/F,KAAM,wBAA8E,WAA9E,CAAU,GAAG,qBAAoB,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,GAG3jB",
|
|
9
|
+
"debugId": "27A5AA440FF37CD564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import i from"react";import{Svg as s}from"react-native-svg";var t=({children:e,size:o=24,...p})=>{return i.createElement(s,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e)};import r from"react";import{ClipPath as l,Defs as C,G as u,Path as n,Rect as L}from"react-native-svg";var a=(e)=>{return r.createElement(t,{...e},r.createElement(u,{ClipPath:"url(#clip0_15368_27809)"},r.createElement(n,{d:"M10.25 5.25L18.75 13.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M1.5 16.725L8.85 9.375L9.375 5.7L13.575 1.5L22.5 10.425L18.3 14.625L14.625 15.15L7.275 22.5L1.5 16.725Z",stroke:"currentColor",strokeWidth:"1.05",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M9.75 14.25L11.75 12.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),r.createElement(C,null,r.createElement(l,{id:"clip0_15368_27809"},r.createElement(L,{width:"24",height:"24",fill:"white"}))))},x=a;export{x as default,a as IconTorch};
|
|
2
|
+
|
|
3
|
+
//# debugId=823EE391F9F7865C64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconTorch/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconTorch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><G ClipPath=\"url(#clip0_15368_27809)\"><Path d=\"M10.25 5.25L18.75 13.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M1.5 16.725L8.85 9.375L9.375 5.7L13.575 1.5L22.5 10.425L18.3 14.625L14.625 15.15L7.275 22.5L1.5 16.725Z\" stroke=\"currentColor\" strokeWidth=\"1.05\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.75 14.25L11.75 12.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></G><Defs><ClipPath id=\"clip0_15368_27809\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></CentralIconBase>;\n};\n\nexport default IconTorch;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,mBAAS,UAAU,OAAM,UAAG,UAAM,yBAE3B,IAAM,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAAikB,EAAjkB,IAAqB,GAAO,gBAA6b,EAA7b,CAAG,SAAS,2BAA0B,gBAAC,EAAD,CAAM,EAAE,0BAA0B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,0GAA0G,OAAO,eAAe,YAAY,OAAO,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,0BAA0B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAAE,gBAA+F,EAA/F,KAAM,gBAA8E,EAA9E,CAAU,GAAG,qBAAoB,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,GAG3jB",
|
|
9
|
+
"debugId": "823EE391F9F7865C64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -688,6 +688,7 @@ Below is a complete list of available icons:
|
|
|
688
688
|
- IconAgentNetwork
|
|
689
689
|
- IconMagicMouse
|
|
690
690
|
- IconDevices2
|
|
691
|
+
- IconTorch
|
|
691
692
|
|
|
692
693
|
### Edit
|
|
693
694
|
|
|
@@ -1039,6 +1040,7 @@ Below is a complete list of available icons:
|
|
|
1039
1040
|
- IconSword
|
|
1040
1041
|
- IconGamecontroller
|
|
1041
1042
|
- IconOldJoystick
|
|
1043
|
+
- IconPipe
|
|
1042
1044
|
|
|
1043
1045
|
### Hands
|
|
1044
1046
|
|