@central-icons-react-native/round-filled-radius-0-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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCurrencyLira: FC<CentralIconBaseProps>;
4
+ export default IconCurrencyLira;
@@ -0,0 +1,2 @@
1
+ "use strict";var i=Object.create;var C=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!x.call(r,e)&&e!==t&&C(r,e,{get:()=>o[e],enumerable:!(p=u(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?i(I(r)):{},a(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(C({},"__esModule",{value:!0}),r);var v={};P(v,{IconCurrencyLira:()=>L,default:()=>V});module.exports=g(v);var n=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(s.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 f=require("react-native-svg"),L=r=>n.default.createElement(c,{...r},n.default.createElement(f.Path,{d:"M8.49989 3C8.77598 3.00006 8.99989 3.2239 8.99989 3.5V10.2451L15.3348 8.02832C15.5954 7.9372 15.8804 8.07437 15.9716 8.33496C16.0627 8.59554 15.9255 8.88043 15.6649 8.97168L8.99989 11.3037V13.2451L15.3348 11.0283C15.5954 10.9372 15.8804 11.0744 15.9716 11.335C16.0627 11.5955 15.9255 11.8804 15.6649 11.9717L8.99989 14.3037V20H12.4999C15.5374 19.9999 17.9999 17.5375 17.9999 14.5C17.9999 14.2239 18.2237 14 18.4999 14C18.776 14.0001 18.9999 14.2239 18.9999 14.5C18.9999 18.0898 16.0897 20.9999 12.4999 21H8.49989C8.22374 21 7.99989 20.7761 7.99989 20.5V14.6543L5.66493 15.4717C5.40431 15.5629 5.11944 15.4256 5.02821 15.165C4.93701 14.9044 5.07422 14.6195 5.33485 14.5283L7.99989 13.5947V11.6543L5.66493 12.4717C5.40431 12.5629 5.11944 12.4256 5.02821 12.165C4.93701 11.9044 5.07422 11.6195 5.33485 11.5283L7.99989 10.5947V3.5C7.99989 3.22386 8.22374 3 8.49989 3Z",fill:"currentColor"})),V=L;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.49989 3C8.77598 3.00006 8.99989 3.2239 8.99989 3.5V10.2451L15.3348 8.02832C15.5954 7.9372 15.8804 8.07437 15.9716 8.33496C16.0627 8.59554 15.9255 8.88043 15.6649 8.97168L8.99989 11.3037V13.2451L15.3348 11.0283C15.5954 10.9372 15.8804 11.0744 15.9716 11.335C16.0627 11.5955 15.9255 11.8804 15.6649 11.9717L8.99989 14.3037V20H12.4999C15.5374 19.9999 17.9999 17.5375 17.9999 14.5C17.9999 14.2239 18.2237 14 18.4999 14C18.776 14.0001 18.9999 14.2239 18.9999 14.5C18.9999 18.0898 16.0897 20.9999 12.4999 21H8.49989C8.22374 21 7.99989 20.7761 7.99989 20.5V14.6543L5.66493 15.4717C5.40431 15.5629 5.11944 15.4256 5.02821 15.165C4.93701 14.9044 5.07422 14.6195 5.33485 14.5283L7.99989 13.5947V11.6543L5.66493 12.4717C5.40431 12.5629 5.11944 12.4256 5.02821 12.165C4.93701 11.9044 5.07422 11.6195 5.33485 11.5283L7.99989 10.5947V3.5C7.99989 3.22386 8.22374 3 8.49989 3Z\"\n fill=\"currentColor\"\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,k2BACF,KAAK,eACP,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 e from"react";import n from"react";import{Svg as p}from"react-native-svg";var t=({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 l=o=>e.createElement(t,{...o},e.createElement(a,{d:"M8.49989 3C8.77598 3.00006 8.99989 3.2239 8.99989 3.5V10.2451L15.3348 8.02832C15.5954 7.9372 15.8804 8.07437 15.9716 8.33496C16.0627 8.59554 15.9255 8.88043 15.6649 8.97168L8.99989 11.3037V13.2451L15.3348 11.0283C15.5954 10.9372 15.8804 11.0744 15.9716 11.335C16.0627 11.5955 15.9255 11.8804 15.6649 11.9717L8.99989 14.3037V20H12.4999C15.5374 19.9999 17.9999 17.5375 17.9999 14.5C17.9999 14.2239 18.2237 14 18.4999 14C18.776 14.0001 18.9999 14.2239 18.9999 14.5C18.9999 18.0898 16.0897 20.9999 12.4999 21H8.49989C8.22374 21 7.99989 20.7761 7.99989 20.5V14.6543L5.66493 15.4717C5.40431 15.5629 5.11944 15.4256 5.02821 15.165C4.93701 14.9044 5.07422 14.6195 5.33485 14.5283L7.99989 13.5947V11.6543L5.66493 12.4717C5.40431 12.5629 5.11944 12.4256 5.02821 12.165C4.93701 11.9044 5.07422 11.6195 5.33485 11.5283L7.99989 10.5947V3.5C7.99989 3.22386 8.22374 3 8.49989 3Z",fill:"currentColor"})),x=l;export{l as IconCurrencyLira,x 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.49989 3C8.77598 3.00006 8.99989 3.2239 8.99989 3.5V10.2451L15.3348 8.02832C15.5954 7.9372 15.8804 8.07437 15.9716 8.33496C16.0627 8.59554 15.9255 8.88043 15.6649 8.97168L8.99989 11.3037V13.2451L15.3348 11.0283C15.5954 10.9372 15.8804 11.0744 15.9716 11.335C16.0627 11.5955 15.9255 11.8804 15.6649 11.9717L8.99989 14.3037V20H12.4999C15.5374 19.9999 17.9999 17.5375 17.9999 14.5C17.9999 14.2239 18.2237 14 18.4999 14C18.776 14.0001 18.9999 14.2239 18.9999 14.5C18.9999 18.0898 16.0897 20.9999 12.4999 21H8.49989C8.22374 21 7.99989 20.7761 7.99989 20.5V14.6543L5.66493 15.4717C5.40431 15.5629 5.11944 15.4256 5.02821 15.165C4.93701 14.9044 5.07422 14.6195 5.33485 14.5283L7.99989 13.5947V11.6543L5.66493 12.4717C5.40431 12.5629 5.11944 12.4256 5.02821 12.165C4.93701 11.9044 5.07422 11.6195 5.33485 11.5283L7.99989 10.5947V3.5C7.99989 3.22386 8.22374 3 8.49989 3Z\"\n fill=\"currentColor\"\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,k2BACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCurrencyLira","props","React","CentralIconBase","IconCurrencyLira_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconFlowerShape: FC<CentralIconBaseProps>;
4
+ export default IconFlowerShape;
@@ -0,0 +1,2 @@
1
+ "use strict";var I=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of u(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=i(o,t))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?I(x(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>a(n({},"__esModule",{value:!0}),r);var F={};g(F,{IconFlowerShape:()=>B,default:()=>v});module.exports=h(F);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.default.createElement(s.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=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M12.0004 2C14.2612 2.00009 16.1933 3.39799 16.9847 5.375C19.1101 5.51626 21.0378 6.92261 21.7367 9.07324C22.4354 11.2238 21.702 13.4938 20.0658 14.8574C20.5881 16.9222 19.847 19.1893 18.0179 20.5186C16.1886 21.8477 13.8028 21.8525 12.0004 20.7178C10.1979 21.8525 7.81219 21.8476 5.98279 20.5186C4.15365 19.1893 3.4117 16.9222 3.93396 14.8574C2.29806 13.4938 1.56533 11.2236 2.26404 9.07324C2.96283 6.9229 4.88998 5.51655 7.01501 5.375C7.8064 3.39779 9.73932 2 12.0004 2Z",fill:"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=\"M12.0004 2C14.2612 2.00009 16.1933 3.39799 16.9847 5.375C19.1101 5.51626 21.0378 6.92261 21.7367 9.07324C22.4354 11.2238 21.702 13.4938 20.0658 14.8574C20.5881 16.9222 19.847 19.1893 18.0179 20.5186C16.1886 21.8477 13.8028 21.8525 12.0004 20.7178C10.1979 21.8525 7.81219 21.8476 5.98279 20.5186C4.15365 19.1893 3.4117 16.9222 3.93396 14.8574C2.29806 13.4938 1.56533 11.2236 2.26404 9.07324C2.96283 6.9229 4.88998 5.51655 7.01501 5.375C7.8064 3.39779 9.73932 2 12.0004 2Z\"\n fill=\"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,ydACF,KAAK,eACP,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 p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,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 l=o=>t.createElement(e,{...o},t.createElement(a,{d:"M12.0004 2C14.2612 2.00009 16.1933 3.39799 16.9847 5.375C19.1101 5.51626 21.0378 6.92261 21.7367 9.07324C22.4354 11.2238 21.702 13.4938 20.0658 14.8574C20.5881 16.9222 19.847 19.1893 18.0179 20.5186C16.1886 21.8477 13.8028 21.8525 12.0004 20.7178C10.1979 21.8525 7.81219 21.8476 5.98279 20.5186C4.15365 19.1893 3.4117 16.9222 3.93396 14.8574C2.29806 13.4938 1.56533 11.2236 2.26404 9.07324C2.96283 6.9229 4.88998 5.51655 7.01501 5.375C7.8064 3.39779 9.73932 2 12.0004 2Z",fill:"currentColor"})),P=l;export{l as IconFlowerShape,P 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=\"M12.0004 2C14.2612 2.00009 16.1933 3.39799 16.9847 5.375C19.1101 5.51626 21.0378 6.92261 21.7367 9.07324C22.4354 11.2238 21.702 13.4938 20.0658 14.8574C20.5881 16.9222 19.847 19.1893 18.0179 20.5186C16.1886 21.8477 13.8028 21.8525 12.0004 20.7178C10.1979 21.8525 7.81219 21.8476 5.98279 20.5186C4.15365 19.1893 3.4117 16.9222 3.93396 14.8574C2.29806 13.4938 1.56533 11.2236 2.26404 9.07324C2.96283 6.9229 4.88998 5.51655 7.01501 5.375C7.8064 3.39779 9.73932 2 12.0004 2Z\"\n fill=\"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,ydACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFlowerShape","props","React","CentralIconBase","IconFlowerShape_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconGamecontroller: FC<CentralIconBaseProps>;
4
+ export default IconGamecontroller;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(C,o)=>{for(var r in o)t(C,r,{get:o[r],enumerable:!0})},l=(C,o,r,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!v.call(C,e)&&e!==r&&t(C,e,{get:()=>o[e],enumerable:!(p=B(o,e))||p.enumerable});return C};var a=(C,o,r)=>(r=C!=null?u(d(C)):{},l(o||!C||!C.__esModule?t(r,"default",{value:C,enumerable:!0}):r,C)),P=C=>l(t({},"__esModule",{value:!0}),C);var H={};x(H,{IconGamecontroller:()=>i,default:()=>g});module.exports=P(H);var n=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:C,size:o=24,...r})=>m.default.createElement(c.Svg,{...r,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C);var f=require("react-native-svg"),i=C=>n.default.createElement(s,{...C},n.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.5646 4C14.712 4 15.5997 3.99968 16.3185 4.05273C17.0436 4.10626 17.6316 4.21581 18.1779 4.45215C19.0997 4.85101 19.8948 5.49486 20.4767 6.31348C20.8216 6.79872 21.0509 7.35166 21.2541 8.0498C21.4554 8.74186 21.6404 9.61014 21.8791 10.7324L22.9894 15.958C23.3274 17.5482 22.4722 19.1513 20.963 19.7559C19.0852 20.5077 16.9746 19.432 16.4796 17.4707L16.1095 16H7.88688L7.51676 17.4707C7.02173 19.4321 4.91119 20.5078 3.03336 19.7559C1.52434 19.1513 0.669034 17.5481 1.00699 15.958L2.11734 10.7324C2.35596 9.61015 2.54097 8.74186 2.74234 8.0498C2.94551 7.35168 3.17483 6.79871 3.51969 6.31348C4.10156 5.49487 4.89678 4.85103 5.81852 4.45215C6.36481 4.21578 6.95287 4.10627 7.67789 4.05273C8.39669 3.99967 9.2844 4 10.4318 4H13.5646ZM8.4982 7.5C8.22214 7.50009 7.9982 7.72392 7.9982 8V9.5H6.4982C6.22214 9.50009 5.9982 9.72392 5.9982 10C5.9982 10.2761 6.22214 10.4999 6.4982 10.5H7.9982V12C7.9982 12.2761 8.22214 12.4999 8.4982 12.5C8.77435 12.5 8.9982 12.2761 8.9982 12V10.5H10.4982C10.7743 10.5 10.9982 10.2761 10.9982 10C10.9982 9.72386 10.7743 9.5 10.4982 9.5H8.9982V8C8.9982 7.72386 8.77435 7.5 8.4982 7.5ZM16.9982 10.5C16.446 10.5001 15.9982 10.9478 15.9982 11.5C15.9982 12.0522 16.446 12.4999 16.9982 12.5C17.5505 12.5 17.9982 12.0523 17.9982 11.5C17.9982 10.9477 17.5505 10.5 16.9982 10.5ZM14.9982 7.5C14.446 7.50009 13.9982 7.94777 13.9982 8.5C13.9982 9.05223 14.446 9.49991 14.9982 9.5C15.5505 9.5 15.9982 9.05228 15.9982 8.5C15.9982 7.94772 15.5505 7.5 14.9982 7.5Z",fill:"currentColor"})),g=i;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 { Path } from \"react-native-svg\";\n\nexport const IconGamecontroller: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.5646 4C14.712 4 15.5997 3.99968 16.3185 4.05273C17.0436 4.10626 17.6316 4.21581 18.1779 4.45215C19.0997 4.85101 19.8948 5.49486 20.4767 6.31348C20.8216 6.79872 21.0509 7.35166 21.2541 8.0498C21.4554 8.74186 21.6404 9.61014 21.8791 10.7324L22.9894 15.958C23.3274 17.5482 22.4722 19.1513 20.963 19.7559C19.0852 20.5077 16.9746 19.432 16.4796 17.4707L16.1095 16H7.88688L7.51676 17.4707C7.02173 19.4321 4.91119 20.5078 3.03336 19.7559C1.52434 19.1513 0.669034 17.5481 1.00699 15.958L2.11734 10.7324C2.35596 9.61015 2.54097 8.74186 2.74234 8.0498C2.94551 7.35168 3.17483 6.79871 3.51969 6.31348C4.10156 5.49487 4.89678 4.85103 5.81852 4.45215C6.36481 4.21578 6.95287 4.10627 7.67789 4.05273C8.39669 3.99967 9.2844 4 10.4318 4H13.5646ZM8.4982 7.5C8.22214 7.50009 7.9982 7.72392 7.9982 8V9.5H6.4982C6.22214 9.50009 5.9982 9.72392 5.9982 10C5.9982 10.2761 6.22214 10.4999 6.4982 10.5H7.9982V12C7.9982 12.2761 8.22214 12.4999 8.4982 12.5C8.77435 12.5 8.9982 12.2761 8.9982 12V10.5H10.4982C10.7743 10.5 10.9982 10.2761 10.9982 10C10.9982 9.72386 10.7743 9.5 10.4982 9.5H8.9982V8C8.9982 7.72386 8.77435 7.5 8.4982 7.5ZM16.9982 10.5C16.446 10.5001 15.9982 10.9478 15.9982 11.5C15.9982 12.0522 16.446 12.4999 16.9982 12.5C17.5505 12.5 17.9982 12.0523 17.9982 11.5C17.9982 10.9477 17.5505 10.5 16.9982 10.5ZM14.9982 7.5C14.446 7.50009 13.9982 7.94777 13.9982 8.5C13.9982 9.05223 14.446 9.49991 14.9982 9.5C15.5505 9.5 15.9982 9.05228 15.9982 8.5C15.9982 7.94772 15.5505 7.5 14.9982 7.5Z\"\n fill=\"currentColor\"\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,EAAqB,4BAERC,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,u8CACF,KAAK,eACP,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 e from"react";import n from"react";import{Svg as p}from"react-native-svg";var r=({children:o,size:C=24,...t})=>n.createElement(p,{...t,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as l}from"react-native-svg";var a=o=>e.createElement(r,{...o},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.5646 4C14.712 4 15.5997 3.99968 16.3185 4.05273C17.0436 4.10626 17.6316 4.21581 18.1779 4.45215C19.0997 4.85101 19.8948 5.49486 20.4767 6.31348C20.8216 6.79872 21.0509 7.35166 21.2541 8.0498C21.4554 8.74186 21.6404 9.61014 21.8791 10.7324L22.9894 15.958C23.3274 17.5482 22.4722 19.1513 20.963 19.7559C19.0852 20.5077 16.9746 19.432 16.4796 17.4707L16.1095 16H7.88688L7.51676 17.4707C7.02173 19.4321 4.91119 20.5078 3.03336 19.7559C1.52434 19.1513 0.669034 17.5481 1.00699 15.958L2.11734 10.7324C2.35596 9.61015 2.54097 8.74186 2.74234 8.0498C2.94551 7.35168 3.17483 6.79871 3.51969 6.31348C4.10156 5.49487 4.89678 4.85103 5.81852 4.45215C6.36481 4.21578 6.95287 4.10627 7.67789 4.05273C8.39669 3.99967 9.2844 4 10.4318 4H13.5646ZM8.4982 7.5C8.22214 7.50009 7.9982 7.72392 7.9982 8V9.5H6.4982C6.22214 9.50009 5.9982 9.72392 5.9982 10C5.9982 10.2761 6.22214 10.4999 6.4982 10.5H7.9982V12C7.9982 12.2761 8.22214 12.4999 8.4982 12.5C8.77435 12.5 8.9982 12.2761 8.9982 12V10.5H10.4982C10.7743 10.5 10.9982 10.2761 10.9982 10C10.9982 9.72386 10.7743 9.5 10.4982 9.5H8.9982V8C8.9982 7.72386 8.77435 7.5 8.4982 7.5ZM16.9982 10.5C16.446 10.5001 15.9982 10.9478 15.9982 11.5C15.9982 12.0522 16.446 12.4999 16.9982 12.5C17.5505 12.5 17.9982 12.0523 17.9982 11.5C17.9982 10.9477 17.5505 10.5 16.9982 10.5ZM14.9982 7.5C14.446 7.50009 13.9982 7.94777 13.9982 8.5C13.9982 9.05223 14.446 9.49991 14.9982 9.5C15.5505 9.5 15.9982 9.05228 15.9982 8.5C15.9982 7.94772 15.5505 7.5 14.9982 7.5Z",fill:"currentColor"})),v=a;export{a as IconGamecontroller,v 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 { Path } from \"react-native-svg\";\n\nexport const IconGamecontroller: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.5646 4C14.712 4 15.5997 3.99968 16.3185 4.05273C17.0436 4.10626 17.6316 4.21581 18.1779 4.45215C19.0997 4.85101 19.8948 5.49486 20.4767 6.31348C20.8216 6.79872 21.0509 7.35166 21.2541 8.0498C21.4554 8.74186 21.6404 9.61014 21.8791 10.7324L22.9894 15.958C23.3274 17.5482 22.4722 19.1513 20.963 19.7559C19.0852 20.5077 16.9746 19.432 16.4796 17.4707L16.1095 16H7.88688L7.51676 17.4707C7.02173 19.4321 4.91119 20.5078 3.03336 19.7559C1.52434 19.1513 0.669034 17.5481 1.00699 15.958L2.11734 10.7324C2.35596 9.61015 2.54097 8.74186 2.74234 8.0498C2.94551 7.35168 3.17483 6.79871 3.51969 6.31348C4.10156 5.49487 4.89678 4.85103 5.81852 4.45215C6.36481 4.21578 6.95287 4.10627 7.67789 4.05273C8.39669 3.99967 9.2844 4 10.4318 4H13.5646ZM8.4982 7.5C8.22214 7.50009 7.9982 7.72392 7.9982 8V9.5H6.4982C6.22214 9.50009 5.9982 9.72392 5.9982 10C5.9982 10.2761 6.22214 10.4999 6.4982 10.5H7.9982V12C7.9982 12.2761 8.22214 12.4999 8.4982 12.5C8.77435 12.5 8.9982 12.2761 8.9982 12V10.5H10.4982C10.7743 10.5 10.9982 10.2761 10.9982 10C10.9982 9.72386 10.7743 9.5 10.4982 9.5H8.9982V8C8.9982 7.72386 8.77435 7.5 8.4982 7.5ZM16.9982 10.5C16.446 10.5001 15.9982 10.9478 15.9982 11.5C15.9982 12.0522 16.446 12.4999 16.9982 12.5C17.5505 12.5 17.9982 12.0523 17.9982 11.5C17.9982 10.9477 17.5505 10.5 16.9982 10.5ZM14.9982 7.5C14.446 7.50009 13.9982 7.94777 13.9982 8.5C13.9982 9.05223 14.446 9.49991 14.9982 9.5C15.5505 9.5 15.9982 9.05228 15.9982 8.5C15.9982 7.94772 15.5505 7.5 14.9982 7.5Z\"\n fill=\"currentColor\"\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,QAAAG,MAAY,mBAEd,IAAMC,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,u8CACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGamecontroller","props","React","CentralIconBase","IconGamecontroller_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconGold: FC<CentralIconBaseProps>;
4
+ export default IconGold;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var e=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0})},a=(r,o,C,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!x.call(r,t)&&t!==C&&e(r,t,{get:()=>o[t],enumerable:!(l=L(o,t))||l.enumerable});return r};var m=(r,o,C)=>(C=r!=null?u(I(r)):{},a(o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C,r)),d=r=>a(e({},"__esModule",{value:!0}),r);var H={};P(H,{IconGold:()=>i,default:()=>g});module.exports=d(H);var n=m(require("react"));var f=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...C})=>f.default.createElement(s.Svg,{...C,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"),i=r=>n.default.createElement(c,{...r},n.default.createElement(p.Path,{d:"M9.27738 12.0059C9.45583 12.0337 9.60838 12.1573 9.67093 12.3311L11.4707 17.3311C11.5256 17.484 11.5026 17.6541 11.4092 17.7871C11.3156 17.9203 11.1628 18 11 18H2.00003C1.83722 18 1.68447 17.9203 1.59085 17.7871C1.49752 17.6541 1.47444 17.484 1.52933 17.3311L3.32913 12.3311C3.40052 12.1327 3.58909 12.0001 3.79984 12H9.20023L9.27738 12.0059Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M20.2774 12.0059C20.4558 12.0337 20.6084 12.1573 20.6709 12.3311L22.4707 17.3311C22.5256 17.484 22.5026 17.6541 22.4092 17.7871C22.3156 17.9203 22.1628 18 22 18H13C12.8372 18 12.6845 17.9203 12.5909 17.7871C12.4975 17.6541 12.4744 17.484 12.5293 17.3311L14.3291 12.3311C14.4005 12.1327 14.5891 12.0001 14.7998 12H20.2002L20.2774 12.0059Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M14.7774 5.00586C14.9558 5.03374 15.1084 5.15732 15.1709 5.33105L16.9707 10.3311C17.0256 10.484 17.0026 10.6541 16.9092 10.7871C16.8156 10.9203 16.6628 11 16.5 11H7.50003C7.33722 11 7.18447 10.9203 7.09085 10.7871C6.99752 10.6541 6.97444 10.484 7.02933 10.3311L8.82913 5.33105C8.90052 5.13275 9.08909 5.0001 9.29984 5H14.7002L14.7774 5.00586Z",fill:"currentColor"})),g=i;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=\"M9.27738 12.0059C9.45583 12.0337 9.60838 12.1573 9.67093 12.3311L11.4707 17.3311C11.5256 17.484 11.5026 17.6541 11.4092 17.7871C11.3156 17.9203 11.1628 18 11 18H2.00003C1.83722 18 1.68447 17.9203 1.59085 17.7871C1.49752 17.6541 1.47444 17.484 1.52933 17.3311L3.32913 12.3311C3.40052 12.1327 3.58909 12.0001 3.79984 12H9.20023L9.27738 12.0059Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.2774 12.0059C20.4558 12.0337 20.6084 12.1573 20.6709 12.3311L22.4707 17.3311C22.5256 17.484 22.5026 17.6541 22.4092 17.7871C22.3156 17.9203 22.1628 18 22 18H13C12.8372 18 12.6845 17.9203 12.5909 17.7871C12.4975 17.6541 12.4744 17.484 12.5293 17.3311L14.3291 12.3311C14.4005 12.1327 14.5891 12.0001 14.7998 12H20.2002L20.2774 12.0059Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.7774 5.00586C14.9558 5.03374 15.1084 5.15732 15.1709 5.33105L16.9707 10.3311C17.0256 10.484 17.0026 10.6541 16.9092 10.7871C16.8156 10.9203 16.6628 11 16.5 11H7.50003C7.33722 11 7.18447 10.9203 7.09085 10.7871C6.99752 10.6541 6.97444 10.484 7.02933 10.3311L8.82913 5.33105C8.90052 5.13275 9.08909 5.0001 9.29984 5H14.7002L14.7774 5.00586Z\"\n fill=\"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,yVACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oVACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yVACF,KAAK,eACP,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 l}from"react-native-svg";var n=({children:C,size:r=24,...e})=>p.createElement(l,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C);import{Path as t}from"react-native-svg";var a=C=>o.createElement(n,{...C},o.createElement(t,{d:"M9.27738 12.0059C9.45583 12.0337 9.60838 12.1573 9.67093 12.3311L11.4707 17.3311C11.5256 17.484 11.5026 17.6541 11.4092 17.7871C11.3156 17.9203 11.1628 18 11 18H2.00003C1.83722 18 1.68447 17.9203 1.59085 17.7871C1.49752 17.6541 1.47444 17.484 1.52933 17.3311L3.32913 12.3311C3.40052 12.1327 3.58909 12.0001 3.79984 12H9.20023L9.27738 12.0059Z",fill:"currentColor"}),o.createElement(t,{d:"M20.2774 12.0059C20.4558 12.0337 20.6084 12.1573 20.6709 12.3311L22.4707 17.3311C22.5256 17.484 22.5026 17.6541 22.4092 17.7871C22.3156 17.9203 22.1628 18 22 18H13C12.8372 18 12.6845 17.9203 12.5909 17.7871C12.4975 17.6541 12.4744 17.484 12.5293 17.3311L14.3291 12.3311C14.4005 12.1327 14.5891 12.0001 14.7998 12H20.2002L20.2774 12.0059Z",fill:"currentColor"}),o.createElement(t,{d:"M14.7774 5.00586C14.9558 5.03374 15.1084 5.15732 15.1709 5.33105L16.9707 10.3311C17.0256 10.484 17.0026 10.6541 16.9092 10.7871C16.8156 10.9203 16.6628 11 16.5 11H7.50003C7.33722 11 7.18447 10.9203 7.09085 10.7871C6.99752 10.6541 6.97444 10.484 7.02933 10.3311L8.82913 5.33105C8.90052 5.13275 9.08909 5.0001 9.29984 5H14.7002L14.7774 5.00586Z",fill:"currentColor"})),x=a;export{a as IconGold,x 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=\"M9.27738 12.0059C9.45583 12.0337 9.60838 12.1573 9.67093 12.3311L11.4707 17.3311C11.5256 17.484 11.5026 17.6541 11.4092 17.7871C11.3156 17.9203 11.1628 18 11 18H2.00003C1.83722 18 1.68447 17.9203 1.59085 17.7871C1.49752 17.6541 1.47444 17.484 1.52933 17.3311L3.32913 12.3311C3.40052 12.1327 3.58909 12.0001 3.79984 12H9.20023L9.27738 12.0059Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20.2774 12.0059C20.4558 12.0337 20.6084 12.1573 20.6709 12.3311L22.4707 17.3311C22.5256 17.484 22.5026 17.6541 22.4092 17.7871C22.3156 17.9203 22.1628 18 22 18H13C12.8372 18 12.6845 17.9203 12.5909 17.7871C12.4975 17.6541 12.4744 17.484 12.5293 17.3311L14.3291 12.3311C14.4005 12.1327 14.5891 12.0001 14.7998 12H20.2002L20.2774 12.0059Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14.7774 5.00586C14.9558 5.03374 15.1084 5.15732 15.1709 5.33105L16.9707 10.3311C17.0256 10.484 17.0026 10.6541 16.9092 10.7871C16.8156 10.9203 16.6628 11 16.5 11H7.50003C7.33722 11 7.18447 10.9203 7.09085 10.7871C6.99752 10.6541 6.97444 10.484 7.02933 10.3311L8.82913 5.33105C8.90052 5.13275 9.08909 5.0001 9.29984 5H14.7002L14.7774 5.00586Z\"\n fill=\"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,yVACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oVACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yVACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGold","props","React","CentralIconBase","IconGold_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconOldJoystick: FC<CentralIconBaseProps>;
4
+ export default IconOldJoystick;
@@ -0,0 +1,2 @@
1
+ "use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=I(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),V=r=>a(n({},"__esModule",{value:!0}),r);var y={};g(y,{IconOldJoystick:()=>i,default:()=>v});module.exports=V(y);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(s.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 f=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.2632 14.1961 9.72121 12.5 9.96387V15H17V12.5C17 12.2239 17.2239 12 17.5 12C17.7761 12 18 12.2239 18 12.5V15H20.5C20.7761 15 21 15.2239 21 15.5V20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5V15.5C3 15.2239 3.22386 15 3.5 15H11.5V9.96387C9.8039 9.72121 8.5 8.2632 8.5 6.5C8.5 4.567 10.067 3 12 3Z",fill:"currentColor"})),v=i;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 { Path } from \"react-native-svg\";\n\nexport const IconOldJoystick: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.2632 14.1961 9.72121 12.5 9.96387V15H17V12.5C17 12.2239 17.2239 12 17.5 12C17.7761 12 18 12.2239 18 12.5V15H20.5C20.7761 15 21 15.2239 21 15.5V20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5V15.5C3 15.2239 3.22386 15 3.5 15H11.5V9.96387C9.8039 9.72121 8.5 8.2632 8.5 6.5C8.5 4.567 10.067 3 12 3Z\"\n fill=\"currentColor\"\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,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,uWACF,KAAK,eACP,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 e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.createElement(p,{...n,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 l=o=>e.createElement(t,{...o},e.createElement(a,{d:"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.2632 14.1961 9.72121 12.5 9.96387V15H17V12.5C17 12.2239 17.2239 12 17.5 12C17.7761 12 18 12.2239 18 12.5V15H20.5C20.7761 15 21 15.2239 21 15.5V20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5V15.5C3 15.2239 3.22386 15 3.5 15H11.5V9.96387C9.8039 9.72121 8.5 8.2632 8.5 6.5C8.5 4.567 10.067 3 12 3Z",fill:"currentColor"})),P=l;export{l as IconOldJoystick,P 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 { Path } from \"react-native-svg\";\n\nexport const IconOldJoystick: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.2632 14.1961 9.72121 12.5 9.96387V15H17V12.5C17 12.2239 17.2239 12 17.5 12C17.7761 12 18 12.2239 18 12.5V15H20.5C20.7761 15 21 15.2239 21 15.5V20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5V15.5C3 15.2239 3.22386 15 3.5 15H11.5V9.96387C9.8039 9.72121 8.5 8.2632 8.5 6.5C8.5 4.567 10.067 3 12 3Z\"\n fill=\"currentColor\"\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,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,uWACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","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
@@ -8386,6 +8386,20 @@
8386
8386
  "packageName": "round-filled-radius-0-stroke-1",
8387
8387
  "componentName": "IconCurrencyEuro"
8388
8388
  },
