@central-icons-react-native/square-outlined-radius-0-stroke-1 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 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,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,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,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
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var M=Object.create;var{getPrototypeOf:V,defineProperty:s,getOwnPropertyNames:f,getOwnPropertyDescriptor:v}=Object,d=Object.prototype.hasOwnProperty;function B(r){return this[r]}var h,y,I=(r,o,t)=>{var n=r!=null&&typeof r==="object";if(n){var u=o?h??=new WeakMap:y??=new WeakMap,a=u.get(r);if(a)return a}t=r!=null?M(V(r)):{};let C=o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t;for(let l of f(r))if(!d.call(C,l))s(C,l,{get:B.bind(r,l),enumerable:!0});if(n)u.set(r,C);return C},P=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of f(r))if(!d.call(o,n))s(o,n,{get:B.bind(r,n),enumerable:!(t=v(r,n))||t.enumerable})}return c.set(r,o),o},c;var F=(r)=>r;function S(r,o){this[r]=F.bind(null,o)}var i=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0,configurable:!0,set:S.bind(o,t)})};var b={};i(b,{CentralIconBase:()=>m});module.exports=P(b);var x=I(require("react")),g=require("react-native-svg"),m=({children:r,size:o=24,...t})=>{return x.default.createElement(g.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 H={};i(H,{default:()=>w,IconPipe:()=>k});module.exports=P(H);var e=I(require("react"));var p=require("react-native-svg"),k=(r)=>{return e.default.createElement(m,{...r},e.default.createElement(p.Path,{d:"M3 20.5H21",stroke:"currentColor"}),e.default.createElement(p.Path,{d:"M18.25 10.75V20.25",stroke:"currentColor"}),e.default.createElement(p.Path,{d:"M5.75 20.25V10.75",stroke:"currentColor"}),e.default.createElement(p.Path,{d:"M3.5 3.5H20.5V10.5H3.5V3.5Z",stroke:"currentColor"}),e.default.createElement(p.Path,{d:"M7.75 3.75V10.25",stroke:"currentColor"}),e.default.createElement(p.Path,{d:"M9.75 10.75V20.25",stroke:"currentColor"}))},w=k;
|
|
2
|
+
|
|
3
|
+
//# debugId=8E39E71135065B9764756E2164756E21
|
|
@@ -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 20.5H21\" stroke=\"currentColor\"/><Path d=\"M18.25 10.75V20.25\" stroke=\"currentColor\"/><Path d=\"M5.75 20.25V10.75\" stroke=\"currentColor\"/><Path d=\"M3.5 3.5H20.5V10.5H3.5V3.5Z\" stroke=\"currentColor\"/><Path d=\"M7.75 3.75V10.25\" stroke=\"currentColor\"/><Path d=\"M9.75 10.75V20.25\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPipe;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,oECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqC,CAAC,IAAU,CAC3D,OAAO,wBAAmV,EAAnV,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8BAA8B,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAc,CAAI,GAG7U",
|
|
9
|
+
"debugId": "8E39E71135065B9764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:o=24,...p})=>{return s.createElement(C,{...p,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 20.5H21",stroke:"currentColor"}),r.createElement(t,{d:"M18.25 10.75V20.25",stroke:"currentColor"}),r.createElement(t,{d:"M5.75 20.25V10.75",stroke:"currentColor"}),r.createElement(t,{d:"M3.5 3.5H20.5V10.5H3.5V3.5Z",stroke:"currentColor"}),r.createElement(t,{d:"M7.75 3.75V10.25",stroke:"currentColor"}),r.createElement(t,{d:"M9.75 10.75V20.25",stroke:"currentColor"}))},x=l;export{x as default,l as IconPipe};
|
|
2
|
+
|
|
3
|
+
//# debugId=F0DE4F3D109C485964756E2164756E21
|
|
@@ -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 20.5H21\" stroke=\"currentColor\"/><Path d=\"M18.25 10.75V20.25\" stroke=\"currentColor\"/><Path d=\"M5.75 20.25V10.75\" stroke=\"currentColor\"/><Path d=\"M3.5 3.5H20.5V10.5H3.5V3.5Z\" stroke=\"currentColor\"/><Path d=\"M7.75 3.75V10.25\" stroke=\"currentColor\"/><Path d=\"M9.75 10.75V20.25\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPipe;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAqC,CAAC,IAAU,CAC3D,OAAO,gBAAmV,EAAnV,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qBAAqB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oBAAoB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8BAA8B,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oBAAoB,OAAO,eAAc,CAAI,GAG7U",
|
|
9
|
+
"debugId": "F0DE4F3D109C485964756E2164756E21",
|
|
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
|
|