@central-icons-react-native/round-filled-radius-0-stroke-2 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 d=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,H=Object.prototype.hasOwnProperty;function u(r){return this[r]}var y,F,B=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var f=o?y??=new WeakMap:F??=new WeakMap,s=f.get(r);if(s)return s}t=r!=null?d(v(r)):{};let C=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let a of i(r))if(!H.call(C,a))n(C,a,{get:u.bind(r,a),enumerable:!0});if(e)f.set(r,C);return C},I=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of i(r))if(!H.call(o,e))n(o,e,{get:u.bind(r,e),enumerable:!(t=h(r,e))||t.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:b.bind(o,t)})};var M={};P(M,{CentralIconBase:()=>m});module.exports=I(M);var V=B(require("react")),x=require("react-native-svg"),m=({children:r,size:o=24,...t})=>{return V.default.createElement(x.Svg,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var Z={};P(Z,{default:()=>w,IconPipe:()=>g});module.exports=I(Z);var p=B(require("react"));var l=require("react-native-svg"),g=(r)=>{return p.default.createElement(m,{...r},p.default.createElement(l.Path,{d:"M9 19H11V12H19V19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20C3 19.4477 3.44772 19 4 19H5V12H9V19Z",fill:"currentColor"}),p.default.createElement(l.Path,{d:"M7 10H4C3.44772 10 3 9.55228 3 9V4C3 3.44772 3.44772 3 4 3H7V10Z",fill:"currentColor"}),p.default.createElement(l.Path,{d:"M20 3C20.5523 3 21 3.44772 21 4V9C21 9.55228 20.5523 10 20 10H9V3H20Z",fill:"currentColor"}))},w=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=E17B4C2AFAB542A664756E2164756E21
|
|
@@ -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=\"M9 19H11V12H19V19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20C3 19.4477 3.44772 19 4 19H5V12H9V19Z\" fill=\"currentColor\"/><Path d=\"M7 10H4C3.44772 10 3 9.55228 3 9V4C3 3.44772 3.44772 3 4 3H7V10Z\" fill=\"currentColor\"/><Path d=\"M20 3C20.5523 3 21 3.44772 21 4V9C21 9.55228 20.5523 10 20 10H9V3H20Z\" fill=\"currentColor\"/></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,wBAAgZ,EAAhZ,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gJAAgJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mEAAmE,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wEAAwE,KAAK,eAAc,CAAI,GAG1Y",
|
|
9
|
+
"debugId": "E17B4C2AFAB542A664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";import{Svg as l}from"react-native-svg";var n=({children:t,size:r=24,...p})=>{return C.createElement(l,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t)};import o from"react";import{Path as e}from"react-native-svg";var a=(t)=>{return o.createElement(n,{...t},o.createElement(e,{d:"M9 19H11V12H19V19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20C3 19.4477 3.44772 19 4 19H5V12H9V19Z",fill:"currentColor"}),o.createElement(e,{d:"M7 10H4C3.44772 10 3 9.55228 3 9V4C3 3.44772 3.44772 3 4 3H7V10Z",fill:"currentColor"}),o.createElement(e,{d:"M20 3C20.5523 3 21 3.44772 21 4V9C21 9.55228 20.5523 10 20 10H9V3H20Z",fill:"currentColor"}))},V=a;export{V as default,a as IconPipe};
|
|
2
|
+
|
|
3
|
+
//# debugId=28D8A8F173E287B464756E2164756E21
|
|
@@ -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=\"M9 19H11V12H19V19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20C3 19.4477 3.44772 19 4 19H5V12H9V19Z\" fill=\"currentColor\"/><Path d=\"M7 10H4C3.44772 10 3 9.55228 3 9V4C3 3.44772 3.44772 3 4 3H7V10Z\" fill=\"currentColor\"/><Path d=\"M20 3C20.5523 3 21 3.44772 21 4V9C21 9.55228 20.5523 10 20 10H9V3H20Z\" fill=\"currentColor\"/></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,gBAAgZ,EAAhZ,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gJAAgJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mEAAmE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wEAAwE,KAAK,eAAc,CAAI,GAG1Y",
|
|
9
|
+
"debugId": "28D8A8F173E287B464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:s,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var F,S,d=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var m=o?F??=new WeakMap:S??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?g(h(r)):{};let C=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let l of s(r))if(!i.call(C,l))t(C,l,{get:u.bind(r,l),enumerable:!0});if(n)m.set(r,C);return C},B=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of s(r))if(!i.call(o,n))t(o,n,{get:u.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return f.set(r,o),o},f;var b=(r)=>r;function M(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var Z={};I(Z,{CentralIconBase:()=>L});module.exports=B(Z);var v=d(require("react")),x=require("react-native-svg"),L=({children:r,size:o=24,...e})=>{return v.default.createElement(x.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 w={};I(w,{default:()=>$,IconTorch:()=>P});module.exports=B(w);var p=d(require("react"));var a=require("react-native-svg"),P=(r)=>{return p.default.createElement(L,{...r},p.default.createElement(a.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.6336 14.2791L18.2069 14.7068C18.054 14.8597 17.8555 14.9594 17.6415 14.99L14.4706 15.4421L7.70689 22.2068C7.31646 22.5971 6.68333 22.5969 6.29282 22.2068L1.79282 17.7068C1.40235 17.3163 1.40244 16.6833 1.79282 16.2927L8.5565 9.52809L9.00962 6.35816C9.04023 6.14409 9.13994 5.94568 9.29282 5.79273L9.91782 5.16676L18.6336 14.2791ZM11.7069 12.2927C11.3164 11.9022 10.6833 11.9022 10.2928 12.2927L9.29282 13.2927C8.90236 13.6833 8.90232 14.3163 9.29282 14.7068C9.68334 15.0971 10.3164 15.0972 10.7069 14.7068L11.7069 13.7068C12.0974 13.3163 12.0972 12.6833 11.7069 12.2927Z",fill:"currentColor"}),p.default.createElement(a.Path,{d:"M13.369 1.72438C13.7618 1.40402 14.3408 1.42662 14.7069 1.79273L22.2069 9.29273C22.5971 9.68328 22.5973 10.3164 22.2069 10.7068L19.8368 13.0759L11.1209 3.96363L13.2928 1.79273L13.369 1.72438Z",fill:"currentColor"}))},$=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=818114713B83007A64756E2164756E21
|
|
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconTorch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.6336 14.2791L18.2069 14.7068C18.054 14.8597 17.8555 14.9594 17.6415 14.99L14.4706 15.4421L7.70689 22.2068C7.31646 22.5971 6.68333 22.5969 6.29282 22.2068L1.79282 17.7068C1.40235 17.3163 1.40244 16.6833 1.79282 16.2927L8.5565 9.52809L9.00962 6.35816C9.04023 6.14409 9.13994 5.94568 9.29282 5.79273L9.91782 5.16676L18.6336 14.2791ZM11.7069 12.2927C11.3164 11.9022 10.6833 11.9022 10.2928 12.2927L9.29282 13.2927C8.90236 13.6833 8.90232 14.3163 9.29282 14.7068C9.68334 15.0971 10.3164 15.0972 10.7069 14.7068L11.7069 13.7068C12.0974 13.3163 12.0972 12.6833 11.7069 12.2927Z\" fill=\"currentColor\"/><Path d=\"M13.369 1.72438C13.7618 1.40402 14.3408 1.42662 14.7069 1.79273L22.2069 9.29273C22.5971 9.68328 22.5973 10.3164 22.2069 10.7068L19.8368 13.0759L11.1209 3.96363L13.2928 1.79273L13.369 1.72438Z\" fill=\"currentColor\"/></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,sBAEqB,IAArB,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAAi4B,EAAj4B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ikBAAikB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kMAAkM,KAAK,eAAc,CAAI,GAG33B",
|
|
9
|
+
"debugId": "818114713B83007A64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:r=24,...C})=>{return p.createElement(l,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as t}from"react-native-svg";var L=(o)=>{return e.createElement(n,{...o},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.6336 14.2791L18.2069 14.7068C18.054 14.8597 17.8555 14.9594 17.6415 14.99L14.4706 15.4421L7.70689 22.2068C7.31646 22.5971 6.68333 22.5969 6.29282 22.2068L1.79282 17.7068C1.40235 17.3163 1.40244 16.6833 1.79282 16.2927L8.5565 9.52809L9.00962 6.35816C9.04023 6.14409 9.13994 5.94568 9.29282 5.79273L9.91782 5.16676L18.6336 14.2791ZM11.7069 12.2927C11.3164 11.9022 10.6833 11.9022 10.2928 12.2927L9.29282 13.2927C8.90236 13.6833 8.90232 14.3163 9.29282 14.7068C9.68334 15.0971 10.3164 15.0972 10.7069 14.7068L11.7069 13.7068C12.0974 13.3163 12.0972 12.6833 11.7069 12.2927Z",fill:"currentColor"}),e.createElement(t,{d:"M13.369 1.72438C13.7618 1.40402 14.3408 1.42662 14.7069 1.79273L22.2069 9.29273C22.5971 9.68328 22.5973 10.3164 22.2069 10.7068L19.8368 13.0759L11.1209 3.96363L13.2928 1.79273L13.369 1.72438Z",fill:"currentColor"}))},v=L;export{v as default,L as IconTorch};
|
|
2
|
+
|
|
3
|
+
//# debugId=30C182015EFD097A64756E2164756E21
|
|
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconTorch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.6336 14.2791L18.2069 14.7068C18.054 14.8597 17.8555 14.9594 17.6415 14.99L14.4706 15.4421L7.70689 22.2068C7.31646 22.5971 6.68333 22.5969 6.29282 22.2068L1.79282 17.7068C1.40235 17.3163 1.40244 16.6833 1.79282 16.2927L8.5565 9.52809L9.00962 6.35816C9.04023 6.14409 9.13994 5.94568 9.29282 5.79273L9.91782 5.16676L18.6336 14.2791ZM11.7069 12.2927C11.3164 11.9022 10.6833 11.9022 10.2928 12.2927L9.29282 13.2927C8.90236 13.6833 8.90232 14.3163 9.29282 14.7068C9.68334 15.0971 10.3164 15.0972 10.7069 14.7068L11.7069 13.7068C12.0974 13.3163 12.0972 12.6833 11.7069 12.2927Z\" fill=\"currentColor\"/><Path d=\"M13.369 1.72438C13.7618 1.40402 14.3408 1.42662 14.7069 1.79273L22.2069 9.29273C22.5971 9.68328 22.5973 10.3164 22.2069 10.7068L19.8368 13.0759L11.1209 3.96363L13.2928 1.79273L13.369 1.72438Z\" fill=\"currentColor\"/></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,eAAS,yBAEF,IAAM,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAAi4B,EAAj4B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ikBAAikB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kMAAkM,KAAK,eAAc,CAAI,GAG33B",
|
|
9
|
+
"debugId": "30C182015EFD097A64756E2164756E21",
|
|
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
|
|