@central-icons-react-native/round-outlined-radius-1-stroke-1 1.1.175 → 1.1.177
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/IconCurrencyLira/index.d.ts +4 -0
- package/IconCurrencyLira/index.js +2 -0
- package/IconCurrencyLira/index.js.map +1 -0
- package/IconCurrencyLira/index.mjs +2 -0
- package/IconCurrencyLira/index.mjs.map +1 -0
- package/IconFlowerShape/index.d.ts +4 -0
- package/IconFlowerShape/index.js +2 -0
- package/IconFlowerShape/index.js.map +1 -0
- package/IconFlowerShape/index.mjs +2 -0
- package/IconFlowerShape/index.mjs.map +1 -0
- package/IconGamecontroller/index.d.ts +4 -0
- package/IconGamecontroller/index.js +2 -0
- package/IconGamecontroller/index.js.map +1 -0
- package/IconGamecontroller/index.mjs +2 -0
- package/IconGamecontroller/index.mjs.map +1 -0
- package/IconGold/index.d.ts +4 -0
- package/IconGold/index.js +2 -0
- package/IconGold/index.js.map +1 -0
- package/IconGold/index.mjs +2 -0
- package/IconGold/index.mjs.map +1 -0
- package/IconOldJoystick/index.d.ts +4 -0
- package/IconOldJoystick/index.js +2 -0
- package/IconOldJoystick/index.js.map +1 -0
- package/IconOldJoystick/index.mjs +2 -0
- package/IconOldJoystick/index.mjs.map +1 -0
- package/README.md +6 -1
- package/filtered-icons.json +71 -1
- package/icons/index.d.ts +5 -0
- package/icons-index.json +18 -8
- package/index.d.ts +5 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +35 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},C=(r,o,n,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of k(o))!B.call(r,e)&&e!==n&&p(r,e,{get:()=>o[e],enumerable:!(a=f(o,e))||a.enumerable});return r};var i=(r,o,n)=>(n=r!=null?d(L(r)):{},C(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>C(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconCurrencyLira:()=>m,default:()=>P});module.exports=x(g);var t=i(require("react"));var u=i(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...n})=>u.default.createElement(c.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),m=r=>t.default.createElement(l,{...r},t.default.createElement(s.Path,{d:"M8.5 3.5V19.5C8.5 20.0523 8.94772 20.5 9.5 20.5H12.5C15.8137 20.5 18.5 17.8137 18.5 14.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M5.5 12L15.5 8.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M5.5 15L15.5 11.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=m;0&&(module.exports={IconCurrencyLira});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCurrencyLira/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCurrencyLira: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.5 3.5V19.5C8.5 20.0523 8.94772 20.5 9.5 20.5H12.5C15.8137 20.5 18.5 17.8137 18.5 14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 12L15.5 8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 15L15.5 11.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCurrencyLira;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,sBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCurrencyLira_exports","__export","IconCurrencyLira","IconCurrencyLira_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCurrencyLira","props","React","CentralIconBase","IconCurrencyLira_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as a}from"react-native-svg";var t=({children:n,size:r=24,...p})=>s.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var C=n=>o.createElement(t,{...n},o.createElement(e,{d:"M8.5 3.5V19.5C8.5 20.0523 8.94772 20.5 9.5 20.5H12.5C15.8137 20.5 18.5 17.8137 18.5 14.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M5.5 12L15.5 8.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M5.5 15L15.5 11.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=C;export{C as IconCurrencyLira,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCurrencyLira/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCurrencyLira: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.5 3.5V19.5C8.5 20.0523 8.94772 20.5 9.5 20.5H12.5C15.8137 20.5 18.5 17.8137 18.5 14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 12L15.5 8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5.5 15L15.5 11.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCurrencyLira;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCurrencyLira","props","React","CentralIconBase","IconCurrencyLira_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var C=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of x(o))!g.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(p=u(o,t))||p.enumerable});return r};var m=(r,o,e)=>(e=r!=null?I(P(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>a(C({},"__esModule",{value:!0}),r);var F={};i(F,{IconFlowerShape:()=>B,default:()=>v});module.exports=h(F);var n=m(require("react"));var s=m(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...e})=>s.default.createElement(l.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 f=require("react-native-svg"),B=r=>n.default.createElement(c,{...r},n.default.createElement(f.Path,{d:"M7.64438 5.19109C8.44361 3.59542 10.0939 2.5 12 2.5C13.9061 2.5 15.5564 3.59543 16.3556 5.19109C16.5496 5.57845 16.9267 5.8524 17.3551 5.91723C19.1196 6.18426 20.6714 7.41525 21.2604 9.22808C21.8494 11.0409 21.3176 12.9489 20.047 14.2021C19.7385 14.5063 19.5945 14.9496 19.6652 15.377C19.9565 17.1377 19.2653 18.9939 17.7232 20.1143C16.1812 21.2347 14.2022 21.3185 12.6177 20.4974C12.233 20.298 11.767 20.298 11.3823 20.4974C9.79781 21.3185 7.81884 21.2347 6.27675 20.1143C4.73467 18.9939 4.04345 17.1377 4.33476 15.377C4.40548 14.9496 4.26145 14.5063 3.95301 14.2021C2.68242 12.9489 2.15057 11.0409 2.7396 9.22808C3.32862 7.41525 4.88039 6.18425 6.64493 5.91723C7.07329 5.8524 7.45036 5.57845 7.64438 5.19109Z",stroke:"currentColor"})),v=B;0&&(module.exports={IconFlowerShape});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFlowerShape/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFlowerShape: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.64438 5.19109C8.44361 3.59542 10.0939 2.5 12 2.5C13.9061 2.5 15.5564 3.59543 16.3556 5.19109C16.5496 5.57845 16.9267 5.8524 17.3551 5.91723C19.1196 6.18426 20.6714 7.41525 21.2604 9.22808C21.8494 11.0409 21.3176 12.9489 20.047 14.2021C19.7385 14.5063 19.5945 14.9496 19.6652 15.377C19.9565 17.1377 19.2653 18.9939 17.7232 20.1143C16.1812 21.2347 14.2022 21.3185 12.6177 20.4974C12.233 20.298 11.767 20.298 11.3823 20.4974C9.79781 21.3185 7.81884 21.2347 6.27675 20.1143C4.73467 18.9939 4.04345 17.1377 4.33476 15.377C4.40548 14.9496 4.26145 14.5063 3.95301 14.2021C2.68242 12.9489 2.15057 11.0409 2.7396 9.22808C3.32862 7.41525 4.88039 6.18425 6.64493 5.91723C7.07329 5.8524 7.45036 5.57845 7.64438 5.19109Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFlowerShape;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,ysBACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconFlowerShape_exports","__export","IconFlowerShape","IconFlowerShape_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFlowerShape","props","React","CentralIconBase","IconFlowerShape_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import n from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...C})=>n.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{Path as a}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(a,{d:"M7.64438 5.19109C8.44361 3.59542 10.0939 2.5 12 2.5C13.9061 2.5 15.5564 3.59543 16.3556 5.19109C16.5496 5.57845 16.9267 5.8524 17.3551 5.91723C19.1196 6.18426 20.6714 7.41525 21.2604 9.22808C21.8494 11.0409 21.3176 12.9489 20.047 14.2021C19.7385 14.5063 19.5945 14.9496 19.6652 15.377C19.9565 17.1377 19.2653 18.9939 17.7232 20.1143C16.1812 21.2347 14.2022 21.3185 12.6177 20.4974C12.233 20.298 11.767 20.298 11.3823 20.4974C9.79781 21.3185 7.81884 21.2347 6.27675 20.1143C4.73467 18.9939 4.04345 17.1377 4.33476 15.377C4.40548 14.9496 4.26145 14.5063 3.95301 14.2021C2.68242 12.9489 2.15057 11.0409 2.7396 9.22808C3.32862 7.41525 4.88039 6.18425 6.64493 5.91723C7.07329 5.8524 7.45036 5.57845 7.64438 5.19109Z",stroke:"currentColor"})),g=m;export{m as IconFlowerShape,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFlowerShape/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFlowerShape: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.64438 5.19109C8.44361 3.59542 10.0939 2.5 12 2.5C13.9061 2.5 15.5564 3.59543 16.3556 5.19109C16.5496 5.57845 16.9267 5.8524 17.3551 5.91723C19.1196 6.18426 20.6714 7.41525 21.2604 9.22808C21.8494 11.0409 21.3176 12.9489 20.047 14.2021C19.7385 14.5063 19.5945 14.9496 19.6652 15.377C19.9565 17.1377 19.2653 18.9939 17.7232 20.1143C16.1812 21.2347 14.2022 21.3185 12.6177 20.4974C12.233 20.298 11.767 20.298 11.3823 20.4974C9.79781 21.3185 7.81884 21.2347 6.27675 20.1143C4.73467 18.9939 4.04345 17.1377 4.33476 15.377C4.40548 14.9496 4.26145 14.5063 3.95301 14.2021C2.68242 12.9489 2.15057 11.0409 2.7396 9.22808C3.32862 7.41525 4.88039 6.18425 6.64493 5.91723C7.07329 5.8524 7.45036 5.57845 7.64438 5.19109Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFlowerShape;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,ysBACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFlowerShape","props","React","CentralIconBase","IconFlowerShape_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var p=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},c=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of L(o))!B.call(r,C)&&C!==e&&p(r,C,{get:()=>o[C],enumerable:!(l=x(o,C))||l.enumerable});return r};var s=(r,o,e)=>(e=r!=null?f(d(r)):{},c(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>c(p({},"__esModule",{value:!0}),r);var k={};I(k,{IconGamecontroller:()=>u,default:()=>g});module.exports=P(k);var n=s(require("react"));var a=s(require("react")),i=require("react-native-svg"),m=({children:r,size:o=24,...e})=>a.default.createElement(i.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 t=require("react-native-svg"),u=r=>n.default.createElement(m,{...r},n.default.createElement(t.Path,{d:"M13.5664 4.5H10.4336C8.12391 4.5 6.96905 4.5 6.01879 4.91119C5.18071 5.27384 4.45795 5.85908 3.92893 6.60342C3.32911 7.44738 3.08893 8.57699 2.60857 10.8362L1.49752 16.0617C1.20999 17.414 1.93728 18.7771 3.2207 19.2912C4.81773 19.931 6.61252 19.0164 7.03352 17.3483L7.3487 16.0995C7.43766 15.747 7.75473 15.5 8.11828 15.5L15.8817 15.5C16.2453 15.5 16.5623 15.747 16.6513 16.0995L16.9665 17.3483C17.3875 19.0164 19.1823 19.931 20.7793 19.2912C22.0627 18.7771 22.79 17.414 22.5025 16.0617L21.3914 10.8362C20.9111 8.57699 20.6709 7.44738 20.0711 6.60342C19.542 5.85908 18.8193 5.27384 17.9812 4.91119C17.031 4.5 15.8761 4.5 13.5664 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Circle,{cx:"17",cy:"11.5",r:"1",fill:"currentColor"}),n.default.createElement(t.Circle,{cx:"15",cy:"8.5",r:"1",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M10.5 10H6.5M8.5 12V8",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),g=u;0&&(module.exports={IconGamecontroller});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGamecontroller/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconGamecontroller: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.5664 4.5H10.4336C8.12391 4.5 6.96905 4.5 6.01879 4.91119C5.18071 5.27384 4.45795 5.85908 3.92893 6.60342C3.32911 7.44738 3.08893 8.57699 2.60857 10.8362L1.49752 16.0617C1.20999 17.414 1.93728 18.7771 3.2207 19.2912C4.81773 19.931 6.61252 19.0164 7.03352 17.3483L7.3487 16.0995C7.43766 15.747 7.75473 15.5 8.11828 15.5L15.8817 15.5C16.2453 15.5 16.5623 15.747 16.6513 16.0995L16.9665 17.3483C17.3875 19.0164 19.1823 19.931 20.7793 19.2912C22.0627 18.7771 22.79 17.414 22.5025 16.0617L21.3914 10.8362C20.9111 8.57699 20.6709 7.44738 20.0711 6.60342C19.542 5.85908 18.8193 5.27384 17.9812 4.91119C17.031 4.5 15.8761 4.5 13.5664 4.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"17\" cy=\"11.5\" r=\"1\" fill=\"currentColor\" />\n <Circle cx=\"15\" cy=\"8.5\" r=\"1\" fill=\"currentColor\" />\n <Path\n d=\"M10.5 10H6.5M8.5 12V8\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGamecontroller;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,wBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA6B,4BAEhBC,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4nBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,OAAO,EAAE,IAAI,KAAK,eAAe,EACpD,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,MAAM,EAAE,IAAI,KAAK,eAAe,EACnD,EAAAA,QAAA,cAAC,QACC,EAAE,wBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconGamecontroller_exports","__export","IconGamecontroller","IconGamecontroller_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGamecontroller","props","React","CentralIconBase","IconGamecontroller_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import l from"react";import{Svg as c}from"react-native-svg";var n=({children:e,size:r=24,...p})=>l.createElement(c,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as t,Path as C}from"react-native-svg";var s=e=>o.createElement(n,{...e},o.createElement(C,{d:"M13.5664 4.5H10.4336C8.12391 4.5 6.96905 4.5 6.01879 4.91119C5.18071 5.27384 4.45795 5.85908 3.92893 6.60342C3.32911 7.44738 3.08893 8.57699 2.60857 10.8362L1.49752 16.0617C1.20999 17.414 1.93728 18.7771 3.2207 19.2912C4.81773 19.931 6.61252 19.0164 7.03352 17.3483L7.3487 16.0995C7.43766 15.747 7.75473 15.5 8.11828 15.5L15.8817 15.5C16.2453 15.5 16.5623 15.747 16.6513 16.0995L16.9665 17.3483C17.3875 19.0164 19.1823 19.931 20.7793 19.2912C22.0627 18.7771 22.79 17.414 22.5025 16.0617L21.3914 10.8362C20.9111 8.57699 20.6709 7.44738 20.0711 6.60342C19.542 5.85908 18.8193 5.27384 17.9812 4.91119C17.031 4.5 15.8761 4.5 13.5664 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{cx:"17",cy:"11.5",r:"1",fill:"currentColor"}),o.createElement(t,{cx:"15",cy:"8.5",r:"1",fill:"currentColor"}),o.createElement(C,{d:"M10.5 10H6.5M8.5 12V8",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=s;export{s as IconGamecontroller,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGamecontroller/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconGamecontroller: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.5664 4.5H10.4336C8.12391 4.5 6.96905 4.5 6.01879 4.91119C5.18071 5.27384 4.45795 5.85908 3.92893 6.60342C3.32911 7.44738 3.08893 8.57699 2.60857 10.8362L1.49752 16.0617C1.20999 17.414 1.93728 18.7771 3.2207 19.2912C4.81773 19.931 6.61252 19.0164 7.03352 17.3483L7.3487 16.0995C7.43766 15.747 7.75473 15.5 8.11828 15.5L15.8817 15.5C16.2453 15.5 16.5623 15.747 16.6513 16.0995L16.9665 17.3483C17.3875 19.0164 19.1823 19.931 20.7793 19.2912C22.0627 18.7771 22.79 17.414 22.5025 16.0617L21.3914 10.8362C20.9111 8.57699 20.6709 7.44738 20.0711 6.60342C19.542 5.85908 18.8193 5.27384 17.9812 4.91119C17.031 4.5 15.8761 4.5 13.5664 4.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"17\" cy=\"11.5\" r=\"1\" fill=\"currentColor\" />\n <Circle cx=\"15\" cy=\"8.5\" r=\"1\" fill=\"currentColor\" />\n <Path\n d=\"M10.5 10H6.5M8.5 12V8\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGamecontroller;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4nBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,OAAO,EAAE,IAAI,KAAK,eAAe,EACpDI,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,MAAM,EAAE,IAAI,KAAK,eAAe,EACnDI,EAAA,cAACH,EAAA,CACC,EAAE,wBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconGamecontroller","props","React","CentralIconBase","IconGamecontroller_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var C=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of x(o))!d.call(r,e)&&e!==t&&C(r,e,{get:()=>o[e],enumerable:!(s=I(o,e))||s.enumerable});return r};var a=(r,o,t)=>(t=r!=null?B(P(r)):{},l(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),i=r=>l(C({},"__esModule",{value:!0}),r);var L={};g(L,{IconGold:()=>u,default:()=>H});module.exports=i(L);var n=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>m.default.createElement(c.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 p=require("react-native-svg"),u=r=>n.default.createElement(f,{...r},n.default.createElement(p.Path,{d:"M7.43874 10.1838L8.77208 6.18377C8.90819 5.77543 9.29033 5.5 9.72076 5.5H14.2792C14.7097 5.5 15.0918 5.77543 15.2279 6.18377L16.5613 10.1838C16.7771 10.8313 16.2951 11.5 15.6126 11.5H8.38743C7.70487 11.5 7.2229 10.8313 7.43874 10.1838Z",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M2.43874 16.1838L3.77208 12.1838C3.90819 11.7754 4.29033 11.5 4.72076 11.5H9.27924C9.70967 11.5 10.0918 11.7754 10.2279 12.1838L11.5613 16.1838C11.7771 16.8313 11.2951 17.5 10.6126 17.5H3.38743C2.70487 17.5 2.2229 16.8313 2.43874 16.1838Z",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M12.4387 16.1838L13.7721 12.1838C13.9082 11.7754 14.2903 11.5 14.7208 11.5H19.2792C19.7097 11.5 20.0918 11.7754 20.2279 12.1838L21.5613 16.1838C21.7771 16.8313 21.2951 17.5 20.6126 17.5H13.3874C12.7049 17.5 12.2229 16.8313 12.4387 16.1838Z",stroke:"currentColor"})),H=u;0&&(module.exports={IconGold});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGold/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconGold: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.43874 10.1838L8.77208 6.18377C8.90819 5.77543 9.29033 5.5 9.72076 5.5H14.2792C14.7097 5.5 15.0918 5.77543 15.2279 6.18377L16.5613 10.1838C16.7771 10.8313 16.2951 11.5 15.6126 11.5H8.38743C7.70487 11.5 7.2229 10.8313 7.43874 10.1838Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M2.43874 16.1838L3.77208 12.1838C3.90819 11.7754 4.29033 11.5 4.72076 11.5H9.27924C9.70967 11.5 10.0918 11.7754 10.2279 12.1838L11.5613 16.1838C11.7771 16.8313 11.2951 17.5 10.6126 17.5H3.38743C2.70487 17.5 2.2229 16.8313 2.43874 16.1838Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M12.4387 16.1838L13.7721 12.1838C13.9082 11.7754 14.2903 11.5 14.7208 11.5H19.2792C19.7097 11.5 20.0918 11.7754 20.2279 12.1838L21.5613 16.1838C21.7771 16.8313 21.2951 17.5 20.6126 17.5H13.3874C12.7049 17.5 12.2229 16.8313 12.4387 16.1838Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGold;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,cAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8OACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iPACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kPACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconGold_exports","__export","IconGold","IconGold_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGold","props","React","CentralIconBase","IconGold_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var n=({children:t,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var l=t=>o.createElement(n,{...t},o.createElement(e,{d:"M7.43874 10.1838L8.77208 6.18377C8.90819 5.77543 9.29033 5.5 9.72076 5.5H14.2792C14.7097 5.5 15.0918 5.77543 15.2279 6.18377L16.5613 10.1838C16.7771 10.8313 16.2951 11.5 15.6126 11.5H8.38743C7.70487 11.5 7.2229 10.8313 7.43874 10.1838Z",stroke:"currentColor"}),o.createElement(e,{d:"M2.43874 16.1838L3.77208 12.1838C3.90819 11.7754 4.29033 11.5 4.72076 11.5H9.27924C9.70967 11.5 10.0918 11.7754 10.2279 12.1838L11.5613 16.1838C11.7771 16.8313 11.2951 17.5 10.6126 17.5H3.38743C2.70487 17.5 2.2229 16.8313 2.43874 16.1838Z",stroke:"currentColor"}),o.createElement(e,{d:"M12.4387 16.1838L13.7721 12.1838C13.9082 11.7754 14.2903 11.5 14.7208 11.5H19.2792C19.7097 11.5 20.0918 11.7754 20.2279 12.1838L21.5613 16.1838C21.7771 16.8313 21.2951 17.5 20.6126 17.5H13.3874C12.7049 17.5 12.2229 16.8313 12.4387 16.1838Z",stroke:"currentColor"})),d=l;export{l as IconGold,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGold/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconGold: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.43874 10.1838L8.77208 6.18377C8.90819 5.77543 9.29033 5.5 9.72076 5.5H14.2792C14.7097 5.5 15.0918 5.77543 15.2279 6.18377L16.5613 10.1838C16.7771 10.8313 16.2951 11.5 15.6126 11.5H8.38743C7.70487 11.5 7.2229 10.8313 7.43874 10.1838Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M2.43874 16.1838L3.77208 12.1838C3.90819 11.7754 4.29033 11.5 4.72076 11.5H9.27924C9.70967 11.5 10.0918 11.7754 10.2279 12.1838L11.5613 16.1838C11.7771 16.8313 11.2951 17.5 10.6126 17.5H3.38743C2.70487 17.5 2.2229 16.8313 2.43874 16.1838Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M12.4387 16.1838L13.7721 12.1838C13.9082 11.7754 14.2903 11.5 14.7208 11.5H19.2792C19.7097 11.5 20.0918 11.7754 20.2279 12.1838L21.5613 16.1838C21.7771 16.8313 21.2951 17.5 20.6126 17.5H13.3874C12.7049 17.5 12.2229 16.8313 12.4387 16.1838Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGold;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8OACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iPACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kPACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGold","props","React","CentralIconBase","IconGold_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var k=Object.create;var s=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)s(r,n,{get:o[n],enumerable:!0})},C=(r,o,n,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of f(o))!B.call(r,p)&&p!==n&&s(r,p,{get:()=>o[p],enumerable:!(i=m(o,p))||i.enumerable});return r};var c=(r,o,n)=>(n=r!=null?k(x(r)):{},C(o||!r||!r.__esModule?s(n,"default",{value:r,enumerable:!0}):n,r)),L=r=>C(s({},"__esModule",{value:!0}),r);var g={};I(g,{IconOldJoystick:()=>d,default:()=>P});module.exports=L(g);var e=c(require("react"));var u=c(require("react")),a=require("react-native-svg"),l=({children:r,size:o=24,...n})=>u.default.createElement(a.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),d=r=>e.default.createElement(l,{...r},e.default.createElement(t.Path,{d:"M12 9.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M17.5 12.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M19.5 15.5H4.5C3.94772 15.5 3.5 15.9477 3.5 16.5V19.5C3.5 20.0523 3.94772 20.5 4.5 20.5H19.5C20.0523 20.5 20.5 20.0523 20.5 19.5V16.5C20.5 15.9477 20.0523 15.5 19.5 15.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Circle,{cx:"12",cy:"6.5",r:"3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=d;0&&(module.exports={IconOldJoystick});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconOldJoystick/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconOldJoystick: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 9.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 12.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 15.5H4.5C3.94772 15.5 3.5 15.9477 3.5 16.5V19.5C3.5 20.0523 3.94772 20.5 4.5 20.5H19.5C20.0523 20.5 20.5 20.0523 20.5 19.5V16.5C20.5 15.9477 20.0523 15.5 19.5 15.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"6.5\"\n r=\"3\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconOldJoystick;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA6B,4BAEhBC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6KACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,KACH,GAAG,MACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconOldJoystick_exports","__export","IconOldJoystick","IconOldJoystick_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconOldJoystick","props","React","CentralIconBase","IconOldJoystick_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as i}from"react-native-svg";var t=({children:n,size:r=24,...p})=>s.createElement(i,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Circle as C,Path as e}from"react-native-svg";var c=n=>o.createElement(t,{...n},o.createElement(e,{d:"M12 9.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M17.5 12.5V15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M19.5 15.5H4.5C3.94772 15.5 3.5 15.9477 3.5 16.5V19.5C3.5 20.0523 3.94772 20.5 4.5 20.5H19.5C20.0523 20.5 20.5 20.0523 20.5 19.5V16.5C20.5 15.9477 20.0523 15.5 19.5 15.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(C,{cx:"12",cy:"6.5",r:"3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=c;export{c as IconOldJoystick,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconOldJoystick/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconOldJoystick: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 9.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 12.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 15.5H4.5C3.94772 15.5 3.5 15.9477 3.5 16.5V19.5C3.5 20.0523 3.94772 20.5 4.5 20.5H19.5C20.0523 20.5 20.5 20.0523 20.5 19.5V16.5C20.5 15.9477 20.0523 15.5 19.5 15.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"6.5\"\n r=\"3\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconOldJoystick;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6KACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,MACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconOldJoystick","props","React","CentralIconBase","IconOldJoystick_default"]}
|
package/README.md
CHANGED
|
@@ -413,6 +413,7 @@ Below is a complete list of available icons:
|
|
|
413
413
|
- IconStore3
|
|
414
414
|
- IconStore4
|
|
415
415
|
- IconStores
|
|
416
|
+
- IconTower
|
|
416
417
|
|
|
417
418
|
### Clouds
|
|
418
419
|
|
|
@@ -931,6 +932,7 @@ Below is a complete list of available icons:
|
|
|
931
932
|
|
|
932
933
|
### Forms & Shapes
|
|
933
934
|
|
|
935
|
+
- IconFlowerShape
|
|
934
936
|
- IconFormCapsule
|
|
935
937
|
- IconFormCircle
|
|
936
938
|
- IconFormDiamond
|
|
@@ -975,6 +977,7 @@ Below is a complete list of available icons:
|
|
|
975
977
|
- IconDice5
|
|
976
978
|
- IconDice6
|
|
977
979
|
- IconDices
|
|
980
|
+
- IconGamecontroller
|
|
978
981
|
- IconGamepad
|
|
979
982
|
- IconGamepadControls
|
|
980
983
|
- IconGamepadControlsDown
|
|
@@ -986,6 +989,7 @@ Below is a complete list of available icons:
|
|
|
986
989
|
- IconGamepadControlsRoundRight
|
|
987
990
|
- IconGamepadControlsRoundUp
|
|
988
991
|
- IconGamepadControlsUp
|
|
992
|
+
- IconOldJoystick
|
|
989
993
|
- IconRoulette1
|
|
990
994
|
- IconRoulette2
|
|
991
995
|
- IconScratchCard
|
|
@@ -1526,6 +1530,7 @@ Below is a complete list of available icons:
|
|
|
1526
1530
|
- IconCreditCardAdd
|
|
1527
1531
|
- IconCurrencyDollar
|
|
1528
1532
|
- IconCurrencyEuro
|
|
1533
|
+
- IconCurrencyLira
|
|
1529
1534
|
- IconCurrencyPesos
|
|
1530
1535
|
- IconCurrencyPounds
|
|
1531
1536
|
- IconCurrencyRupees
|
|
@@ -1894,6 +1899,7 @@ Below is a complete list of available icons:
|
|
|
1894
1899
|
- IconForYou
|
|
1895
1900
|
- IconGalaxy
|
|
1896
1901
|
- IconGoatHead
|
|
1902
|
+
- IconGold
|
|
1897
1903
|
- IconGoldMedal
|
|
1898
1904
|
- IconGraduateCap
|
|
1899
1905
|
- IconInfinity
|
|
@@ -1966,7 +1972,6 @@ Below is a complete list of available icons:
|
|
|
1966
1972
|
- IconThread
|
|
1967
1973
|
- IconTicket
|
|
1968
1974
|
- IconToiletPaper
|
|
1969
|
-
- IconTower
|
|
1970
1975
|
- IconTreasure
|
|
1971
1976
|
- IconTrophy
|
|
1972
1977
|
- IconUnicorn
|
package/filtered-icons.json
CHANGED
|
@@ -8386,6 +8386,20 @@
|
|
|
8386
8386
|
"packageName": "round-outlined-radius-1-stroke-1",
|
|
8387
8387
|
"componentName": "IconCurrencyEuro"
|
|
8388
8388
|
},
|
|
8389
|
+
{
|
|
8390
|
+
"category": "Shopping & Payment",
|
|
8391
|
+
"svg": "<path d=\"M8.5 3.5V19.5C8.5 20.0523 8.94772 20.5 9.5 20.5H12.5C15.8137 20.5 18.5 17.8137 18.5 14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.5 12L15.5 8.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.5 15L15.5 11.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
8392
|
+
"iconName": "currency-lira, money",
|
|
8393
|
+
"variant": {
|
|
8394
|
+
"join": "round",
|
|
8395
|
+
"filled": "off",
|
|
8396
|
+
"radius": "1",
|
|
8397
|
+
"stroke": "1"
|
|
8398
|
+
},
|
|
8399
|
+
"createdAt": "2026-04-02T10:01:50.480392+00:00",
|
|
8400
|
+
"packageName": "round-outlined-radius-1-stroke-1",
|
|
8401
|
+
"componentName": "IconCurrencyLira"
|
|
8402
|
+
},
|
|
8389
8403
|
{
|
|
8390
8404
|
"category": "Shopping & Payment",
|
|
8391
8405
|
"svg": "<path d=\"M20.5 10.5H3.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 6.5H3.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 21.5V2.5H12.4578C15.755 2.5 18.4345 5.1607 18.4576 8.4579C18.481 11.788 15.7879 14.5 12.4578 14.5H7\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -11186,6 +11200,20 @@
|
|
|
11186
11200
|
"packageName": "round-outlined-radius-1-stroke-1",
|
|
11187
11201
|
"componentName": "IconFloppyDisk2"
|
|
11188
11202
|
},
|
|
11203
|
+
{
|
|
11204
|
+
"category": "Forms & Shapes",
|
|
11205
|
+
"svg": "<path d=\"M7.64438 5.19109C8.44361 3.59542 10.0939 2.5 12 2.5C13.9061 2.5 15.5564 3.59543 16.3556 5.19109C16.5496 5.57845 16.9267 5.8524 17.3551 5.91723C19.1196 6.18426 20.6714 7.41525 21.2604 9.22808C21.8494 11.0409 21.3176 12.9489 20.047 14.2021C19.7385 14.5063 19.5945 14.9496 19.6652 15.377C19.9565 17.1377 19.2653 18.9939 17.7232 20.1143C16.1812 21.2347 14.2022 21.3185 12.6177 20.4974C12.233 20.298 11.767 20.298 11.3823 20.4974C9.79781 21.3185 7.81884 21.2347 6.27675 20.1143C4.73467 18.9939 4.04345 17.1377 4.33476 15.377C4.40548 14.9496 4.26145 14.5063 3.95301 14.2021C2.68242 12.9489 2.15057 11.0409 2.7396 9.22808C3.32862 7.41525 4.88039 6.18425 6.64493 5.91723C7.07329 5.8524 7.45036 5.57845 7.64438 5.19109Z\" stroke=\"currentColor\"/>",
|
|
11206
|
+
"iconName": "flower-shape",
|
|
11207
|
+
"variant": {
|
|
11208
|
+
"join": "round",
|
|
11209
|
+
"filled": "off",
|
|
11210
|
+
"radius": "1",
|
|
11211
|
+
"stroke": "1"
|
|
11212
|
+
},
|
|
11213
|
+
"createdAt": "2026-04-01T11:00:44.936562+00:00",
|
|
11214
|
+
"packageName": "round-outlined-radius-1-stroke-1",
|
|
11215
|
+
"componentName": "IconFlowerShape"
|
|
11216
|
+
},
|
|
11189
11217
|
{
|
|
11190
11218
|
"category": "Photography & Video",
|
|
11191
11219
|
"svg": "<path d=\"M3.5 8V4.5C3.5 3.94772 3.94772 3.5 4.5 3.5H8M3.5 16V19.5C3.5 20.0523 3.94772 20.5 4.5 20.5H8M16 3.5H19.5C20.0523 3.5 20.5 3.94772 20.5 4.5V8M20.5 16V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H16M14.1818 13.55L12 8.75L9.81818 13.55M14.1818 13.55L15 15.35M14.1818 13.55H9.81818M9.81818 13.55L9 15.35\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -12124,6 +12152,20 @@
|
|
|
12124
12152
|
"packageName": "round-outlined-radius-1-stroke-1",
|
|
12125
12153
|
"componentName": "IconGalaxy"
|
|
12126
12154
|
},
|
|
12155
|
+
{
|
|
12156
|
+
"category": "Gaming",
|
|
12157
|
+
"svg": "<path d=\"M13.5664 4.5H10.4336C8.12391 4.5 6.96905 4.5 6.01879 4.91119C5.18071 5.27384 4.45795 5.85908 3.92893 6.60342C3.32911 7.44738 3.08893 8.57699 2.60857 10.8362L1.49752 16.0617C1.20999 17.414 1.93728 18.7771 3.2207 19.2912C4.81773 19.931 6.61252 19.0164 7.03352 17.3483L7.3487 16.0995C7.43766 15.747 7.75473 15.5 8.11828 15.5L15.8817 15.5C16.2453 15.5 16.5623 15.747 16.6513 16.0995L16.9665 17.3483C17.3875 19.0164 19.1823 19.931 20.7793 19.2912C22.0627 18.7771 22.79 17.414 22.5025 16.0617L21.3914 10.8362C20.9111 8.57699 20.6709 7.44738 20.0711 6.60342C19.542 5.85908 18.8193 5.27384 17.9812 4.91119C17.031 4.5 15.8761 4.5 13.5664 4.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"11.5\" r=\"1\" fill=\"currentColor\"/><circle cx=\"15\" cy=\"8.5\" r=\"1\" fill=\"currentColor\"/><path d=\"M10.5 10H6.5M8.5 12V8\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
12158
|
+
"iconName": "gamecontroller, joystick, play",
|
|
12159
|
+
"variant": {
|
|
12160
|
+
"join": "round",
|
|
12161
|
+
"filled": "off",
|
|
12162
|
+
"radius": "1",
|
|
12163
|
+
"stroke": "1"
|
|
12164
|
+
},
|
|
12165
|
+
"createdAt": "2026-04-01T11:00:44.936562+00:00",
|
|
12166
|
+
"packageName": "round-outlined-radius-1-stroke-1",
|
|
12167
|
+
"componentName": "IconGamecontroller"
|
|
12168
|
+
},
|
|
12127
12169
|
{
|
|
12128
12170
|
"category": "Gaming",
|
|
12129
12171
|
"svg": "<path d=\"M8 9.75V12M8 12V14.25M8 12H10.25M8 12H5.75M4 6H20C21.1046 6 22 6.89543 22 8V16C22 17.1046 21.1046 18 20 18H4C2.89543 18 2 17.1046 2 16V8C2 6.89543 2.89543 6 4 6Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.375 13.75C14.375 14.0952 14.6548 14.375 15 14.375C15.3452 14.375 15.625 14.0952 15.625 13.75C15.625 13.4048 15.3452 13.125 15 13.125C14.6548 13.125 14.375 13.4048 14.375 13.75ZM17.375 10.25C17.375 10.5952 17.6548 10.875 18 10.875C18.3452 10.875 18.625 10.5952 18.625 10.25C18.625 9.90482 18.3452 9.625 18 9.625C17.6548 9.625 17.375 9.90482 17.375 10.25Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -12600,6 +12642,20 @@
|
|
|
12600
12642
|
"packageName": "round-outlined-radius-1-stroke-1",
|
|
12601
12643
|
"componentName": "IconGoatHead"
|
|
12602
12644
|
},
|
|
12645
|
+
{
|
|
12646
|
+
"category": "Things",
|
|
12647
|
+
"svg": "<path d=\"M7.43874 10.1838L8.77208 6.18377C8.90819 5.77543 9.29033 5.5 9.72076 5.5H14.2792C14.7097 5.5 15.0918 5.77543 15.2279 6.18377L16.5613 10.1838C16.7771 10.8313 16.2951 11.5 15.6126 11.5H8.38743C7.70487 11.5 7.2229 10.8313 7.43874 10.1838Z\" stroke=\"currentColor\"/><path d=\"M2.43874 16.1838L3.77208 12.1838C3.90819 11.7754 4.29033 11.5 4.72076 11.5H9.27924C9.70967 11.5 10.0918 11.7754 10.2279 12.1838L11.5613 16.1838C11.7771 16.8313 11.2951 17.5 10.6126 17.5H3.38743C2.70487 17.5 2.2229 16.8313 2.43874 16.1838Z\" stroke=\"currentColor\"/><path d=\"M12.4387 16.1838L13.7721 12.1838C13.9082 11.7754 14.2903 11.5 14.7208 11.5H19.2792C19.7097 11.5 20.0918 11.7754 20.2279 12.1838L21.5613 16.1838C21.7771 16.8313 21.2951 17.5 20.6126 17.5H13.3874C12.7049 17.5 12.2229 16.8313 12.4387 16.1838Z\" stroke=\"currentColor\"/>",
|
|
12648
|
+
"iconName": "gold, goldbars",
|
|
12649
|
+
"variant": {
|
|
12650
|
+
"join": "round",
|
|
12651
|
+
"filled": "off",
|
|
12652
|
+
"radius": "1",
|
|
12653
|
+
"stroke": "1"
|
|
12654
|
+
},
|
|
12655
|
+
"createdAt": "2026-04-02T10:01:50.480392+00:00",
|
|
12656
|
+
"packageName": "round-outlined-radius-1-stroke-1",
|
|
12657
|
+
"componentName": "IconGold"
|
|
12658
|
+
},
|
|
12603
12659
|
{
|
|
12604
12660
|
"category": "Things",
|
|
12605
12661
|
"svg": "<circle cx=\"12\" cy=\"10\" r=\"8\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 16.5V22.5L12 21L16.5 22.5V16.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.6487 6C12.1491 6 12.5547 6.40561 12.5547 6.90596V13.3945C12.5547 13.7289 12.2836 14 11.9492 14C11.6148 14 11.3438 13.7289 11.3438 13.3945V7.24706C11.3438 7.22711 11.3276 7.21094 11.3076 7.21094C11.3006 7.21094 11.2937 7.21298 11.2879 7.21682L10.1316 7.97193C9.80962 8.18221 9.38281 7.95118 9.38281 7.56661C9.38281 7.40319 9.46526 7.2508 9.60205 7.16139L11.1531 6.14762C11.3004 6.0513 11.4727 6 11.6487 6Z\" fill=\"currentColor\"/>",
|
|
@@ -16884,6 +16940,20 @@
|
|
|
16884
16940
|
"packageName": "round-outlined-radius-1-stroke-1",
|
|
16885
16941
|
"componentName": "IconOffline"
|
|
16886
16942
|
},
|
|
16943
|
+
{
|
|
16944
|
+
"category": "Gaming",
|
|
16945
|
+
"svg": "<path d=\"M12 9.5V15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 12.5V15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 15.5H4.5C3.94772 15.5 3.5 15.9477 3.5 16.5V19.5C3.5 20.0523 3.94772 20.5 4.5 20.5H19.5C20.0523 20.5 20.5 20.0523 20.5 19.5V16.5C20.5 15.9477 20.0523 15.5 19.5 15.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"6.5\" r=\"3\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
16946
|
+
"iconName": "old-joystick, gamepad, gaming, control",
|
|
16947
|
+
"variant": {
|
|
16948
|
+
"join": "round",
|
|
16949
|
+
"filled": "off",
|
|
16950
|
+
"radius": "1",
|
|
16951
|
+
"stroke": "1"
|
|
16952
|
+
},
|
|
16953
|
+
"createdAt": "2026-04-01T11:00:44.936562+00:00",
|
|
16954
|
+
"packageName": "round-outlined-radius-1-stroke-1",
|
|
16955
|
+
"componentName": "IconOldJoystick"
|
|
16956
|
+
},
|
|
16887
16957
|
{
|
|
16888
16958
|
"category": "Devices & Signals",
|
|
16889
16959
|
"svg": "<path d=\"M4.5 6.76316V1.5M7.5 6.5H16.5V13.5H7.5V6.5ZM4.5 17.5V4.5C4.5 3.94772 4.94772 3.5 5.5 3.5H18.5C19.0523 3.5 19.5 3.94772 19.5 4.5V17.5C19.5 19.7091 17.7091 21.5 15.5 21.5H8.5C6.29086 21.5 4.5 19.7091 4.5 17.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -24599,7 +24669,7 @@
|
|
|
24599
24669
|
"componentName": "IconTouchGrass"
|
|
24600
24670
|
},
|
|
24601
24671
|
{
|
|
24602
|
-
"category": "
|
|
24672
|
+
"category": "Building",
|
|
24603
24673
|
"svg": "<path d=\"M9.5 2.5L14.5 2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 2.5V5.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 9.5L18.4933 6.85112C18.7385 6.19737 18.2552 5.5 17.557 5.5H6.443C5.74479 5.5 5.26151 6.19737 5.50667 6.85112L6.5 9.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.382 9.5H4.61803C3.87465 9.5 3.39115 10.2823 3.7236 10.9472L4.7236 12.9472C4.89299 13.286 5.23925 13.5 5.61803 13.5H18.382C18.7607 13.5 19.107 13.286 19.2764 12.9472L20.2764 10.9472C20.6088 10.2823 20.1253 9.5 19.382 9.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 13.5L9.5 21.5H14.5V13.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
24604
24674
|
"iconName": "tower, terminal",
|
|
24605
24675
|
"variant": {
|
package/icons/index.d.ts
CHANGED
|
@@ -598,6 +598,7 @@ export type CentralIconName =
|
|
|
598
598
|
| "IconCupHot"
|
|
599
599
|
| "IconCurrencyDollar"
|
|
600
600
|
| "IconCurrencyEuro"
|
|
601
|
+
| "IconCurrencyLira"
|
|
601
602
|
| "IconCurrencyPesos"
|
|
602
603
|
| "IconCurrencyPounds"
|
|
603
604
|
| "IconCurrencyRupees"
|
|
@@ -798,6 +799,7 @@ export type CentralIconName =
|
|
|
798
799
|
| "IconFlashcards"
|
|
799
800
|
| "IconFloppyDisk1"
|
|
800
801
|
| "IconFloppyDisk2"
|
|
802
|
+
| "IconFlowerShape"
|
|
801
803
|
| "IconFocusAuto"
|
|
802
804
|
| "IconFocusExposure"
|
|
803
805
|
| "IconFocusFlash"
|
|
@@ -865,6 +867,7 @@ export type CentralIconName =
|
|
|
865
867
|
| "IconFullscreen1"
|
|
866
868
|
| "IconFullscreen2"
|
|
867
869
|
| "IconGalaxy"
|
|
870
|
+
| "IconGamecontroller"
|
|
868
871
|
| "IconGamepad"
|
|
869
872
|
| "IconGamepadControls"
|
|
870
873
|
| "IconGamepadControlsDown"
|
|
@@ -899,6 +902,7 @@ export type CentralIconName =
|
|
|
899
902
|
| "IconGlobe"
|
|
900
903
|
| "IconGlobe2"
|
|
901
904
|
| "IconGoatHead"
|
|
905
|
+
| "IconGold"
|
|
902
906
|
| "IconGoldMedal"
|
|
903
907
|
| "IconGolfBall"
|
|
904
908
|
| "IconGooey"
|
|
@@ -1205,6 +1209,7 @@ export type CentralIconName =
|
|
|
1205
1209
|
| "IconNvidia"
|
|
1206
1210
|
| "IconOculus"
|
|
1207
1211
|
| "IconOffline"
|
|
1212
|
+
| "IconOldJoystick"
|
|
1208
1213
|
| "IconOldPhone"
|
|
1209
1214
|
| "IconOllama"
|
|
1210
1215
|
| "IconOmega"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-1-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.177",
|
|
4
4
|
"style": "round-outlined-radius-1-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-1-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1916,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 74,
|
|
@@ -266,7 +266,7 @@
|
|
|
266
266
|
]
|
|
267
267
|
},
|
|
268
268
|
"Building": {
|
|
269
|
-
"count":
|
|
269
|
+
"count": 24,
|
|
270
270
|
"icons": [
|
|
271
271
|
"IconBank",
|
|
272
272
|
"IconBank2",
|
|
@@ -290,7 +290,8 @@
|
|
|
290
290
|
"IconStore2",
|
|
291
291
|
"IconStore3",
|
|
292
292
|
"IconStore4",
|
|
293
|
-
"IconStores"
|
|
293
|
+
"IconStores",
|
|
294
|
+
"IconTower"
|
|
294
295
|
]
|
|
295
296
|
},
|
|
296
297
|
"Clouds": {
|
|
@@ -829,8 +830,9 @@
|
|
|
829
830
|
]
|
|
830
831
|
},
|
|
831
832
|
"Forms & Shapes": {
|
|
832
|
-
"count":
|
|
833
|
+
"count": 15,
|
|
833
834
|
"icons": [
|
|
835
|
+
"IconFlowerShape",
|
|
834
836
|
"IconFormCapsule",
|
|
835
837
|
"IconFormCircle",
|
|
836
838
|
"IconFormDiamond",
|
|
@@ -870,7 +872,7 @@
|
|
|
870
872
|
]
|
|
871
873
|
},
|
|
872
874
|
"Gaming": {
|
|
873
|
-
"count":
|
|
875
|
+
"count": 25,
|
|
874
876
|
"icons": [
|
|
875
877
|
"IconDice1",
|
|
876
878
|
"IconDice2",
|
|
@@ -879,6 +881,7 @@
|
|
|
879
881
|
"IconDice5",
|
|
880
882
|
"IconDice6",
|
|
881
883
|
"IconDices",
|
|
884
|
+
"IconGamecontroller",
|
|
882
885
|
"IconGamepad",
|
|
883
886
|
"IconGamepadControls",
|
|
884
887
|
"IconGamepadControlsDown",
|
|
@@ -890,6 +893,7 @@
|
|
|
890
893
|
"IconGamepadControlsRoundRight",
|
|
891
894
|
"IconGamepadControlsRoundUp",
|
|
892
895
|
"IconGamepadControlsUp",
|
|
896
|
+
"IconOldJoystick",
|
|
893
897
|
"IconRoulette1",
|
|
894
898
|
"IconRoulette2",
|
|
895
899
|
"IconScratchCard",
|
|
@@ -1431,7 +1435,7 @@
|
|
|
1431
1435
|
]
|
|
1432
1436
|
},
|
|
1433
1437
|
"Shopping & Payment": {
|
|
1434
|
-
"count":
|
|
1438
|
+
"count": 70,
|
|
1435
1439
|
"icons": [
|
|
1436
1440
|
"Icon3dPackage",
|
|
1437
1441
|
"IconAddToBasket",
|
|
@@ -1450,6 +1454,7 @@
|
|
|
1450
1454
|
"IconCreditCardAdd",
|
|
1451
1455
|
"IconCurrencyDollar",
|
|
1452
1456
|
"IconCurrencyEuro",
|
|
1457
|
+
"IconCurrencyLira",
|
|
1453
1458
|
"IconCurrencyPesos",
|
|
1454
1459
|
"IconCurrencyPounds",
|
|
1455
1460
|
"IconCurrencyRupees",
|
|
@@ -1828,6 +1833,7 @@
|
|
|
1828
1833
|
"IconForYou",
|
|
1829
1834
|
"IconGalaxy",
|
|
1830
1835
|
"IconGoatHead",
|
|
1836
|
+
"IconGold",
|
|
1831
1837
|
"IconGoldMedal",
|
|
1832
1838
|
"IconGraduateCap",
|
|
1833
1839
|
"IconInfinity",
|
|
@@ -1900,7 +1906,6 @@
|
|
|
1900
1906
|
"IconThread",
|
|
1901
1907
|
"IconTicket",
|
|
1902
1908
|
"IconToiletPaper",
|
|
1903
|
-
"IconTower",
|
|
1904
1909
|
"IconTreasure",
|
|
1905
1910
|
"IconTrophy",
|
|
1906
1911
|
"IconUnicorn",
|
|
@@ -2712,6 +2717,7 @@
|
|
|
2712
2717
|
"IconCupHot": "cup-hot, coffee, tea, milk, mug",
|
|
2713
2718
|
"IconCurrencyDollar": "currency-dollar, money",
|
|
2714
2719
|
"IconCurrencyEuro": "currency-euro, money",
|
|
2720
|
+
"IconCurrencyLira": "currency-lira, money",
|
|
2715
2721
|
"IconCurrencyPesos": "currency-pesos, money",
|
|
2716
2722
|
"IconCurrencyPounds": "currency-pounds, money",
|
|
2717
2723
|
"IconCurrencyRupees": "currency-rupees, money",
|
|
@@ -2912,6 +2918,7 @@
|
|
|
2912
2918
|
"IconFlashcards": "flashcards, cards, pages",
|
|
2913
2919
|
"IconFloppyDisk1": "floppy-disk-1, save",
|
|
2914
2920
|
"IconFloppyDisk2": "floppy-disk-2, save",
|
|
2921
|
+
"IconFlowerShape": "flower-shape",
|
|
2915
2922
|
"IconFocusAuto": "focus-auto",
|
|
2916
2923
|
"IconFocusExposure": "focus-exposure",
|
|
2917
2924
|
"IconFocusFlash": "focus-flash",
|
|
@@ -2979,6 +2986,7 @@
|
|
|
2979
2986
|
"IconFullscreen1": "fullscreen-1",
|
|
2980
2987
|
"IconFullscreen2": "fullscreen-2",
|
|
2981
2988
|
"IconGalaxy": "galaxy, dark-hole",
|
|
2989
|
+
"IconGamecontroller": "gamecontroller, joystick, play",
|
|
2982
2990
|
"IconGamepad": "gamepad, gaming, joystick",
|
|
2983
2991
|
"IconGamepadControls": "gamepad-controls, joystick",
|
|
2984
2992
|
"IconGamepadControlsDown": "gamepad-controls-down, joystick",
|
|
@@ -3013,6 +3021,7 @@
|
|
|
3013
3021
|
"IconGlobe": "globe, network, translate",
|
|
3014
3022
|
"IconGlobe2": "globe-2, network, translate",
|
|
3015
3023
|
"IconGoatHead": "goat-head, goated",
|
|
3024
|
+
"IconGold": "gold, goldbars",
|
|
3016
3025
|
"IconGoldMedal": "gold-medal, first-place, win",
|
|
3017
3026
|
"IconGolfBall": "golf-ball",
|
|
3018
3027
|
"IconGooey": "gooey, morph, liquid-glass",
|
|
@@ -3319,6 +3328,7 @@
|
|
|
3319
3328
|
"IconNvidia": "nvidia",
|
|
3320
3329
|
"IconOculus": "oculus",
|
|
3321
3330
|
"IconOffline": "offline, disconnect, energy",
|
|
3331
|
+
"IconOldJoystick": "old-joystick, gamepad, gaming, control",
|
|
3322
3332
|
"IconOldPhone": "old-phone",
|
|
3323
3333
|
"IconOllama": "ollama",
|
|
3324
3334
|
"IconOmega": "omega, special-character",
|
package/index.d.ts
CHANGED
|
@@ -597,6 +597,7 @@ export { IconCup, default as IconCupDefault } from "./IconCup";
|
|
|
597
597
|
export { IconCupHot, default as IconCupHotDefault } from "./IconCupHot";
|
|
598
598
|
export { IconCurrencyDollar, default as IconCurrencyDollarDefault, } from "./IconCurrencyDollar";
|
|
599
599
|
export { IconCurrencyEuro, default as IconCurrencyEuroDefault, } from "./IconCurrencyEuro";
|
|
600
|
+
export { IconCurrencyLira, default as IconCurrencyLiraDefault, } from "./IconCurrencyLira";
|
|
600
601
|
export { IconCurrencyPesos, default as IconCurrencyPesosDefault, } from "./IconCurrencyPesos";
|
|
601
602
|
export { IconCurrencyPounds, default as IconCurrencyPoundsDefault, } from "./IconCurrencyPounds";
|
|
602
603
|
export { IconCurrencyRupees, default as IconCurrencyRupeesDefault, } from "./IconCurrencyRupees";
|
|
@@ -797,6 +798,7 @@ export { IconFlag2, default as IconFlag2Default } from "./IconFlag2";
|
|
|
797
798
|
export { IconFlashcards, default as IconFlashcardsDefault, } from "./IconFlashcards";
|
|
798
799
|
export { IconFloppyDisk1, default as IconFloppyDisk1Default, } from "./IconFloppyDisk1";
|
|
799
800
|
export { IconFloppyDisk2, default as IconFloppyDisk2Default, } from "./IconFloppyDisk2";
|
|
801
|
+
export { IconFlowerShape, default as IconFlowerShapeDefault, } from "./IconFlowerShape";
|
|
800
802
|
export { IconFocusAuto, default as IconFocusAutoDefault, } from "./IconFocusAuto";
|
|
801
803
|
export { IconFocusExposure, default as IconFocusExposureDefault, } from "./IconFocusExposure";
|
|
802
804
|
export { IconFocusFlash, default as IconFocusFlashDefault, } from "./IconFocusFlash";
|
|
@@ -864,6 +866,7 @@ export { IconFullScreen, default as IconFullScreenDefault, } from "./IconFullScr
|
|
|
864
866
|
export { IconFullscreen1, default as IconFullscreen1Default, } from "./IconFullscreen1";
|
|
865
867
|
export { IconFullscreen2, default as IconFullscreen2Default, } from "./IconFullscreen2";
|
|
866
868
|
export { IconGalaxy, default as IconGalaxyDefault } from "./IconGalaxy";
|
|
869
|
+
export { IconGamecontroller, default as IconGamecontrollerDefault, } from "./IconGamecontroller";
|
|
867
870
|
export { IconGamepad, default as IconGamepadDefault } from "./IconGamepad";
|
|
868
871
|
export { IconGamepadControls, default as IconGamepadControlsDefault, } from "./IconGamepadControls";
|
|
869
872
|
export { IconGamepadControlsDown, default as IconGamepadControlsDownDefault, } from "./IconGamepadControlsDown";
|
|
@@ -898,6 +901,7 @@ export { IconGlassWater, default as IconGlassWaterDefault, } from "./IconGlassWa
|
|
|
898
901
|
export { IconGlobe, default as IconGlobeDefault } from "./IconGlobe";
|
|
899
902
|
export { IconGlobe2, default as IconGlobe2Default } from "./IconGlobe2";
|
|
900
903
|
export { IconGoatHead, default as IconGoatHeadDefault } from "./IconGoatHead";
|
|
904
|
+
export { IconGold, default as IconGoldDefault } from "./IconGold";
|
|
901
905
|
export { IconGoldMedal, default as IconGoldMedalDefault, } from "./IconGoldMedal";
|
|
902
906
|
export { IconGolfBall, default as IconGolfBallDefault } from "./IconGolfBall";
|
|
903
907
|
export { IconGooey, default as IconGooeyDefault } from "./IconGooey";
|
|
@@ -1204,6 +1208,7 @@ export { IconNumbers123, default as IconNumbers123Default, } from "./IconNumbers
|
|
|
1204
1208
|
export { IconNvidia, default as IconNvidiaDefault } from "./IconNvidia";
|
|
1205
1209
|
export { IconOculus, default as IconOculusDefault } from "./IconOculus";
|
|
1206
1210
|
export { IconOffline, default as IconOfflineDefault } from "./IconOffline";
|
|
1211
|
+
export { IconOldJoystick, default as IconOldJoystickDefault, } from "./IconOldJoystick";
|
|
1207
1212
|
export { IconOldPhone, default as IconOldPhoneDefault } from "./IconOldPhone";
|
|
1208
1213
|
export { IconOllama, default as IconOllamaDefault } from "./IconOllama";
|
|
1209
1214
|
export { IconOmega, default as IconOmegaDefault } from "./IconOmega";
|