@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.261 → 1.1.263
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/IconControllerButtonCircle/index.d.ts +4 -0
- package/IconControllerButtonCircle/index.js +3 -0
- package/IconControllerButtonCircle/index.js.map +11 -0
- package/IconControllerButtonCircle/index.mjs +3 -0
- package/IconControllerButtonCircle/index.mjs.map +11 -0
- package/IconControllerButtonSquare/index.d.ts +4 -0
- package/IconControllerButtonSquare/index.js +3 -0
- package/IconControllerButtonSquare/index.js.map +11 -0
- package/IconControllerButtonSquare/index.mjs +3 -0
- package/IconControllerButtonSquare/index.mjs.map +11 -0
- package/IconControllerButtonTriangle/index.d.ts +4 -0
- package/IconControllerButtonTriangle/index.js +3 -0
- package/IconControllerButtonTriangle/index.js.map +11 -0
- package/IconControllerButtonTriangle/index.mjs +3 -0
- package/IconControllerButtonTriangle/index.mjs.map +11 -0
- package/IconControllerButtonX/index.d.ts +4 -0
- package/IconControllerButtonX/index.js +3 -0
- package/IconControllerButtonX/index.js.map +11 -0
- package/IconControllerButtonX/index.mjs +3 -0
- package/IconControllerButtonX/index.mjs.map +11 -0
- 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/README.md +5 -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 +5 -0
- package/index.js +15 -0
- package/index.mjs +5 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +6 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:d,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:k}=Object,u=Object.prototype.hasOwnProperty;function x(r){return this[r]}var F,S,B=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var a=o?F??=new WeakMap:S??=new WeakMap,m=a.get(r);if(m)return m}t=r!=null?v(d(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let l of f(r))if(!u.call(p,l))n(p,l,{get:x.bind(r,l),enumerable:!0});if(e)a.set(r,p);return p},I=(r)=>{var o=(i??=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 f(r))if(!u.call(o,e))n(o,e,{get:x.bind(r,e),enumerable:!(t=k(r,e))||t.enumerable})}return i.set(r,o),o},i;var b=(r)=>r;function w(r,o){this[r]=b.bind(null,o)}var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:w.bind(o,t)})};var W={};g(W,{CentralIconBase:()=>s});module.exports=I(W);var y=B(require("react")),P=require("react-native-svg"),s=({children:r,size:o=24,...t})=>{return y.default.createElement(P.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 $={};g($,{default:()=>j,IconControllerButtonCircle:()=>h});module.exports=I($);var c=B(require("react"));var C=require("react-native-svg"),h=(r)=>{return c.default.createElement(s,{...r},c.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),c.default.createElement(C.Circle,{cx:"12",cy:"12",r:"4.5",stroke:"currentColor",strokeWidth:"2"}))},j=h;
|
|
2
|
+
|
|
3
|
+
//# debugId=DA35D560403E604764756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonCircle/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 { Circle } from \"react-native-svg\";\n\nexport const IconControllerButtonCircle: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Circle cx=\"12\" cy=\"12\" r=\"4.5\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonCircle;\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,sFCvBoB,IAA1B,sBAEuB,IAAvB,8BAEa,EAAuD,CAAC,IAAU,CAC7E,OAAO,wBAA0K,EAA1K,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAG,CAAI,GAGpK",
|
|
9
|
+
"debugId": "DA35D560403E604764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import c from"react";import{Svg as l}from"react-native-svg";var e=({children:o,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"},o)};import t from"react";import{Circle as n}from"react-native-svg";var s=(o)=>{return t.createElement(e,{...o},t.createElement(n,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),t.createElement(n,{cx:"12",cy:"12",r:"4.5",stroke:"currentColor",strokeWidth:"2"}))},y=s;export{y as default,s as IconControllerButtonCircle};
|
|
2
|
+
|
|
3
|
+
//# debugId=1E82F4C864F3984264756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonCircle/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 { Circle } from \"react-native-svg\";\n\nexport const IconControllerButtonCircle: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Circle cx=\"12\" cy=\"12\" r=\"4.5\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonCircle;\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,iBAAS,yBAEF,IAAM,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAA0K,EAA1K,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAG,CAAI,GAGpK",
|
|
9
|
+
"debugId": "1E82F4C864F3984264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var d=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:S}=Object,f=Object.prototype.hasOwnProperty;function x(r){return this[r]}var k,F,B=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var c=o?k??=new WeakMap:F??=new WeakMap,m=c.get(r);if(m)return m}t=r!=null?d(v(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let C of u(r))if(!f.call(p,C))n(p,C,{get:x.bind(r,C),enumerable:!0});if(e)c.set(r,p);return p},h=(r)=>{var o=(i??=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 u(r))if(!f.call(o,e))n(o,e,{get:x.bind(r,e),enumerable:!(t=S(r,e))||t.enumerable})}return i.set(r,o),o},i;var b=(r)=>r;function w(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:w.bind(o,t)})};var W={};I(W,{CentralIconBase:()=>a});module.exports=h(W);var g=B(require("react")),y=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return g.default.createElement(y.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 $={};I($,{default:()=>q,IconControllerButtonSquare:()=>P});module.exports=h($);var s=B(require("react"));var l=require("react-native-svg"),P=(r)=>{return s.default.createElement(a,{...r},s.default.createElement(l.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),s.default.createElement(l.Rect,{x:"8",y:"8",width:"8",height:"8",stroke:"currentColor",strokeWidth:"2"}))},q=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=D9286F380245B00F64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonSquare/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 { Circle, Rect } from \"react-native-svg\";\n\nexport const IconControllerButtonSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Rect x=\"8\" y=\"8\" width=\"8\" height=\"8\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonSquare;\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,sFCvBoB,IAA1B,sBAE6B,IAA7B,8BAEa,EAAuD,CAAC,IAAU,CAC7E,OAAO,wBAAiL,EAAjL,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,IAAI,OAAO,IAAI,OAAO,eAAe,YAAY,IAAG,CAAI,GAG3K",
|
|
9
|
+
"debugId": "D9286F380245B00F64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...n})=>{return p.createElement(s,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Circle as l,Rect as C}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(l,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),t.createElement(C,{x:"8",y:"8",width:"8",height:"8",stroke:"currentColor",strokeWidth:"2"}))},y=a;export{y as default,a as IconControllerButtonSquare};
|
|
2
|
+
|
|
3
|
+
//# debugId=A12E7BB84A775AC264756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonSquare/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 { Circle, Rect } from \"react-native-svg\";\n\nexport const IconControllerButtonSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Rect x=\"8\" y=\"8\" width=\"8\" height=\"8\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonSquare;\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,iBAAS,UAAQ,yBAEV,IAAM,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAAiL,EAAjL,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,IAAI,OAAO,IAAI,OAAO,eAAe,YAAY,IAAG,CAAI,GAG3K",
|
|
9
|
+
"debugId": "A12E7BB84A775AC264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:y,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:k}=Object,u=Object.prototype.hasOwnProperty;function B(r){return this[r]}var F,S,x=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var c=o?F??=new WeakMap:S??=new WeakMap,m=c.get(r);if(m)return m}t=r!=null?v(y(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let a of f(r))if(!u.call(p,a))n(p,a,{get:B.bind(r,a),enumerable:!0});if(e)c.set(r,p);return p},I=(r)=>{var o=(i??=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 f(r))if(!u.call(o,e))n(o,e,{get:B.bind(r,e),enumerable:!(t=k(r,e))||t.enumerable})}return i.set(r,o),o},i;var b=(r)=>r;function w(r,o){this[r]=b.bind(null,o)}var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:w.bind(o,t)})};var L={};g(L,{CentralIconBase:()=>C});module.exports=I(L);var P=x(require("react")),h=require("react-native-svg"),C=({children:r,size:o=24,...t})=>{return P.default.createElement(h.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 W={};g(W,{default:()=>$,IconControllerButtonTriangle:()=>d});module.exports=I(W);var l=x(require("react"));var s=require("react-native-svg"),d=(r)=>{return l.default.createElement(C,{...r},l.default.createElement(s.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),l.default.createElement(s.Path,{d:"M12.0003 8L16.114 14.625H7.88672L12.0003 8Z",stroke:"currentColor",strokeWidth:"2"}))},$=d;
|
|
2
|
+
|
|
3
|
+
//# debugId=075F526F14F9536064756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonTriangle/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconControllerButtonTriangle: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12.0003 8L16.114 14.625H7.88672L12.0003 8Z\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonTriangle;\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,wFCvBoB,IAA1B,sBAE6B,IAA7B,8BAEa,EAAyD,CAAC,IAAU,CAC/E,OAAO,wBAAgM,EAAhM,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,8CAA8C,OAAO,eAAe,YAAY,IAAG,CAAI,GAG1L",
|
|
9
|
+
"debugId": "075F526F14F9536064756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...n})=>{return p.createElement(l,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Circle as s,Path as a}from"react-native-svg";var C=(o)=>{return t.createElement(e,{...o},t.createElement(s,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),t.createElement(a,{d:"M12.0003 8L16.114 14.625H7.88672L12.0003 8Z",stroke:"currentColor",strokeWidth:"2"}))},h=C;export{h as default,C as IconControllerButtonTriangle};
|
|
2
|
+
|
|
3
|
+
//# debugId=91C8237C1047C56864756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonTriangle/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconControllerButtonTriangle: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M12.0003 8L16.114 14.625H7.88672L12.0003 8Z\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonTriangle;\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,iBAAS,UAAQ,yBAEV,IAAM,EAAyD,CAAC,IAAU,CAC/E,OAAO,gBAAgM,EAAhM,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,8CAA8C,OAAO,eAAe,YAAY,IAAG,CAAI,GAG1L",
|
|
9
|
+
"debugId": "91C8237C1047C56864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:y,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:k}=Object,u=Object.prototype.hasOwnProperty;function B(r){return this[r]}var F,S,x=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var c=o?F??=new WeakMap:S??=new WeakMap,m=c.get(r);if(m)return m}t=r!=null?v(y(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let C of i(r))if(!u.call(p,C))n(p,C,{get:B.bind(r,C),enumerable:!0});if(e)c.set(r,p);return p},I=(r)=>{var o=(f??=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(!u.call(o,e))n(o,e,{get:B.bind(r,e),enumerable:!(t=k(r,e))||t.enumerable})}return f.set(r,o),o},f;var b=(r)=>r;function w(r,o){this[r]=b.bind(null,o)}var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:w.bind(o,t)})};var L={};P(L,{CentralIconBase:()=>a});module.exports=I(L);var g=x(require("react")),h=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return g.default.createElement(h.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 M={};P(M,{default:()=>W,IconControllerButtonX:()=>d});module.exports=I(M);var s=x(require("react"));var l=require("react-native-svg"),d=(r)=>{return s.default.createElement(a,{...r},s.default.createElement(l.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),s.default.createElement(l.Path,{d:"M8.375 8.375L15.625 15.625M15.625 8.375L8.375 15.625",stroke:"currentColor",strokeWidth:"2"}))},W=d;
|
|
2
|
+
|
|
3
|
+
//# debugId=4C66930095E4DB7764756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonX/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconControllerButtonX: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M8.375 8.375L15.625 15.625M15.625 8.375L8.375 15.625\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonX;\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,iFCvBoB,IAA1B,sBAE6B,IAA7B,8BAEa,EAAkD,CAAC,IAAU,CACxE,OAAO,wBAAyM,EAAzM,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,uDAAuD,OAAO,eAAe,YAAY,IAAG,CAAI,GAGnM",
|
|
9
|
+
"debugId": "4C66930095E4DB7764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...n})=>{return p.createElement(s,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Circle as l,Path as C}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(l,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),t.createElement(C,{d:"M8.375 8.375L15.625 15.625M15.625 8.375L8.375 15.625",stroke:"currentColor",strokeWidth:"2"}))},h=a;export{h as default,a as IconControllerButtonX};
|
|
2
|
+
|
|
3
|
+
//# debugId=7950AD9568D3880864756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconControllerButtonX/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconControllerButtonX: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M8.375 8.375L15.625 15.625M15.625 8.375L8.375 15.625\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconControllerButtonX;\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,iBAAS,UAAQ,yBAEV,IAAM,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAyM,EAAzM,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,uDAAuD,OAAO,eAAe,YAAY,IAAG,CAAI,GAGnM",
|
|
9
|
+
"debugId": "7950AD9568D3880864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:M,defineProperty:p,getOwnPropertyNames:u,getOwnPropertyDescriptor:V}=Object,a=Object.prototype.hasOwnProperty;function c(r){return this[r]}var W,v,h=(r,o,t)=>{var n=r!=null&&typeof r==="object";if(n){var i=o?W??=new WeakMap:v??=new WeakMap,m=i.get(r);if(m)return m}t=r!=null?g(M(r)):{};let C=o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t;for(let l of u(r))if(!a.call(C,l))p(C,l,{get:c.bind(r,l),enumerable:!0});if(n)i.set(r,C);return C},f=(r)=>{var o=(k??=new WeakMap).get(r),t;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of u(r))if(!a.call(o,n))p(o,n,{get:c.bind(r,n),enumerable:!(t=V(r,n))||t.enumerable})}return k.set(r,o),o},k;var y=(r)=>r;function F(r,o){this[r]=y.bind(null,o)}var B=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0,configurable:!0,set:F.bind(o,t)})};var S={};B(S,{CentralIconBase:()=>d});module.exports=f(S);var I=h(require("react")),P=require("react-native-svg"),d=({children:r,size:o=24,...t})=>{return I.default.createElement(P.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 b={};B(b,{default:()=>H,IconPipe:()=>x});module.exports=f(b);var e=h(require("react"));var s=require("react-native-svg"),x=(r)=>{return e.default.createElement(d,{...r},e.default.createElement(s.Path,{d:"M3 20H21",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(s.Path,{d:"M18 10.5V19.5",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(s.Path,{d:"M6 19.5V10.5",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(s.Path,{d:"M4 4H20V10H4V4Z",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(s.Path,{d:"M8 4.5V9.5",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(s.Path,{d:"M10 10.5V19.5",stroke:"currentColor",strokeWidth:"2"}))},H=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=2BB08D1BB726866364756E2164756E21
|
|
@@ -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 20H21\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M18 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M6 19.5V10.5\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M4 4H20V10H4V4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M8 4.5V9.5\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M10 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,wBAAiZ,EAAjZ,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAG,CAAI,GAG3Y",
|
|
9
|
+
"debugId": "2BB08D1BB726866364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:o=24,...s})=>{return p.createElement(C,{...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 t}from"react-native-svg";var l=(e)=>{return r.createElement(n,{...e},r.createElement(t,{d:"M3 20H21",stroke:"currentColor",strokeWidth:"2"}),r.createElement(t,{d:"M18 10.5V19.5",stroke:"currentColor",strokeWidth:"2"}),r.createElement(t,{d:"M6 19.5V10.5",stroke:"currentColor",strokeWidth:"2"}),r.createElement(t,{d:"M4 4H20V10H4V4Z",stroke:"currentColor",strokeWidth:"2"}),r.createElement(t,{d:"M8 4.5V9.5",stroke:"currentColor",strokeWidth:"2"}),r.createElement(t,{d:"M10 10.5V19.5",stroke:"currentColor",strokeWidth:"2"}))},I=l;export{I as default,l as IconPipe};
|
|
2
|
+
|
|
3
|
+
//# debugId=E61CC569963A64A164756E2164756E21
|
|
@@ -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 20H21\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M18 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M6 19.5V10.5\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M4 4H20V10H4V4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M8 4.5V9.5\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M10 10.5V19.5\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,gBAAiZ,EAAjZ,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAG,CAAI,GAG3Y",
|
|
9
|
+
"debugId": "E61CC569963A64A164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -1040,6 +1040,11 @@ Below is a complete list of available icons:
|
|
|
1040
1040
|
- IconSword
|
|
1041
1041
|
- IconGamecontroller
|
|
1042
1042
|
- IconOldJoystick
|
|
1043
|
+
- IconPipe
|
|
1044
|
+
- IconControllerButtonX
|
|
1045
|
+
- IconControllerButtonTriangle
|
|
1046
|
+
- IconControllerButtonSquare
|
|
1047
|
+
- IconControllerButtonCircle
|
|
1043
1048
|
|
|
1044
1049
|
### Hands
|
|
1045
1050
|
|