@central-icons-react-native/round-filled-radius-3-stroke-2 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.
- 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/README.md +4 -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 +4 -0
- package/index.js +12 -0
- package/index.mjs +4 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +6 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:y,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:F}=Object,u=Object.prototype.hasOwnProperty;function B(r){return this[r]}var S,b,d=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var c=o?S??=new WeakMap:b??=new WeakMap,f=c.get(r);if(f)return f}e=r!=null?h(y(r)):{};let C=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let p of i(r))if(!u.call(C,p))n(C,p,{get:B.bind(r,p),enumerable:!0});if(t)c.set(r,C);return C},I=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of i(r))if(!u.call(o,t))n(o,t,{get:B.bind(r,t),enumerable:!(e=F(r,t))||e.enumerable})}return s.set(r,o),o},s;var M=(r)=>r;function Z(r,o){this[r]=M.bind(null,o)}var v=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:Z.bind(o,e)})};var w={};v(w,{CentralIconBase:()=>a});module.exports=I(w);var x=d(require("react")),P=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return x.default.createElement(P.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 $={};v($,{default:()=>j,IconControllerButtonCircle:()=>g});module.exports=I($);var l=d(require("react"));var m=require("react-native-svg"),g=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(m.Path,{d:"M12 8.5C13.933 8.5 15.5 10.067 15.5 12C15.5 13.933 13.933 15.5 12 15.5C10.067 15.5 8.5 13.933 8.5 12C8.5 10.067 10.067 8.5 12 8.5Z",fill:"currentColor"}),l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6.5C8.96243 6.5 6.5 8.96243 6.5 12C6.5 15.0376 8.96243 17.5 12 17.5C15.0376 17.5 17.5 15.0376 17.5 12C17.5 8.96243 15.0376 6.5 12 6.5Z",fill:"currentColor"}))},j=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=48E909BEAC431C0864756E2164756E21
|
|
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconControllerButtonCircle: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M12 8.5C13.933 8.5 15.5 10.067 15.5 12C15.5 13.933 13.933 15.5 12 15.5C10.067 15.5 8.5 13.933 8.5 12C8.5 10.067 10.067 8.5 12 8.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6.5C8.96243 6.5 6.5 8.96243 6.5 12C6.5 15.0376 8.96243 17.5 12 17.5C15.0376 17.5 17.5 15.0376 17.5 12C17.5 8.96243 15.0376 6.5 12 6.5Z\" fill=\"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,sBAEqB,IAArB,8BAEa,EAAuD,CAAC,IAAU,CAC7E,OAAO,wBAAggB,EAAhgB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,qIAAqI,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6PAA6P,KAAK,eAAc,CAAI,GAG1f",
|
|
9
|
+
"debugId": "48E909BEAC431C0864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...C})=>{return l.createElement(p,{...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 n}from"react-native-svg";var a=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M12 8.5C13.933 8.5 15.5 10.067 15.5 12C15.5 13.933 13.933 15.5 12 15.5C10.067 15.5 8.5 13.933 8.5 12C8.5 10.067 10.067 8.5 12 8.5Z",fill:"currentColor"}),e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6.5C8.96243 6.5 6.5 8.96243 6.5 12C6.5 15.0376 8.96243 17.5 12 17.5C15.0376 17.5 17.5 15.0376 17.5 12C17.5 8.96243 15.0376 6.5 12 6.5Z",fill:"currentColor"}))},x=a;export{x as default,a as IconControllerButtonCircle};
|
|
2
|
+
|
|
3
|
+
//# debugId=B52FC8957175202E64756E2164756E21
|
|
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconControllerButtonCircle: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M12 8.5C13.933 8.5 15.5 10.067 15.5 12C15.5 13.933 13.933 15.5 12 15.5C10.067 15.5 8.5 13.933 8.5 12C8.5 10.067 10.067 8.5 12 8.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6.5C8.96243 6.5 6.5 8.96243 6.5 12C6.5 15.0376 8.96243 17.5 12 17.5C15.0376 17.5 17.5 15.0376 17.5 12C17.5 8.96243 15.0376 6.5 12 6.5Z\" fill=\"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,eAAS,yBAEF,IAAM,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAAggB,EAAhgB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,qIAAqI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6PAA6P,KAAK,eAAc,CAAI,GAG1f",
|
|
9
|
+
"debugId": "B52FC8957175202E64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var S=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var F,H,d=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var f=o?F??=new WeakMap:H??=new WeakMap,s=f.get(r);if(s)return s}e=r!=null?S(h(r)):{};let C=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let p of c(r))if(!i.call(C,p))n(C,p,{get:B.bind(r,p),enumerable:!0});if(t)f.set(r,C);return C},I=(r)=>{var o=(u??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!i.call(o,t))n(o,t,{get:B.bind(r,t),enumerable:!(e=y(r,t))||e.enumerable})}return u.set(r,o),o},u;var V=(r)=>r;function b(r,o){this[r]=V.bind(null,o)}var v=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var M={};v(M,{CentralIconBase:()=>a});module.exports=I(M);var x=d(require("react")),P=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return x.default.createElement(P.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 Z={};v(Z,{default:()=>w,IconControllerButtonSquare:()=>g});module.exports=I(Z);var l=d(require("react"));var m=require("react-native-svg"),g=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(m.Path,{d:"M14 9C14.5523 9 15 9.44772 15 10V14C15 14.5523 14.5523 15 14 15H10C9.44772 15 9 14.5523 9 14V10C9 9.44772 9.44772 9 10 9H14Z",fill:"currentColor"}),l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 7C8.34315 7 7 8.34315 7 10V14C7 15.6569 8.34315 17 10 17H14C15.6569 17 17 15.6569 17 14V10C17 8.34315 15.6569 7 14 7H10Z",fill:"currentColor"}))},w=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=D112EE50935E018564756E2164756E21
|
|
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconControllerButtonSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M14 9C14.5523 9 15 9.44772 15 10V14C15 14.5523 14.5523 15 14 15H10C9.44772 15 9 14.5523 9 14V10C9 9.44772 9.44772 9 10 9H14Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 7C8.34315 7 7 8.34315 7 10V14C7 15.6569 8.34315 17 10 17H14C15.6569 17 17 15.6569 17 14V10C17 8.34315 15.6569 7 14 7H10Z\" fill=\"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,sBAEqB,IAArB,8BAEa,EAAuD,CAAC,IAAU,CAC7E,OAAO,wBAA4e,EAA5e,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+OAA+O,KAAK,eAAc,CAAI,GAGte",
|
|
9
|
+
"debugId": "D112EE50935E018564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...C})=>{return l.createElement(p,{...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 n}from"react-native-svg";var a=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M14 9C14.5523 9 15 9.44772 15 10V14C15 14.5523 14.5523 15 14 15H10C9.44772 15 9 14.5523 9 14V10C9 9.44772 9.44772 9 10 9H14Z",fill:"currentColor"}),e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 7C8.34315 7 7 8.34315 7 10V14C7 15.6569 8.34315 17 10 17H14C15.6569 17 17 15.6569 17 14V10C17 8.34315 15.6569 7 14 7H10Z",fill:"currentColor"}))},x=a;export{x as default,a as IconControllerButtonSquare};
|
|
2
|
+
|
|
3
|
+
//# debugId=16939FCF4B15162264756E2164756E21
|
|
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconControllerButtonSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M14 9C14.5523 9 15 9.44772 15 10V14C15 14.5523 14.5523 15 14 15H10C9.44772 15 9 14.5523 9 14V10C9 9.44772 9.44772 9 10 9H14Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM10 7C8.34315 7 7 8.34315 7 10V14C7 15.6569 8.34315 17 10 17H14C15.6569 17 17 15.6569 17 14V10C17 8.34315 15.6569 7 14 7H10Z\" fill=\"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,eAAS,yBAEF,IAAM,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAA4e,EAA5e,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+OAA+O,KAAK,eAAc,CAAI,GAGte",
|
|
9
|
+
"debugId": "16939FCF4B15162264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:y,defineProperty:t,getOwnPropertyNames:i,getOwnPropertyDescriptor:F}=Object,u=Object.prototype.hasOwnProperty;function B(r){return this[r]}var L,S,d=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var f=o?L??=new WeakMap:S??=new WeakMap,s=f.get(r);if(s)return s}e=r!=null?h(y(r)):{};let l=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let p of i(r))if(!u.call(l,p))t(l,p,{get:B.bind(r,p),enumerable:!0});if(n)f.set(r,l);return l},I=(r)=>{var o=(c??=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 i(r))if(!u.call(o,n))t(o,n,{get:B.bind(r,n),enumerable:!(e=F(r,n))||e.enumerable})}return c.set(r,o),o},c;var b=(r)=>r;function M(r,o){this[r]=b.bind(null,o)}var g=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var Z={};g(Z,{CentralIconBase:()=>a});module.exports=I(Z);var v=d(require("react")),x=require("react-native-svg"),a=({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={};g(w,{default:()=>H,IconControllerButtonTriangle:()=>P});module.exports=I(w);var C=d(require("react"));var m=require("react-native-svg"),P=(r)=>{return C.default.createElement(a,{...r},C.default.createElement(m.Path,{d:"M11.8174 9.22656C11.9017 9.09117 12.0983 9.09117 12.1826 9.22656L14.998 13.7598C15.0868 13.9033 14.9833 14.0889 14.8145 14.0889H9.18555C9.01674 14.0889 8.91324 13.9033 9.00195 13.7598L11.8174 9.22656Z",fill:"currentColor"}),C.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM13.8818 8.17188C13.0152 6.77614 10.9848 6.77615 10.1182 8.17188L7.30371 12.7041C6.38733 14.1799 7.44835 16.0889 9.18555 16.0889H14.8145C16.5516 16.0889 17.6127 14.1799 16.6963 12.7041L13.8818 8.17188Z",fill:"currentColor"}))},H=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=6D7007BB7C814B3C64756E2164756E21
|
|
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconControllerButtonTriangle: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M11.8174 9.22656C11.9017 9.09117 12.0983 9.09117 12.1826 9.22656L14.998 13.7598C15.0868 13.9033 14.9833 14.0889 14.8145 14.0889H9.18555C9.01674 14.0889 8.91324 13.9033 9.00195 13.7598L11.8174 9.22656Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM13.8818 8.17188C13.0152 6.77614 10.9848 6.77615 10.1182 8.17188L7.30371 12.7041C6.38733 14.1799 7.44835 16.0889 9.18555 16.0889H14.8145C16.5516 16.0889 17.6127 14.1799 16.6963 12.7041L13.8818 8.17188Z\" fill=\"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,sBAEqB,IAArB,8BAEa,EAAyD,CAAC,IAAU,CAC/E,OAAO,wBAAqoB,EAAroB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,2MAA2M,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4TAA4T,KAAK,eAAc,CAAI,GAG/nB",
|
|
9
|
+
"debugId": "6D7007BB7C814B3C64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";import{Svg as p}from"react-native-svg";var n=({children:o,size:r=24,...l})=>{return C.createElement(p,{...l,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 a=(o)=>{return e.createElement(n,{...o},e.createElement(t,{d:"M11.8174 9.22656C11.9017 9.09117 12.0983 9.09117 12.1826 9.22656L14.998 13.7598C15.0868 13.9033 14.9833 14.0889 14.8145 14.0889H9.18555C9.01674 14.0889 8.91324 13.9033 9.00195 13.7598L11.8174 9.22656Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM13.8818 8.17188C13.0152 6.77614 10.9848 6.77615 10.1182 8.17188L7.30371 12.7041C6.38733 14.1799 7.44835 16.0889 9.18555 16.0889H14.8145C16.5516 16.0889 17.6127 14.1799 16.6963 12.7041L13.8818 8.17188Z",fill:"currentColor"}))},v=a;export{v as default,a as IconControllerButtonTriangle};
|
|
2
|
+
|
|
3
|
+
//# debugId=F372D31150EC6AB764756E2164756E21
|
|
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconControllerButtonTriangle: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M11.8174 9.22656C11.9017 9.09117 12.0983 9.09117 12.1826 9.22656L14.998 13.7598C15.0868 13.9033 14.9833 14.0889 14.8145 14.0889H9.18555C9.01674 14.0889 8.91324 13.9033 9.00195 13.7598L11.8174 9.22656Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM13.8818 8.17188C13.0152 6.77614 10.9848 6.77615 10.1182 8.17188L7.30371 12.7041C6.38733 14.1799 7.44835 16.0889 9.18555 16.0889H14.8145C16.5516 16.0889 17.6127 14.1799 16.6963 12.7041L13.8818 8.17188Z\" fill=\"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,eAAS,yBAEF,IAAM,EAAyD,CAAC,IAAU,CAC/E,OAAO,gBAAqoB,EAAroB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,2MAA2M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4TAA4T,KAAK,eAAc,CAAI,GAG/nB",
|
|
9
|
+
"debugId": "F372D31150EC6AB764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function i(o){return this[o]}var F,S,B=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var m=r?F??=new WeakMap:S??=new WeakMap,s=m.get(o);if(s)return s}e=o!=null?g(h(o)):{};let C=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let p of f(o))if(!u.call(C,p))n(C,p,{get:i.bind(o,p),enumerable:!0});if(t)m.set(o,C);return C},I=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of f(o))if(!u.call(r,t))n(r,t,{get:i.bind(o,t),enumerable:!(e=y(o,t))||e.enumerable})}return c.set(o,r),r},c;var b=(o)=>o;function w(o,r){this[o]=b.bind(null,r)}var L=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:w.bind(r,e)})};var M={};L(M,{CentralIconBase:()=>l});module.exports=I(M);var d=B(require("react")),v=require("react-native-svg"),l=({children:o,size:r=24,...e})=>{return d.default.createElement(v.Svg,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var Z={};L(Z,{default:()=>$,IconControllerButtonX:()=>P});module.exports=I(Z);var a=B(require("react"));var x=require("react-native-svg"),P=(o)=>{return a.default.createElement(l,{...o},a.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.082 7.91797C15.6915 7.52744 15.0585 7.52744 14.668 7.91797L12 10.5859L9.33203 7.91797C8.94151 7.52744 8.30849 7.52744 7.91797 7.91797C7.52744 8.30849 7.52744 8.94151 7.91797 9.33203L10.5859 12L7.91797 14.668C7.52744 15.0585 7.52744 15.6915 7.91797 16.082C8.30849 16.4726 8.94151 16.4726 9.33203 16.082L12 13.4141L14.668 16.082C15.0585 16.4726 15.6915 16.4726 16.082 16.082C16.4726 15.6915 16.4726 15.0585 16.082 14.668L13.4141 12L16.082 9.33203C16.4726 8.94151 16.4726 8.30849 16.082 7.91797Z",fill:"currentColor"}))},$=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=4F6420610C8D38D564756E2164756E21
|
|
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconControllerButtonX: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.082 7.91797C15.6915 7.52744 15.0585 7.52744 14.668 7.91797L12 10.5859L9.33203 7.91797C8.94151 7.52744 8.30849 7.52744 7.91797 7.91797C7.52744 8.30849 7.52744 8.94151 7.91797 9.33203L10.5859 12L7.91797 14.668C7.52744 15.0585 7.52744 15.6915 7.91797 16.082C8.30849 16.4726 8.94151 16.4726 9.33203 16.082L12 13.4141L14.668 16.082C15.0585 16.4726 15.6915 16.4726 16.082 16.082C16.4726 15.6915 16.4726 15.0585 16.082 14.668L13.4141 12L16.082 9.33203C16.4726 8.94151 16.4726 8.30849 16.082 7.91797Z\" fill=\"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,sBAEqB,IAArB,8BAEa,EAAkD,CAAC,IAAU,CACxE,OAAO,wBAAosB,EAApsB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mmBAAmmB,KAAK,eAAc,CAAI,GAG9rB",
|
|
9
|
+
"debugId": "4F6420610C8D38D564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>{return C.createElement(p,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import t from"react";import{Path as l}from"react-native-svg";var a=(r)=>{return t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.082 7.91797C15.6915 7.52744 15.0585 7.52744 14.668 7.91797L12 10.5859L9.33203 7.91797C8.94151 7.52744 8.30849 7.52744 7.91797 7.91797C7.52744 8.30849 7.52744 8.94151 7.91797 9.33203L10.5859 12L7.91797 14.668C7.52744 15.0585 7.52744 15.6915 7.91797 16.082C8.30849 16.4726 8.94151 16.4726 9.33203 16.082L12 13.4141L14.668 16.082C15.0585 16.4726 15.6915 16.4726 16.082 16.082C16.4726 15.6915 16.4726 15.0585 16.082 14.668L13.4141 12L16.082 9.33203C16.4726 8.94151 16.4726 8.30849 16.082 7.91797Z",fill:"currentColor"}))},v=a;export{v as default,a as IconControllerButtonX};
|
|
2
|
+
|
|
3
|
+
//# debugId=6512A90523F63D1D64756E2164756E21
|
|
@@ -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 { Path } from \"react-native-svg\";\n\nexport const IconControllerButtonX: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.082 7.91797C15.6915 7.52744 15.0585 7.52744 14.668 7.91797L12 10.5859L9.33203 7.91797C8.94151 7.52744 8.30849 7.52744 7.91797 7.91797C7.52744 8.30849 7.52744 8.94151 7.91797 9.33203L10.5859 12L7.91797 14.668C7.52744 15.0585 7.52744 15.6915 7.91797 16.082C8.30849 16.4726 8.94151 16.4726 9.33203 16.082L12 13.4141L14.668 16.082C15.0585 16.4726 15.6915 16.4726 16.082 16.082C16.4726 15.6915 16.4726 15.0585 16.082 14.668L13.4141 12L16.082 9.33203C16.4726 8.94151 16.4726 8.30849 16.082 7.91797Z\" fill=\"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,eAAS,yBAEF,IAAM,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAosB,EAApsB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mmBAAmmB,KAAK,eAAc,CAAI,GAG9rB",
|
|
9
|
+
"debugId": "6512A90523F63D1D64756E2164756E21",
|
|
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
|
|