8389
+ {
8390
+ "category": "Shopping & Payment",
8391
+ "svg": "<path d=\"M8.49989 3C8.77598 3.00006 8.99989 3.2239 8.99989 3.5V10.2451L15.3348 8.02832C15.5954 7.9372 15.8804 8.07437 15.9716 8.33496C16.0627 8.59554 15.9255 8.88043 15.6649 8.97168L8.99989 11.3037V13.2451L15.3348 11.0283C15.5954 10.9372 15.8804 11.0744 15.9716 11.335C16.0627 11.5955 15.9255 11.8804 15.6649 11.9717L8.99989 14.3037V20H12.4999C15.5374 19.9999 17.9999 17.5375 17.9999 14.5C17.9999 14.2239 18.2237 14 18.4999 14C18.776 14.0001 18.9999 14.2239 18.9999 14.5C18.9999 18.0898 16.0897 20.9999 12.4999 21H8.49989C8.22374 21 7.99989 20.7761 7.99989 20.5V14.6543L5.66493 15.4717C5.40431 15.5629 5.11944 15.4256 5.02821 15.165C4.93701 14.9044 5.07422 14.6195 5.33485 14.5283L7.99989 13.5947V11.6543L5.66493 12.4717C5.40431 12.5629 5.11944 12.4256 5.02821 12.165C4.93701 11.9044 5.07422 11.6195 5.33485 11.5283L7.99989 10.5947V3.5C7.99989 3.22386 8.22374 3 8.49989 3Z\" fill=\"currentColor\"/>",
8392
+ "iconName": "currency-lira, money",
8393
+ "variant": {
8394
+ "join": "round",
8395
+ "filled": "on",
8396
+ "radius": "0",
8397
+ "stroke": "1"
8398
+ },
8399
+ "createdAt": "2026-04-02T10:01:50.480392+00:00",
8400
+ "packageName": "round-filled-radius-0-stroke-1",
8401
+ "componentName": "IconCurrencyLira"
8402
+ },
8389
8403
  {
8390
8404
  "category": "Shopping & Payment",
8391
8405
  "svg": "<path d=\"M20.25 10.75H3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.25 6.75H3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 21.25V2.75H12.4044C15.7137 2.75 18.3981 5.42937 18.4044 8.73864C18.4107 12.0568 15.7226 14.75 12.4044 14.75H7.29546\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
@@ -11186,6 +11200,20 @@
11186
11200
  "packageName": "round-filled-radius-0-stroke-1",
11187
11201
  "componentName": "IconFloppyDisk2"
11188
11202
  },
