@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.262 → 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.
Files changed (34) hide show
  1. package/IconControllerButtonCircle/index.d.ts +4 -0
  2. package/IconControllerButtonCircle/index.js +3 -0
  3. package/IconControllerButtonCircle/index.js.map +11 -0
  4. package/IconControllerButtonCircle/index.mjs +3 -0
  5. package/IconControllerButtonCircle/index.mjs.map +11 -0
  6. package/IconControllerButtonSquare/index.d.ts +4 -0
  7. package/IconControllerButtonSquare/index.js +3 -0
  8. package/IconControllerButtonSquare/index.js.map +11 -0
  9. package/IconControllerButtonSquare/index.mjs +3 -0
  10. package/IconControllerButtonSquare/index.mjs.map +11 -0
  11. package/IconControllerButtonTriangle/index.d.ts +4 -0
  12. package/IconControllerButtonTriangle/index.js +3 -0
  13. package/IconControllerButtonTriangle/index.js.map +11 -0
  14. package/IconControllerButtonTriangle/index.mjs +3 -0
  15. package/IconControllerButtonTriangle/index.mjs.map +11 -0
  16. package/IconControllerButtonX/index.d.ts +4 -0
  17. package/IconControllerButtonX/index.js +3 -0
  18. package/IconControllerButtonX/index.js.map +11 -0
  19. package/IconControllerButtonX/index.mjs +3 -0
  20. package/IconControllerButtonX/index.mjs.map +11 -0
  21. package/README.md +4 -0
  22. package/filtered-icons.json +1 -1
  23. package/icons/index.d.ts +1 -1
  24. package/icons/index.js +2 -2
  25. package/icons/index.js.map +3 -3
  26. package/icons/index.mjs +2 -2
  27. package/icons/index.mjs.map +3 -3
  28. package/icons-index.json +4 -4
  29. package/index.d.ts +4 -0
  30. package/index.js +12 -0
  31. package/index.mjs +4 -0
  32. package/license-check.js +1 -1
  33. package/package.json +1 -1
  34. package/skills/central-icons-react-native/SKILL.md +6 -2
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconControllerButtonCircle: FC<CentralIconBaseProps>;
4
+ export default IconControllerButtonCircle;
@@ -0,0 +1,3 @@
1
+ var F=Object.create;var{getPrototypeOf:S,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:b}=Object,x=Object.prototype.hasOwnProperty;function B(r){return this[r]}var h,d,i=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var a=o?h??=new WeakMap:d??=new WeakMap,m=a.get(r);if(m)return m}t=r!=null?F(S(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let l of u(r))if(!x.call(p,l))n(p,l,{get:B.bind(r,l),enumerable:!0});if(e)a.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 u(r))if(!x.call(o,e))n(o,e,{get:B.bind(r,e),enumerable:!(t=b(r,e))||t.enumerable})}return f.set(r,o),o},f;var k=(r)=>r;function w(r,o){this[r]=k.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 $={};g($,{CentralIconBase:()=>C});module.exports=I($);var y=i(require("react")),P=require("react-native-svg"),C=({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 j={};g(j,{default:()=>q,IconControllerButtonCircle:()=>v});module.exports=I(j);var c=i(require("react"));var s=require("react-native-svg"),v=(r)=>{return c.default.createElement(C,{...r},c.default.createElement(s.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),c.default.createElement(s.Circle,{cx:"12",cy:"12",r:"5",stroke:"currentColor"}))},q=v;
2
+
3
+ //# debugId=8B1C5A954C2FC39B64756E2164756E21
@@ -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.5\" stroke=\"currentColor\"/><Circle cx=\"12\" cy=\"12\" r=\"5\" stroke=\"currentColor\"/></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,wBAA0I,EAA1I,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAc,CAAI,GAGpI",
9
+ "debugId": "8B1C5A954C2FC39B64756E2164756E21",
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 C=(o)=>{return t.createElement(e,{...o},t.createElement(n,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),t.createElement(n,{cx:"12",cy:"12",r:"5",stroke:"currentColor"}))},y=C;export{y as default,C as IconControllerButtonCircle};
2
+
3
+ //# debugId=A506CD6AB0F7544D64756E2164756E21
@@ -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.5\" stroke=\"currentColor\"/><Circle cx=\"12\" cy=\"12\" r=\"5\" stroke=\"currentColor\"/></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,gBAA0I,EAA1I,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAc,CAAI,GAGpI",
9
+ "debugId": "A506CD6AB0F7544D64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconControllerButtonSquare: FC<CentralIconBaseProps>;
4
+ export default IconControllerButtonSquare;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:S,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function x(r){return this[r]}var b,d,B=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var s=o?b??=new WeakMap:d??=new WeakMap,m=s.get(r);if(m)return m}t=r!=null?v(S(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let a of f(r))if(!i.call(p,a))n(p,a,{get:x.bind(r,a),enumerable:!0});if(e)s.set(r,p);return p},I=(r)=>{var o=(u??=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(!i.call(o,e))n(o,e,{get:x.bind(r,e),enumerable:!(t=F(r,e))||t.enumerable})}return u.set(r,o),o},u;var w=(r)=>r;function k(r,o){this[r]=w.bind(null,o)}var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:k.bind(o,t)})};var $={};g($,{CentralIconBase:()=>c});module.exports=I($);var h=B(require("react")),y=require("react-native-svg"),c=({children:r,size:o=24,...t})=>{return h.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 q={};g(q,{default:()=>j,IconControllerButtonSquare:()=>P});module.exports=I(q);var l=B(require("react"));var C=require("react-native-svg"),P=(r)=>{return l.default.createElement(c,{...r},l.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),l.default.createElement(C.Rect,{x:"7.5",y:"7.5",width:"9",height:"9",stroke:"currentColor"}))},j=P;
2
+
3
+ //# debugId=C04803B39AD4E7AF64756E2164756E21
@@ -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.5\" stroke=\"currentColor\"/><Rect x=\"7.5\" y=\"7.5\" width=\"9\" height=\"9\" stroke=\"currentColor\"/></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,wBAAuJ,EAAvJ,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,MAAM,EAAE,MAAM,MAAM,IAAI,OAAO,IAAI,OAAO,eAAc,CAAI,GAGjJ",
9
+ "debugId": "C04803B39AD4E7AF64756E2164756E21",
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 C,Rect as a}from"react-native-svg";var c=(o)=>{return t.createElement(e,{...o},t.createElement(C,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),t.createElement(a,{x:"7.5",y:"7.5",width:"9",height:"9",stroke:"currentColor"}))},y=c;export{y as default,c as IconControllerButtonSquare};
2
+
3
+ //# debugId=549CD49D2B0854C364756E2164756E21
@@ -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.5\" stroke=\"currentColor\"/><Rect x=\"7.5\" y=\"7.5\" width=\"9\" height=\"9\" stroke=\"currentColor\"/></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,gBAAuJ,EAAvJ,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,MAAM,EAAE,MAAM,MAAM,IAAI,OAAO,IAAI,OAAO,eAAc,CAAI,GAGjJ",
9
+ "debugId": "549CD49D2B0854C364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconControllerButtonTriangle: FC<CentralIconBaseProps>;
4
+ export default IconControllerButtonTriangle;
@@ -0,0 +1,3 @@
1
+ var h=Object.create;var{getPrototypeOf:F,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:S}=Object,B=Object.prototype.hasOwnProperty;function i(r){return this[r]}var b,d,x=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var c=o?b??=new WeakMap:d??=new WeakMap,m=c.get(r);if(m)return m}t=r!=null?h(F(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let C of u(r))if(!B.call(p,C))n(p,C,{get:i.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 u(r))if(!B.call(o,e))n(o,e,{get:i.bind(r,e),enumerable:!(t=S(r,e))||t.enumerable})}return f.set(r,o),o},f;var k=(r)=>r;function w(r,o){this[r]=k.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:()=>s});module.exports=I(L);var P=x(require("react")),v=require("react-native-svg"),s=({children:r,size:o=24,...t})=>{return P.default.createElement(v.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:()=>H,IconControllerButtonTriangle:()=>y});module.exports=I($);var l=x(require("react"));var a=require("react-native-svg"),y=(r)=>{return l.default.createElement(s,{...r},l.default.createElement(a.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),l.default.createElement(a.Path,{d:"M12.0003 7.5L16.614 15.125H7.38672L12.0003 7.5Z",stroke:"currentColor"}))},H=y;
2
+
3
+ //# debugId=7DC039C69FD4557C64756E2164756E21
@@ -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.5\" stroke=\"currentColor\"/><Path d=\"M12.0003 7.5L16.614 15.125H7.38672L12.0003 7.5Z\" stroke=\"currentColor\"/></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,wBAAsK,EAAtK,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kDAAkD,OAAO,eAAc,CAAI,GAGhK",
9
+ "debugId": "7DC039C69FD4557C64756E2164756E21",
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 a,Path as C}from"react-native-svg";var s=(o)=>{return t.createElement(e,{...o},t.createElement(a,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),t.createElement(C,{d:"M12.0003 7.5L16.614 15.125H7.38672L12.0003 7.5Z",stroke:"currentColor"}))},v=s;export{v as default,s as IconControllerButtonTriangle};
2
+
3
+ //# debugId=A70173821D47B0EF64756E2164756E21
@@ -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.5\" stroke=\"currentColor\"/><Path d=\"M12.0003 7.5L16.614 15.125H7.38672L12.0003 7.5Z\" stroke=\"currentColor\"/></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,gBAAsK,EAAtK,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kDAAkD,OAAO,eAAc,CAAI,GAGhK",
9
+ "debugId": "A70173821D47B0EF64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconControllerButtonX: FC<CentralIconBaseProps>;
4
+ export default IconControllerButtonX;
@@ -0,0 +1,3 @@
1
+ var h=Object.create;var{getPrototypeOf:F,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:S}=Object,B=Object.prototype.hasOwnProperty;function x(r){return this[r]}var b,d,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var c=o?b??=new WeakMap:d??=new WeakMap,m=c.get(r);if(m)return m}t=r!=null?h(F(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let a of u(r))if(!B.call(p,a))n(p,a,{get:x.bind(r,a),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 u(r))if(!B.call(o,e))n(o,e,{get:x.bind(r,e),enumerable:!(t=S(r,e))||t.enumerable})}return f.set(r,o),o},f;var k=(r)=>r;function w(r,o){this[r]=k.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:()=>s});module.exports=i(L);var g=I(require("react")),v=require("react-native-svg"),s=({children:r,size:o=24,...t})=>{return g.default.createElement(v.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:()=>$,IconControllerButtonX:()=>y});module.exports=i(M);var l=I(require("react"));var C=require("react-native-svg"),y=(r)=>{return l.default.createElement(s,{...r},l.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),l.default.createElement(C.Path,{d:"M8 8L16 16M16 8L8 16",stroke:"currentColor"}))},$=y;
2
+
3
+ //# debugId=C95A7DD76C41A7EE64756E2164756E21
@@ -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.5\" stroke=\"currentColor\"/><Path d=\"M8 8L16 16M16 8L8 16\" stroke=\"currentColor\"/></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,wBAA2I,EAA3I,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uBAAuB,OAAO,eAAc,CAAI,GAGrI",
9
+ "debugId": "C95A7DD76C41A7EE64756E2164756E21",
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 C,Path as a}from"react-native-svg";var s=(o)=>{return t.createElement(e,{...o},t.createElement(C,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),t.createElement(a,{d:"M8 8L16 16M16 8L8 16",stroke:"currentColor"}))},v=s;export{v as default,s as IconControllerButtonX};
2
+
3
+ //# debugId=90B72B4BD9C9E96864756E2164756E21
@@ -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.5\" stroke=\"currentColor\"/><Path d=\"M8 8L16 16M16 8L8 16\" stroke=\"currentColor\"/></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,gBAA2I,EAA3I,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uBAAuB,OAAO,eAAc,CAAI,GAGrI",
9
+ "debugId": "90B72B4BD9C9E96864756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1041,6 +1041,10 @@ Below is a complete list of available icons:
1041
1041
  - IconGamecontroller
1042
1042
  - IconOldJoystick
1043
1043
  - IconPipe
1044
+ - IconControllerButtonX
1045
+ - IconControllerButtonTriangle
1046
+ - IconControllerButtonSquare
1047
+ - IconControllerButtonCircle
1044
1048
 
1045
1049
  ### Hands
1046
1050