@central-icons-react-native/round-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.
- 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 P=Object.create;var{getPrototypeOf:v,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:F}=Object,f=Object.prototype.hasOwnProperty;function x(r){return this[r]}var L,S,B=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var a=o?L??=new WeakMap:S??=new WeakMap,i=a.get(r);if(i)return i}e=r!=null?P(v(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let s of u(r))if(!f.call(p,s))t(p,s,{get:x.bind(r,s),enumerable:!0});if(n)a.set(r,p);return p},I=(r)=>{var o=(m??=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 u(r))if(!f.call(o,n))t(o,n,{get:x.bind(r,n),enumerable:!(e=F(r,n))||e.enumerable})}return m.set(r,o),o},m;var b=(r)=>r;function h(r,o){this[r]=b.bind(null,o)}var d=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:h.bind(o,e)})};var j={};d(j,{CentralIconBase:()=>l});module.exports=I(j);var g=B(require("react")),k=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return g.default.createElement(k.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={};d(w,{default:()=>$,IconControllerButtonCircle:()=>y});module.exports=I(w);var c=B(require("react"));var C=require("react-native-svg"),y=(r)=>{return c.default.createElement(l,{...r},c.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),c.default.createElement(C.Circle,{cx:"12",cy:"12",r:"5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},$=y;
|
|
2
|
+
|
|
3
|
+
//# debugId=F6BE0963C3ED227964756E2164756E21
|
|
@@ -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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"12\" r=\"5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAAoO,EAApO,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG9N",
|
|
9
|
+
"debugId": "F6BE0963C3ED227964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import c from"react";import{Svg as s}from"react-native-svg";var n=({children:o,size:r=24,...p})=>{return c.createElement(s,{...p,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{Circle as t}from"react-native-svg";var l=(o)=>{return e.createElement(n,{...o},e.createElement(t,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{cx:"12",cy:"12",r:"5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},g=l;export{g as default,l as IconControllerButtonCircle};
|
|
2
|
+
|
|
3
|
+
//# debugId=95ED59DA92B8B11664756E2164756E21
|
|
@@ -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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"12\" r=\"5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAAoO,EAApO,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG9N",
|
|
9
|
+
"debugId": "95ED59DA92B8B11664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var y=Object.create;var{getPrototypeOf:P,defineProperty:n,getOwnPropertyNames:m,getOwnPropertyDescriptor:v}=Object,f=Object.prototype.hasOwnProperty;function x(r){return this[r]}var S,F,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var l=o?S??=new WeakMap:F??=new WeakMap,C=l.get(r);if(C)return C}e=r!=null?y(P(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let c of m(r))if(!f.call(p,c))n(p,c,{get:x.bind(r,c),enumerable:!0});if(t)l.set(r,p);return p},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 m(r))if(!f.call(o,t))n(o,t,{get:x.bind(r,t),enumerable:!(e=v(r,t))||e.enumerable})}return u.set(r,o),o},u;var L=(r)=>r;function b(r,o){this[r]=L.bind(null,o)}var d=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var w={};d(w,{CentralIconBase:()=>i});module.exports=I(w);var g=B(require("react")),h=require("react-native-svg"),i=({children:r,size:o=24,...e})=>{return g.default.createElement(h.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 j={};d(j,{default:()=>$,IconControllerButtonSquare:()=>k});module.exports=I(j);var s=B(require("react"));var a=require("react-native-svg"),k=(r)=>{return s.default.createElement(i,{...r},s.default.createElement(a.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(a.Rect,{x:"7.5",y:"7.5",width:"9",height:"9",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},$=k;
|
|
2
|
+
|
|
3
|
+
//# debugId=C552AC692F65917E64756E2164756E21
|
|
@@ -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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Rect x=\"7.5\" y=\"7.5\" width=\"9\" height=\"9\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAAiP,EAAjP,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,MAAM,EAAE,MAAM,MAAM,IAAI,OAAO,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3O",
|
|
9
|
+
"debugId": "C552AC692F65917E64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as s}from"react-native-svg";var t=({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 e from"react";import{Circle as a,Rect as c}from"react-native-svg";var i=(o)=>{return e.createElement(t,{...o},e.createElement(a,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(c,{x:"7.5",y:"7.5",width:"9",height:"9",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},h=i;export{h as default,i as IconControllerButtonSquare};
|
|
2
|
+
|
|
3
|
+
//# debugId=8D1C4999155E3B5664756E2164756E21
|
|
@@ -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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Rect x=\"7.5\" y=\"7.5\" width=\"9\" height=\"9\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAAiP,EAAjP,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,MAAM,EAAE,MAAM,MAAM,IAAI,OAAO,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3O",
|
|
9
|
+
"debugId": "8D1C4999155E3B5664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var L=Object.create;var{getPrototypeOf:v,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:y}=Object,f=Object.prototype.hasOwnProperty;function B(r){return this[r]}var h,F,x=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var C=o?h??=new WeakMap:F??=new WeakMap,i=C.get(r);if(i)return i}e=r!=null?L(v(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let l of u(r))if(!f.call(p,l))t(p,l,{get:B.bind(r,l),enumerable:!0});if(n)C.set(r,p);return p},I=(r)=>{var o=(m??=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 u(r))if(!f.call(o,n))t(o,n,{get:B.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return m.set(r,o),o},m;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var d=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var j={};d(j,{CentralIconBase:()=>c});module.exports=I(j);var g=x(require("react")),P=require("react-native-svg"),c=({children:r,size:o=24,...e})=>{return g.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 w={};d(w,{default:()=>$,IconControllerButtonTriangle:()=>k});module.exports=I(w);var s=x(require("react"));var a=require("react-native-svg"),k=(r)=>{return s.default.createElement(c,{...r},s.default.createElement(a.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(a.Path,{d:"M12 7.38721L16.75 15.2376H7.25L12 7.38721Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},$=k;
|
|
2
|
+
|
|
3
|
+
//# debugId=24C6E0C0CF4C0DA264756E2164756E21
|
|
@@ -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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 7.38721L16.75 15.2376H7.25L12 7.38721Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAA2P,EAA3P,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,6CAA6C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGrP",
|
|
9
|
+
"debugId": "24C6E0C0CF4C0DA264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as s}from"react-native-svg";var n=({children:o,size:r=24,...t})=>{return p.createElement(s,{...t,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{Circle as a,Path as l}from"react-native-svg";var c=(o)=>{return e.createElement(n,{...o},e.createElement(a,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(l,{d:"M12 7.38721L16.75 15.2376H7.25L12 7.38721Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},P=c;export{P as default,c as IconControllerButtonTriangle};
|
|
2
|
+
|
|
3
|
+
//# debugId=95C82FCA456FFFB164756E2164756E21
|
|
@@ -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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 7.38721L16.75 15.2376H7.25L12 7.38721Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAA2P,EAA3P,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,6CAA6C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGrP",
|
|
9
|
+
"debugId": "95C82FCA456FFFB164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var L=Object.create;var{getPrototypeOf:v,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:y}=Object,f=Object.prototype.hasOwnProperty;function B(r){return this[r]}var h,F,x=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var C=o?h??=new WeakMap:F??=new WeakMap,i=C.get(r);if(i)return i}e=r!=null?L(v(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let c of u(r))if(!f.call(p,c))t(p,c,{get:B.bind(r,c),enumerable:!0});if(n)C.set(r,p);return p},I=(r)=>{var o=(m??=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 u(r))if(!f.call(o,n))t(o,n,{get:B.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return m.set(r,o),o},m;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var d=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var j={};d(j,{CentralIconBase:()=>l});module.exports=I(j);var P=x(require("react")),g=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return P.default.createElement(g.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={};d(w,{default:()=>M,IconControllerButtonX:()=>k});module.exports=I(w);var s=x(require("react"));var a=require("react-native-svg"),k=(r)=>{return s.default.createElement(l,{...r},s.default.createElement(a.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(a.Path,{d:"M8.25 8.25L15.75 15.75M15.75 8.25L8.25 15.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},M=k;
|
|
2
|
+
|
|
3
|
+
//# debugId=777D95B3010A034D64756E2164756E21
|
|
@@ -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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.25 8.25L15.75 15.75M15.75 8.25L8.25 15.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAA6P,EAA7P,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,+CAA+C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGvP",
|
|
9
|
+
"debugId": "777D95B3010A034D64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as s}from"react-native-svg";var n=({children:o,size:r=24,...t})=>{return p.createElement(s,{...t,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{Circle as a,Path as c}from"react-native-svg";var l=(o)=>{return e.createElement(n,{...o},e.createElement(a,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(c,{d:"M8.25 8.25L15.75 15.75M15.75 8.25L8.25 15.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},g=l;export{g as default,l as IconControllerButtonX};
|
|
2
|
+
|
|
3
|
+
//# debugId=DE908DF2D9A4762064756E2164756E21
|
|
@@ -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\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.25 8.25L15.75 15.75M15.75 8.25L8.25 15.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAA6P,EAA7P,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,+CAA+C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGvP",
|
|
9
|
+
"debugId": "DE908DF2D9A4762064756E2164756E21",
|
|
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
|
|