11203
+ {
11204
+ "category": "Forms & Shapes",
11205
+ "svg": "<path d=\"M12.0004 2C14.2612 2.00009 16.1933 3.39799 16.9847 5.375C19.1101 5.51626 21.0378 6.92261 21.7367 9.07324C22.4354 11.2238 21.702 13.4938 20.0658 14.8574C20.5881 16.9222 19.847 19.1893 18.0179 20.5186C16.1886 21.8477 13.8028 21.8525 12.0004 20.7178C10.1979 21.8525 7.81219 21.8476 5.98279 20.5186C4.15365 19.1893 3.4117 16.9222 3.93396 14.8574C2.29806 13.4938 1.56533 11.2236 2.26404 9.07324C2.96283 6.9229 4.88998 5.51655 7.01501 5.375C7.8064 3.39779 9.73932 2 12.0004 2Z\" fill=\"currentColor\"/>",
11206
+ "iconName": "flower-shape",
11207
+ "variant": {
11208
+ "join": "round",
11209
+ "filled": "on",
11210
+ "radius": "0",
11211
+ "stroke": "1"
11212
+ },
11213
+ "createdAt": "2026-04-01T11:00:44.936562+00:00",
11214
+ "packageName": "round-filled-radius-0-stroke-1",
11215
+ "componentName": "IconFlowerShape"
11216
+ },
11189
11217
  {
11190
11218
  "category": "Photography & Video",
11191
11219
  "svg": "<path d=\"M3.5 3C3.22386 3 3 3.22386 3 3.5V8C3 8.27614 3.22386 8.5 3.5 8.5C3.77614 8.5 4 8.27614 4 8V4H8C8.27614 4 8.5 3.77614 8.5 3.5C8.5 3.22386 8.27614 3 8 3H3.5Z\" fill=\"currentColor\"/><path d=\"M16 3C15.7239 3 15.5 3.22386 15.5 3.5C15.5 3.77614 15.7239 4 16 4H20V8C20 8.27614 20.2239 8.5 20.5 8.5C20.7761 8.5 21 8.27614 21 8V3.5C21 3.22386 20.7761 3 20.5 3H16Z\" fill=\"currentColor\"/><path d=\"M4 16C4 15.7239 3.77614 15.5 3.5 15.5C3.22386 15.5 3 15.7239 3 16V20.5C3 20.7761 3.22386 21 3.5 21H8C8.27614 21 8.5 20.7761 8.5 20.5C8.5 20.2239 8.27614 20 8 20H4V16Z\" fill=\"currentColor\"/><path d=\"M21 16C21 15.7239 20.7761 15.5 20.5 15.5C20.2239 15.5 20 15.7239 20 16V20H16C15.7239 20 15.5 20.2239 15.5 20.5C15.5 20.7761 15.7239 21 16 21H20.5C20.7761 21 21 20.7761 21 20.5V16Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.4552 8.5431C12.374 8.3646 12.1961 8.25 12 8.25C11.8039 8.25 11.626 8.3646 11.5448 8.5431L8.54482 15.1431C8.43055 15.3945 8.54171 15.6909 8.7931 15.8052C9.04449 15.9195 9.34091 15.8083 9.45518 15.5569L10.1401 14.05H13.8599L14.5448 15.5569C14.6591 15.8083 14.9555 15.9195 15.2069 15.8052C15.4583 15.6909 15.5695 15.3945 15.4552 15.1431L12.4552 8.5431ZM13.4053 13.05H10.5947L12 9.9583L13.4053 13.05Z\" fill=\"currentColor\"/>",
@@ -12124,6 +12152,20 @@
12124
12152
  "packageName": "round-filled-radius-0-stroke-1",
12125
12153
  "componentName": "IconGalaxy"
12126
12154
  },
12155
+ {
12156
+ "category": "Gaming",
12157
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.5646 4C14.712 4 15.5997 3.99968 16.3185 4.05273C17.0436 4.10626 17.6316 4.21581 18.1779 4.45215C19.0997 4.85101 19.8948 5.49486 20.4767 6.31348C20.8216 6.79872 21.0509 7.35166 21.2541 8.0498C21.4554 8.74186 21.6404 9.61014 21.8791 10.7324L22.9894 15.958C23.3274 17.5482 22.4722 19.1513 20.963 19.7559C19.0852 20.5077 16.9746 19.432 16.4796 17.4707L16.1095 16H7.88688L7.51676 17.4707C7.02173 19.4321 4.91119 20.5078 3.03336 19.7559C1.52434 19.1513 0.669034 17.5481 1.00699 15.958L2.11734 10.7324C2.35596 9.61015 2.54097 8.74186 2.74234 8.0498C2.94551 7.35168 3.17483 6.79871 3.51969 6.31348C4.10156 5.49487 4.89678 4.85103 5.81852 4.45215C6.36481 4.21578 6.95287 4.10627 7.67789 4.05273C8.39669 3.99967 9.2844 4 10.4318 4H13.5646ZM8.4982 7.5C8.22214 7.50009 7.9982 7.72392 7.9982 8V9.5H6.4982C6.22214 9.50009 5.9982 9.72392 5.9982 10C5.9982 10.2761 6.22214 10.4999 6.4982 10.5H7.9982V12C7.9982 12.2761 8.22214 12.4999 8.4982 12.5C8.77435 12.5 8.9982 12.2761 8.9982 12V10.5H10.4982C10.7743 10.5 10.9982 10.2761 10.9982 10C10.9982 9.72386 10.7743 9.5 10.4982 9.5H8.9982V8C8.9982 7.72386 8.77435 7.5 8.4982 7.5ZM16.9982 10.5C16.446 10.5001 15.9982 10.9478 15.9982 11.5C15.9982 12.0522 16.446 12.4999 16.9982 12.5C17.5505 12.5 17.9982 12.0523 17.9982 11.5C17.9982 10.9477 17.5505 10.5 16.9982 10.5ZM14.9982 7.5C14.446 7.50009 13.9982 7.94777 13.9982 8.5C13.9982 9.05223 14.446 9.49991 14.9982 9.5C15.5505 9.5 15.9982 9.05228 15.9982 8.5C15.9982 7.94772 15.5505 7.5 14.9982 7.5Z\" fill=\"currentColor\"/>",
12158
+ "iconName": "gamecontroller, joystick, play",
12159
+ "variant": {
12160
+ "join": "round",
12161
+ "filled": "on",
12162
+ "radius": "0",
12163
+ "stroke": "1"
12164
+ },
12165
+ "createdAt": "2026-04-01T11:00:44.936562+00:00",
12166
+ "packageName": "round-filled-radius-0-stroke-1",
12167
+ "componentName": "IconGamecontroller"
12168
+ },
12127
12169
  {
12128
12170
  "category": "Gaming",
12129
12171
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 5.5C1.72386 5.5 1.5 5.72386 1.5 6V18C1.5 18.2761 1.72386 18.5 2 18.5H22C22.2761 18.5 22.5 18.2761 22.5 18V6C22.5 5.72386 22.2761 5.5 22 5.5H2ZM8 9.25C8.27614 9.25 8.5 9.47386 8.5 9.75V11.5H10.25C10.5261 11.5 10.75 11.7239 10.75 12C10.75 12.2761 10.5261 12.5 10.25 12.5H8.5V14.25C8.5 14.5261 8.27614 14.75 8 14.75C7.72386 14.75 7.5 14.5261 7.5 14.25V12.5H5.75C5.47386 12.5 5.25 12.2761 5.25 12C5.25 11.7239 5.47386 11.5 5.75 11.5H7.5V9.75C7.5 9.47386 7.72386 9.25 8 9.25ZM18 11C17.5858 11 17.25 10.6642 17.25 10.25C17.25 9.83579 17.5858 9.5 18 9.5C18.4142 9.5 18.75 9.83579 18.75 10.25C18.75 10.6642 18.4142 11 18 11ZM15 14.5C14.5858 14.5 14.25 14.1642 14.25 13.75C14.25 13.3358 14.5858 13 15 13C15.4142 13 15.75 13.3358 15.75 13.75C15.75 14.1642 15.4142 14.5 15 14.5Z\" fill=\"currentColor\"/>",
@@ -12600,6 +12642,20 @@
12600
12642
  "packageName": "round-filled-radius-0-stroke-1",
12601
12643
  "componentName": "IconGoatHead"
12602
12644
  },
12645
+ {
12646
+ "category": "Things",
12647
+ "svg": "<path d=\"M9.27738 12.0059C9.45583 12.0337 9.60838 12.1573 9.67093 12.3311L11.4707 17.3311C11.5256 17.484 11.5026 17.6541 11.4092 17.7871C11.3156 17.9203 11.1628 18 11 18H2.00003C1.83722 18 1.68447 17.9203 1.59085 17.7871C1.49752 17.6541 1.47444 17.484 1.52933 17.3311L3.32913 12.3311C3.40052 12.1327 3.58909 12.0001 3.79984 12H9.20023L9.27738 12.0059Z\" fill=\"currentColor\"/><path d=\"M20.2774 12.0059C20.4558 12.0337 20.6084 12.1573 20.6709 12.3311L22.4707 17.3311C22.5256 17.484 22.5026 17.6541 22.4092 17.7871C22.3156 17.9203 22.1628 18 22 18H13C12.8372 18 12.6845 17.9203 12.5909 17.7871C12.4975 17.6541 12.4744 17.484 12.5293 17.3311L14.3291 12.3311C14.4005 12.1327 14.5891 12.0001 14.7998 12H20.2002L20.2774 12.0059Z\" fill=\"currentColor\"/><path d=\"M14.7774 5.00586C14.9558 5.03374 15.1084 5.15732 15.1709 5.33105L16.9707 10.3311C17.0256 10.484 17.0026 10.6541 16.9092 10.7871C16.8156 10.9203 16.6628 11 16.5 11H7.50003C7.33722 11 7.18447 10.9203 7.09085 10.7871C6.99752 10.6541 6.97444 10.484 7.02933 10.3311L8.82913 5.33105C8.90052 5.13275 9.08909 5.0001 9.29984 5H14.7002L14.7774 5.00586Z\" fill=\"currentColor\"/>",
12648
+ "iconName": "gold, goldbars",
12649
+ "variant": {
12650
+ "join": "round",
12651
+ "filled": "on",
12652
+ "radius": "0",
12653
+ "stroke": "1"
12654
+ },
12655
+ "createdAt": "2026-04-02T10:01:50.480392+00:00",
12656
+ "packageName": "round-filled-radius-0-stroke-1",
12657
+ "componentName": "IconGold"
12658
+ },
12603
12659
  {
12604
12660
  "category": "Things",
12605
12661
  "svg": "<path d=\"M16.5 22.2939C16.5 22.79 16.0268 23.1495 15.5488 23.0166L12.2012 22.0859C12.0697 22.0494 11.9303 22.0494 11.7988 22.0859L8.45117 23.0166C7.97324 23.1495 7.5 22.79 7.5 22.2939V17.832C8.83208 18.5753 10.3663 19 12 19C13.6337 19 15.1679 18.5753 16.5 17.832V22.2939Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 1.5C16.5563 1.5 20.25 5.19365 20.25 9.75C20.25 14.3063 16.5563 18 12 18C7.44365 18 3.75 14.3063 3.75 9.75C3.75 5.19365 7.44365 1.5 12 1.5ZM11.7656 5.75C11.5898 5.75006 11.4177 5.8013 11.2705 5.89746L9.71973 6.91113C9.58299 7.00051 9.50007 7.15306 9.5 7.31641C9.5 7.70098 9.92703 7.93196 10.249 7.72168L11.4053 6.9668C11.4111 6.96303 11.4179 6.96094 11.4248 6.96094C11.4448 6.96094 11.4609 6.97712 11.4609 6.99707V13.1445C11.4609 13.4789 11.732 13.75 12.0664 13.75C12.4008 13.75 12.6719 13.4789 12.6719 13.1445V6.65625C12.6719 6.1559 12.266 5.75 11.7656 5.75Z\" fill=\"currentColor\"/>",
@@ -16884,6 +16940,20 @@
16884
16940
  "packageName": "round-filled-radius-0-stroke-1",
16885
16941
  "componentName": "IconOffline"
16886
16942
  },
16943
+ {
16944
+ "category": "Gaming",
16945
+ "svg": "<path d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.2632 14.1961 9.72121 12.5 9.96387V15H17V12.5C17 12.2239 17.2239 12 17.5 12C17.7761 12 18 12.2239 18 12.5V15H20.5C20.7761 15 21 15.2239 21 15.5V20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5V15.5C3 15.2239 3.22386 15 3.5 15H11.5V9.96387C9.8039 9.72121 8.5 8.2632 8.5 6.5C8.5 4.567 10.067 3 12 3Z\" fill=\"currentColor\"/>",
16946
+ "iconName": "old-joystick, gamepad, gaming, control",
16947
+ "variant": {
16948
+ "join": "round",
16949
+ "filled": "on",
16950
+ "radius": "0",
16951
+ "stroke": "1"
16952
+ },
16953
+ "createdAt": "2026-04-01T11:00:44.936562+00:00",
16954
+ "packageName": "round-filled-radius-0-stroke-1",
16955
+ "componentName": "IconOldJoystick"
16956
+ },
16887
16957
  {
16888
16958
  "category": "Devices & Signals",
16889
16959
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.5 1C4.77614 1 5 1.22386 5 1.5V3H19.5C19.7761 3 20 3.22386 20 3.5V17.5C20 19.9853 17.9853 22 15.5 22H8.5C6.01472 22 4 19.9853 4 17.5V1.5C4 1.22386 4.22386 1 4.5 1ZM8 7V13H16V7H8Z\" fill=\"currentColor\"/>",
@@ -24599,7 +24669,7 @@
24599
24669
  "componentName": "IconTouchGrass"
24600
24670
  },
24601
24671
  {
24602
- "category": "Things",
24672
+ "category": "Building",
24603
24673
  "svg": "<path d=\"M14.4968 21.5C14.4968 21.7761 14.2729 22 13.9968 22H9.99677C9.72063 22 9.49677 21.7761 9.49677 21.5V15.5H14.4968V21.5Z\" fill=\"currentColor\"/><path d=\"M20.2272 10C20.5891 10 20.8312 10.3725 20.6843 10.7031L19.1286 14.2031C19.0483 14.3836 18.8691 14.5 18.6716 14.5H5.32196C5.1244 14.5 4.9452 14.3836 4.86493 14.2031L3.30927 10.7031C3.16232 10.3725 3.40447 10 3.7663 10H20.2272Z\" fill=\"currentColor\"/><path d=\"M15.4968 2C15.7729 2 15.9968 2.22386 15.9968 2.5C15.9968 2.77614 15.7729 3 15.4968 3H12.4968V5H18.1882C18.5596 5.0003 18.8014 5.39135 18.6354 5.72363L16.9968 9H6.99677L5.3581 5.72363C5.1921 5.39135 5.43397 5.0003 5.80536 5H11.4968V3H8.49677C8.22063 3 7.99677 2.77614 7.99677 2.5C7.99677 2.22386 8.22063 2 8.49677 2H15.4968Z\" fill=\"currentColor\"/>",
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-filled-radius-0-stroke-1",
3
- "version": "1.1.175",
3
+ "version": "1.1.177",
4
4
  "style": "round-filled-radius-0-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-0-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": 1911,
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": 23,
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": 14,
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": 23,
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": 69,
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";