@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.244 → 1.1.246

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.
@@ -1,2 +1,2 @@
1
- "use strict";var B=Object.create;var e=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var n in o)e(r,n,{get:o[n],enumerable:!0})},a=(r,o,n,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==n&&e(r,t,{get:()=>o[t],enumerable:!(l=u(o,t))||l.enumerable});return r};var m=(r,o,n)=>(n=r!=null?B(g(r)):{},a(o||!r||!r.__esModule?e(n,"default",{value:r,enumerable:!0}):n,r)),v=r=>a(e({},"__esModule",{value:!0}),r);var d={};P(d,{IconCircleBanSign:()=>i,default:()=>S});module.exports=v(d);var p=m(require("react"));var s=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...n})=>s.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 C=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Path,{d:"M2 12C2 6.47715 6.47715 2 12 2C14.5815 2 16.9346 2.9782 18.7087 4.58417L4.58417 18.7087C2.9782 16.9346 2 14.5815 2 12Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M5.29128 19.4158C7.06541 21.0218 9.41847 22 12 22C17.5228 22 22 17.5228 22 12C22 9.41847 21.0218 7.06541 19.4158 5.29128L5.29128 19.4158Z",fill:"currentColor"})),S=i;0&&(module.exports={IconCircleBanSign});
1
+ "use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!g.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(p=B(o,n))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(d(r)):{},l(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(t({},"__esModule",{value:!0}),r);var S={};v(S,{IconCircleBanSign:()=>i,default:()=>P});module.exports=x(S);var C=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:r,size:o=24,...e})=>m.default.createElement(c.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"),i=r=>C.default.createElement(s,{...r},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C14.7613 2 17.2622 3.11961 19.0713 4.92871C20.8804 6.73781 22 9.23871 22 12C22 17.5228 17.5228 22 12 22C9.23871 22 6.73781 20.8804 4.92871 19.0713C3.11961 17.2622 2 14.7613 2 12C2 6.47715 6.47715 2 12 2ZM6 18.7061C7.5928 20.1322 9.69422 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69422 20.1322 7.5928 18.7061 6L6 18.7061ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3053 3.86742 16.4063 5.29297 17.999L17.999 5.29297C16.4063 3.86742 14.3053 3 12 3Z",fill:"currentColor"})),P=i;0&&(module.exports={IconCircleBanSign});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconCircleBanSign/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 IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2 12C2 6.47715 6.47715 2 12 2C14.5815 2 16.9346 2.9782 18.7087 4.58417L4.58417 18.7087C2.9782 16.9346 2 14.5815 2 12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.29128 19.4158C7.06541 21.0218 9.41847 22 12 22C17.5228 22 22 17.5228 22 12C22 9.41847 21.0218 7.06541 19.4158 5.29128L5.29128 19.4158Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\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,uBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4IACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCircleBanSign_exports","__export","IconCircleBanSign","IconCircleBanSign_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
1
+ {"version":3,"sources":["../src/IconCircleBanSign/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 IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C14.7613 2 17.2622 3.11961 19.0713 4.92871C20.8804 6.73781 22 9.23871 22 12C22 17.5228 17.5228 22 12 22C9.23871 22 6.73781 20.8804 4.92871 19.0713C3.11961 17.2622 2 14.7613 2 12C2 6.47715 6.47715 2 12 2ZM6 18.7061C7.5928 20.1322 9.69422 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69422 20.1322 7.5928 18.7061 6L6 18.7061ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3053 3.86742 16.4063 5.29297 17.999L17.999 5.29297C16.4063 3.86742 14.3053 3 12 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\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,uBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,8bACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCircleBanSign_exports","__export","IconCircleBanSign","IconCircleBanSign_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
@@ -1,2 +1,2 @@
1
- import n from"react";import C from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...p})=>C.createElement(l,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as e}from"react-native-svg";var a=o=>n.createElement(t,{...o},n.createElement(e,{d:"M2 12C2 6.47715 6.47715 2 12 2C14.5815 2 16.9346 2.9782 18.7087 4.58417L4.58417 18.7087C2.9782 16.9346 2 14.5815 2 12Z",fill:"currentColor"}),n.createElement(e,{d:"M5.29128 19.4158C7.06541 21.0218 9.41847 22 12 22C17.5228 22 22 17.5228 22 12C22 9.41847 21.0218 7.06541 19.4158 5.29128L5.29128 19.4158Z",fill:"currentColor"})),x=a;export{a as IconCircleBanSign,x as default};
1
+ import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...t})=>C.createElement(p,{...t,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 l}from"react-native-svg";var a=o=>n.createElement(e,{...o},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C14.7613 2 17.2622 3.11961 19.0713 4.92871C20.8804 6.73781 22 9.23871 22 12C22 17.5228 17.5228 22 12 22C9.23871 22 6.73781 20.8804 4.92871 19.0713C3.11961 17.2622 2 14.7613 2 12C2 6.47715 6.47715 2 12 2ZM6 18.7061C7.5928 20.1322 9.69422 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69422 20.1322 7.5928 18.7061 6L6 18.7061ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3053 3.86742 16.4063 5.29297 17.999L17.999 5.29297C16.4063 3.86742 14.3053 3 12 3Z",fill:"currentColor"})),g=a;export{a as IconCircleBanSign,g as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconCircleBanSign/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 IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2 12C2 6.47715 6.47715 2 12 2C14.5815 2 16.9346 2.9782 18.7087 4.58417L4.58417 18.7087C2.9782 16.9346 2 14.5815 2 12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.29128 19.4158C7.06541 21.0218 9.41847 22 12 22C17.5228 22 22 17.5228 22 12C22 9.41847 21.0218 7.06541 19.4158 5.29128L5.29128 19.4158Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yHACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4IACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
1
+ {"version":3,"sources":["../src/IconCircleBanSign/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 IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C14.7613 2 17.2622 3.11961 19.0713 4.92871C20.8804 6.73781 22 9.23871 22 12C22 17.5228 17.5228 22 12 22C9.23871 22 6.73781 20.8804 4.92871 19.0713C3.11961 17.2622 2 14.7613 2 12C2 6.47715 6.47715 2 12 2ZM6 18.7061C7.5928 20.1322 9.69422 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69422 20.1322 7.5928 18.7061 6L6 18.7061ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3053 3.86742 16.4063 5.29297 17.999L17.999 5.29297C16.4063 3.86742 14.3053 3 12 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,8bACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var d=(r,C)=>{for(var o in C)l(r,o,{get:C[o],enumerable:!0})},a=(r,C,o,p)=>{if(C&&typeof C=="object"||typeof C=="function")for(let t of I(C))!x.call(r,t)&&t!==o&&l(r,t,{get:()=>C[t],enumerable:!(p=B(C,t))||p.enumerable});return r};var f=(r,C,o)=>(o=r!=null?u(P(r)):{},a(C||!r||!r.__esModule?l(o,"default",{value:r,enumerable:!0}):o,r)),g=r=>a(l({},"__esModule",{value:!0}),r);var h={};d(h,{IconParasol:()=>i,default:()=>v});module.exports=g(h);var n=f(require("react"));var m=f(require("react")),s=require("react-native-svg"),c=({children:r,size:C=24,...o})=>m.default.createElement(s.Svg,{...o,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r);var e=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(e.Path,{d:"M10.219 13.4825C9.77045 13.8503 9.32054 14.258 8.93993 14.6684C7.80323 12.4998 7.0043 9.93484 6.65142 7.74959C6.45741 6.54815 6.4024 5.48644 6.48904 4.68304C6.53239 4.28105 6.60918 3.96378 6.70871 3.7323C6.80892 3.49923 6.91637 3.38848 7.00084 3.33971C7.08531 3.29094 7.23495 3.25326 7.4869 3.28301C7.73713 3.31256 8.05028 3.40469 8.4201 3.56814C9.15918 3.89481 10.0511 4.47331 10.9946 5.24205C12.7107 6.64027 14.5326 8.61466 15.8422 10.6834C15.2965 10.8078 14.7185 10.9936 14.1757 11.1981C13.3705 11.5016 12.6072 11.8598 12.0917 12.1574C11.5763 12.455 10.8844 12.9369 10.219 13.4825Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M5.51929 4.38379C5.51051 4.44715 5.50264 4.51135 5.49564 4.57631C5.396 5.50021 5.46298 6.65817 5.66504 7.9095C6.01695 10.0888 6.7912 12.6268 7.90219 14.8354C6.87534 15.0803 5.86373 15.8068 5.04195 17.0514C4.63236 17.6718 3.71311 17.6442 3.34142 17.0005C0.888231 12.7514 1.90772 7.45037 5.51929 4.38379Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M8.64844 2.57748C8.70769 2.60155 8.76723 2.62684 8.82699 2.65325C9.67692 3.02892 10.6463 3.6659 11.6289 4.46656C13.3403 5.86095 15.1512 7.8005 16.5084 9.86696C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792C20.5997 8.45339 21.0354 7.64351 20.6637 6.99972C18.2105 2.75067 13.11 0.983059 8.64844 2.57748Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M13.0699 12.7686C12.8914 12.8579 12.7304 12.9441 12.5923 13.0238C12.4543 13.1035 12.2993 13.1997 12.1328 13.3095C12.2009 13.3742 12.2612 13.4498 12.3108 13.5358L16.3186 20.4775C16.4566 20.7166 16.7624 20.7985 17.0016 20.6605C17.2407 20.5224 17.3227 20.2166 17.1846 19.9775L13.1768 13.0358C13.1272 12.9498 13.0918 12.8598 13.0699 12.7686Z",fill:"currentColor"})),v=i;0&&(module.exports={IconParasol});
1
+ "use strict";var u=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var d=(r,C)=>{for(var o in C)l(r,o,{get:C[o],enumerable:!0})},a=(r,C,o,p)=>{if(C&&typeof C=="object"||typeof C=="function")for(let t of I(C))!x.call(r,t)&&t!==o&&l(r,t,{get:()=>C[t],enumerable:!(p=B(C,t))||p.enumerable});return r};var f=(r,C,o)=>(o=r!=null?u(P(r)):{},a(C||!r||!r.__esModule?l(o,"default",{value:r,enumerable:!0}):o,r)),g=r=>a(l({},"__esModule",{value:!0}),r);var h={};d(h,{IconParasol:()=>i,default:()=>v});module.exports=g(h);var n=f(require("react"));var m=f(require("react")),s=require("react-native-svg"),c=({children:r,size:C=24,...o})=>m.default.createElement(s.Svg,{...o,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r);var e=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(e.Path,{d:"M10.2229 13.4825C9.77436 13.8503 9.32444 14.258 8.94384 14.6684C7.80713 12.4998 7.0082 9.93484 6.65533 7.74959C6.46132 6.54815 6.4063 5.48644 6.49295 4.68304C6.5363 4.28105 6.61309 3.96378 6.71261 3.7323C6.81283 3.49923 6.92028 3.38848 7.00475 3.33971C7.08922 3.29094 7.23886 3.25326 7.49081 3.28301C7.74103 3.31256 8.05419 3.40469 8.424 3.56814C9.16309 3.89481 10.055 4.47331 10.9985 5.24205C12.7146 6.64027 14.5365 8.61466 15.8462 10.6834C15.3004 10.8078 14.7224 10.9936 14.1796 11.1981C13.3744 11.5016 12.6111 11.8598 12.0957 12.1574C11.5802 12.455 10.8883 12.9369 10.2229 13.4825Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M5.51929 4.38379C5.51051 4.44715 5.50264 4.51135 5.49564 4.57631C5.396 5.50021 5.46298 6.65817 5.66504 7.9095C6.01695 10.0888 6.7912 12.6268 7.90219 14.8354C6.87534 15.0803 5.86373 15.8068 5.04195 17.0514C4.63236 17.6718 3.71311 17.6442 3.34142 17.0005C0.888231 12.7514 1.90772 7.45037 5.51929 4.38379Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M8.64844 2.57748C8.70769 2.60155 8.76723 2.62684 8.82699 2.65325C9.67692 3.02892 10.6463 3.6659 11.6289 4.46656C13.3403 5.86095 15.1512 7.8005 16.5084 9.86696C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792C20.5997 8.45339 21.0354 7.64351 20.6637 6.99972C18.2105 2.75067 13.11 0.983059 8.64844 2.57748Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M13.0699 12.7686C12.8914 12.8579 12.7304 12.9441 12.5923 13.0238C12.4543 13.1035 12.2993 13.1997 12.1328 13.3095C12.2009 13.3742 12.2612 13.4498 12.3108 13.5358L16.3186 20.4775C16.4566 20.7166 16.7624 20.7985 17.0016 20.6605C17.2407 20.5224 17.3227 20.2166 17.1846 19.9775L13.1768 13.0358C13.1272 12.9498 13.0918 12.8598 13.0699 12.7686Z",fill:"currentColor"})),v=i;0&&(module.exports={IconParasol});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconParasol/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 IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.219 13.4825C9.77045 13.8503 9.32054 14.258 8.93993 14.6684C7.80323 12.4998 7.0043 9.93484 6.65142 7.74959C6.45741 6.54815 6.4024 5.48644 6.48904 4.68304C6.53239 4.28105 6.60918 3.96378 6.70871 3.7323C6.80892 3.49923 6.91637 3.38848 7.00084 3.33971C7.08531 3.29094 7.23495 3.25326 7.4869 3.28301C7.73713 3.31256 8.05028 3.40469 8.4201 3.56814C9.15918 3.89481 10.0511 4.47331 10.9946 5.24205C12.7107 6.64027 14.5326 8.61466 15.8422 10.6834C15.2965 10.8078 14.7185 10.9936 14.1757 11.1981C13.3705 11.5016 12.6072 11.8598 12.0917 12.1574C11.5763 12.455 10.8844 12.9369 10.219 13.4825Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.51929 4.38379C5.51051 4.44715 5.50264 4.51135 5.49564 4.57631C5.396 5.50021 5.46298 6.65817 5.66504 7.9095C6.01695 10.0888 6.7912 12.6268 7.90219 14.8354C6.87534 15.0803 5.86373 15.8068 5.04195 17.0514C4.63236 17.6718 3.71311 17.6442 3.34142 17.0005C0.888231 12.7514 1.90772 7.45037 5.51929 4.38379Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.64844 2.57748C8.70769 2.60155 8.76723 2.62684 8.82699 2.65325C9.67692 3.02892 10.6463 3.6659 11.6289 4.46656C13.3403 5.86095 15.1512 7.8005 16.5084 9.86696C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792C20.5997 8.45339 21.0354 7.64351 20.6637 6.99972C18.2105 2.75067 13.11 0.983059 8.64844 2.57748Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.0699 12.7686C12.8914 12.8579 12.7304 12.9441 12.5923 13.0238C12.4543 13.1035 12.2993 13.1997 12.1328 13.3095C12.2009 13.3742 12.2612 13.4498 12.3108 13.5358L16.3186 20.4775C16.4566 20.7166 16.7624 20.7985 17.0016 20.6605C17.2407 20.5224 17.3227 20.2166 17.1846 19.9775L13.1768 13.0358C13.1272 12.9498 13.0918 12.8598 13.0699 12.7686Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2kBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iTACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iTACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oVACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconParasol_exports","__export","IconParasol","IconParasol_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
1
+ {"version":3,"sources":["../src/IconParasol/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 IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.2229 13.4825C9.77436 13.8503 9.32444 14.258 8.94384 14.6684C7.80713 12.4998 7.0082 9.93484 6.65533 7.74959C6.46132 6.54815 6.4063 5.48644 6.49295 4.68304C6.5363 4.28105 6.61309 3.96378 6.71261 3.7323C6.81283 3.49923 6.92028 3.38848 7.00475 3.33971C7.08922 3.29094 7.23886 3.25326 7.49081 3.28301C7.74103 3.31256 8.05419 3.40469 8.424 3.56814C9.16309 3.89481 10.055 4.47331 10.9985 5.24205C12.7146 6.64027 14.5365 8.61466 15.8462 10.6834C15.3004 10.8078 14.7224 10.9936 14.1796 11.1981C13.3744 11.5016 12.6111 11.8598 12.0957 12.1574C11.5802 12.455 10.8883 12.9369 10.2229 13.4825Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.51929 4.38379C5.51051 4.44715 5.50264 4.51135 5.49564 4.57631C5.396 5.50021 5.46298 6.65817 5.66504 7.9095C6.01695 10.0888 6.7912 12.6268 7.90219 14.8354C6.87534 15.0803 5.86373 15.8068 5.04195 17.0514C4.63236 17.6718 3.71311 17.6442 3.34142 17.0005C0.888231 12.7514 1.90772 7.45037 5.51929 4.38379Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.64844 2.57748C8.70769 2.60155 8.76723 2.62684 8.82699 2.65325C9.67692 3.02892 10.6463 3.6659 11.6289 4.46656C13.3403 5.86095 15.1512 7.8005 16.5084 9.86696C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792C20.5997 8.45339 21.0354 7.64351 20.6637 6.99972C18.2105 2.75067 13.11 0.983059 8.64844 2.57748Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.0699 12.7686C12.8914 12.8579 12.7304 12.9441 12.5923 13.0238C12.4543 13.1035 12.2993 13.1997 12.1328 13.3095C12.2009 13.3742 12.2612 13.4498 12.3108 13.5358L16.3186 20.4775C16.4566 20.7166 16.7624 20.7985 17.0016 20.6605C17.2407 20.5224 17.3227 20.2166 17.1846 19.9775L13.1768 13.0358C13.1272 12.9498 13.0918 12.8598 13.0699 12.7686Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2kBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iTACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iTACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oVACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconParasol_exports","__export","IconParasol","IconParasol_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
@@ -1,2 +1,2 @@
1
- import C from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...e})=>l.createElement(p,{...e,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 o}from"react-native-svg";var a=n=>C.createElement(t,{...n},C.createElement(o,{d:"M10.219 13.4825C9.77045 13.8503 9.32054 14.258 8.93993 14.6684C7.80323 12.4998 7.0043 9.93484 6.65142 7.74959C6.45741 6.54815 6.4024 5.48644 6.48904 4.68304C6.53239 4.28105 6.60918 3.96378 6.70871 3.7323C6.80892 3.49923 6.91637 3.38848 7.00084 3.33971C7.08531 3.29094 7.23495 3.25326 7.4869 3.28301C7.73713 3.31256 8.05028 3.40469 8.4201 3.56814C9.15918 3.89481 10.0511 4.47331 10.9946 5.24205C12.7107 6.64027 14.5326 8.61466 15.8422 10.6834C15.2965 10.8078 14.7185 10.9936 14.1757 11.1981C13.3705 11.5016 12.6072 11.8598 12.0917 12.1574C11.5763 12.455 10.8844 12.9369 10.219 13.4825Z",fill:"currentColor"}),C.createElement(o,{d:"M5.51929 4.38379C5.51051 4.44715 5.50264 4.51135 5.49564 4.57631C5.396 5.50021 5.46298 6.65817 5.66504 7.9095C6.01695 10.0888 6.7912 12.6268 7.90219 14.8354C6.87534 15.0803 5.86373 15.8068 5.04195 17.0514C4.63236 17.6718 3.71311 17.6442 3.34142 17.0005C0.888231 12.7514 1.90772 7.45037 5.51929 4.38379Z",fill:"currentColor"}),C.createElement(o,{d:"M8.64844 2.57748C8.70769 2.60155 8.76723 2.62684 8.82699 2.65325C9.67692 3.02892 10.6463 3.6659 11.6289 4.46656C13.3403 5.86095 15.1512 7.8005 16.5084 9.86696C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792C20.5997 8.45339 21.0354 7.64351 20.6637 6.99972C18.2105 2.75067 13.11 0.983059 8.64844 2.57748Z",fill:"currentColor"}),C.createElement(o,{d:"M13.0699 12.7686C12.8914 12.8579 12.7304 12.9441 12.5923 13.0238C12.4543 13.1035 12.2993 13.1997 12.1328 13.3095C12.2009 13.3742 12.2612 13.4498 12.3108 13.5358L16.3186 20.4775C16.4566 20.7166 16.7624 20.7985 17.0016 20.6605C17.2407 20.5224 17.3227 20.2166 17.1846 19.9775L13.1768 13.0358C13.1272 12.9498 13.0918 12.8598 13.0699 12.7686Z",fill:"currentColor"})),x=a;export{a as IconParasol,x as default};
1
+ import C from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...e})=>l.createElement(p,{...e,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 o}from"react-native-svg";var a=n=>C.createElement(t,{...n},C.createElement(o,{d:"M10.2229 13.4825C9.77436 13.8503 9.32444 14.258 8.94384 14.6684C7.80713 12.4998 7.0082 9.93484 6.65533 7.74959C6.46132 6.54815 6.4063 5.48644 6.49295 4.68304C6.5363 4.28105 6.61309 3.96378 6.71261 3.7323C6.81283 3.49923 6.92028 3.38848 7.00475 3.33971C7.08922 3.29094 7.23886 3.25326 7.49081 3.28301C7.74103 3.31256 8.05419 3.40469 8.424 3.56814C9.16309 3.89481 10.055 4.47331 10.9985 5.24205C12.7146 6.64027 14.5365 8.61466 15.8462 10.6834C15.3004 10.8078 14.7224 10.9936 14.1796 11.1981C13.3744 11.5016 12.6111 11.8598 12.0957 12.1574C11.5802 12.455 10.8883 12.9369 10.2229 13.4825Z",fill:"currentColor"}),C.createElement(o,{d:"M5.51929 4.38379C5.51051 4.44715 5.50264 4.51135 5.49564 4.57631C5.396 5.50021 5.46298 6.65817 5.66504 7.9095C6.01695 10.0888 6.7912 12.6268 7.90219 14.8354C6.87534 15.0803 5.86373 15.8068 5.04195 17.0514C4.63236 17.6718 3.71311 17.6442 3.34142 17.0005C0.888231 12.7514 1.90772 7.45037 5.51929 4.38379Z",fill:"currentColor"}),C.createElement(o,{d:"M8.64844 2.57748C8.70769 2.60155 8.76723 2.62684 8.82699 2.65325C9.67692 3.02892 10.6463 3.6659 11.6289 4.46656C13.3403 5.86095 15.1512 7.8005 16.5084 9.86696C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792C20.5997 8.45339 21.0354 7.64351 20.6637 6.99972C18.2105 2.75067 13.11 0.983059 8.64844 2.57748Z",fill:"currentColor"}),C.createElement(o,{d:"M13.0699 12.7686C12.8914 12.8579 12.7304 12.9441 12.5923 13.0238C12.4543 13.1035 12.2993 13.1997 12.1328 13.3095C12.2009 13.3742 12.2612 13.4498 12.3108 13.5358L16.3186 20.4775C16.4566 20.7166 16.7624 20.7985 17.0016 20.6605C17.2407 20.5224 17.3227 20.2166 17.1846 19.9775L13.1768 13.0358C13.1272 12.9498 13.0918 12.8598 13.0699 12.7686Z",fill:"currentColor"})),x=a;export{a as IconParasol,x as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconParasol/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 IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.219 13.4825C9.77045 13.8503 9.32054 14.258 8.93993 14.6684C7.80323 12.4998 7.0043 9.93484 6.65142 7.74959C6.45741 6.54815 6.4024 5.48644 6.48904 4.68304C6.53239 4.28105 6.60918 3.96378 6.70871 3.7323C6.80892 3.49923 6.91637 3.38848 7.00084 3.33971C7.08531 3.29094 7.23495 3.25326 7.4869 3.28301C7.73713 3.31256 8.05028 3.40469 8.4201 3.56814C9.15918 3.89481 10.0511 4.47331 10.9946 5.24205C12.7107 6.64027 14.5326 8.61466 15.8422 10.6834C15.2965 10.8078 14.7185 10.9936 14.1757 11.1981C13.3705 11.5016 12.6072 11.8598 12.0917 12.1574C11.5763 12.455 10.8844 12.9369 10.219 13.4825Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.51929 4.38379C5.51051 4.44715 5.50264 4.51135 5.49564 4.57631C5.396 5.50021 5.46298 6.65817 5.66504 7.9095C6.01695 10.0888 6.7912 12.6268 7.90219 14.8354C6.87534 15.0803 5.86373 15.8068 5.04195 17.0514C4.63236 17.6718 3.71311 17.6442 3.34142 17.0005C0.888231 12.7514 1.90772 7.45037 5.51929 4.38379Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.64844 2.57748C8.70769 2.60155 8.76723 2.62684 8.82699 2.65325C9.67692 3.02892 10.6463 3.6659 11.6289 4.46656C13.3403 5.86095 15.1512 7.8005 16.5084 9.86696C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792C20.5997 8.45339 21.0354 7.64351 20.6637 6.99972C18.2105 2.75067 13.11 0.983059 8.64844 2.57748Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.0699 12.7686C12.8914 12.8579 12.7304 12.9441 12.5923 13.0238C12.4543 13.1035 12.2993 13.1997 12.1328 13.3095C12.2009 13.3742 12.2612 13.4498 12.3108 13.5358L16.3186 20.4775C16.4566 20.7166 16.7624 20.7985 17.0016 20.6605C17.2407 20.5224 17.3227 20.2166 17.1846 19.9775L13.1768 13.0358C13.1272 12.9498 13.0918 12.8598 13.0699 12.7686Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2kBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iTACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iTACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oVACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
1
+ {"version":3,"sources":["../src/IconParasol/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 IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.2229 13.4825C9.77436 13.8503 9.32444 14.258 8.94384 14.6684C7.80713 12.4998 7.0082 9.93484 6.65533 7.74959C6.46132 6.54815 6.4063 5.48644 6.49295 4.68304C6.5363 4.28105 6.61309 3.96378 6.71261 3.7323C6.81283 3.49923 6.92028 3.38848 7.00475 3.33971C7.08922 3.29094 7.23886 3.25326 7.49081 3.28301C7.74103 3.31256 8.05419 3.40469 8.424 3.56814C9.16309 3.89481 10.055 4.47331 10.9985 5.24205C12.7146 6.64027 14.5365 8.61466 15.8462 10.6834C15.3004 10.8078 14.7224 10.9936 14.1796 11.1981C13.3744 11.5016 12.6111 11.8598 12.0957 12.1574C11.5802 12.455 10.8883 12.9369 10.2229 13.4825Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.51929 4.38379C5.51051 4.44715 5.50264 4.51135 5.49564 4.57631C5.396 5.50021 5.46298 6.65817 5.66504 7.9095C6.01695 10.0888 6.7912 12.6268 7.90219 14.8354C6.87534 15.0803 5.86373 15.8068 5.04195 17.0514C4.63236 17.6718 3.71311 17.6442 3.34142 17.0005C0.888231 12.7514 1.90772 7.45037 5.51929 4.38379Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.64844 2.57748C8.70769 2.60155 8.76723 2.62684 8.82699 2.65325C9.67692 3.02892 10.6463 3.6659 11.6289 4.46656C13.3403 5.86095 15.1512 7.8005 16.5084 9.86696C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792C20.5997 8.45339 21.0354 7.64351 20.6637 6.99972C18.2105 2.75067 13.11 0.983059 8.64844 2.57748Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.0699 12.7686C12.8914 12.8579 12.7304 12.9441 12.5923 13.0238C12.4543 13.1035 12.2993 13.1997 12.1328 13.3095C12.2009 13.3742 12.2612 13.4498 12.3108 13.5358L16.3186 20.4775C16.4566 20.7166 16.7624 20.7985 17.0016 20.6605C17.2407 20.5224 17.3227 20.2166 17.1846 19.9775L13.1768 13.0358C13.1272 12.9498 13.0918 12.8598 13.0699 12.7686Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2kBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iTACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iTACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oVACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPiggyBankCoin: FC<CentralIconBaseProps>;
4
+ export default IconPiggyBankCoin;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var P=(o,r)=>{for(var C in r)n(o,C,{get:r[C],enumerable:!0})},a=(o,r,C,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of d(r))!I.call(o,e)&&e!==C&&n(o,e,{get:()=>r[e],enumerable:!(l=B(r,e))||l.enumerable});return o};var m=(o,r,C)=>(C=o!=null?u(g(o)):{},a(r||!o||!o.__esModule?n(C,"default",{value:o,enumerable:!0}):C,o)),v=o=>a(n({},"__esModule",{value:!0}),o);var y={};P(y,{IconPiggyBankCoin:()=>c,default:()=>x});module.exports=v(y);var t=m(require("react"));var f=m(require("react")),i=require("react-native-svg"),s=({children:o,size:r=24,...C})=>f.default.createElement(i.Svg,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var p=require("react-native-svg"),c=o=>t.default.createElement(s,{...o},t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.8296 4.60059C17.1317 4.36838 17.9392 5.47496 18.0552 6.36914C18.2913 8.18863 19.2773 9.41863 20.9263 9.94043C21.5242 10.1297 22.0005 10.6882 22.0005 11.3906V14.1094C22.0005 14.81 21.5256 15.3729 20.9205 15.5605C19.294 16.0643 18.1585 17.1775 17.7134 18.584C17.3494 19.7346 16.3215 20.9997 14.7574 21H14.2916C13.3892 20.9999 12.5878 20.4224 12.3023 19.5664C12.2891 19.527 12.2511 19.5001 12.2095 19.5H9.79156C9.74996 19.5001 9.71312 19.527 9.69976 19.5664C9.41405 20.4223 8.61188 20.9999 7.70953 21H6.89898C6.05859 21 5.19294 20.6474 4.63433 19.9092C2.77755 17.4543 1.76667 14.2492 2.09136 11.5654C2.25562 10.2086 2.77084 8.92421 3.76422 7.97656C4.76841 7.01885 6.16113 6.5001 7.88531 6.5H11.7994C12.0208 6.4999 12.2475 6.42298 12.4419 6.27344C13.4225 5.51882 14.4513 4.84666 15.8296 4.60059ZM15.2505 10C14.5603 10.0001 14.0007 10.5598 14.0005 11.25C14.0007 11.9402 14.5603 12.4999 15.2505 12.5C15.9407 12.4999 16.5004 11.9402 16.5005 11.25C16.5004 10.5598 15.9407 10.0001 15.2505 10Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M11.0005 2C12.4602 2.00009 13.7367 2.78242 14.4351 3.9502C13.4113 4.33077 12.5717 4.90696 11.8052 5.5H7.88531C7.59293 5.50001 7.30682 5.51416 7.02789 5.54102C7.25564 3.54813 8.94668 2 11.0005 2Z",fill:"currentColor"})),x=c;0&&(module.exports={IconPiggyBankCoin});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPiggyBankCoin/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 IconPiggyBankCoin: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15.8296 4.60059C17.1317 4.36838 17.9392 5.47496 18.0552 6.36914C18.2913 8.18863 19.2773 9.41863 20.9263 9.94043C21.5242 10.1297 22.0005 10.6882 22.0005 11.3906V14.1094C22.0005 14.81 21.5256 15.3729 20.9205 15.5605C19.294 16.0643 18.1585 17.1775 17.7134 18.584C17.3494 19.7346 16.3215 20.9997 14.7574 21H14.2916C13.3892 20.9999 12.5878 20.4224 12.3023 19.5664C12.2891 19.527 12.2511 19.5001 12.2095 19.5H9.79156C9.74996 19.5001 9.71312 19.527 9.69976 19.5664C9.41405 20.4223 8.61188 20.9999 7.70953 21H6.89898C6.05859 21 5.19294 20.6474 4.63433 19.9092C2.77755 17.4543 1.76667 14.2492 2.09136 11.5654C2.25562 10.2086 2.77084 8.92421 3.76422 7.97656C4.76841 7.01885 6.16113 6.5001 7.88531 6.5H11.7994C12.0208 6.4999 12.2475 6.42298 12.4419 6.27344C13.4225 5.51882 14.4513 4.84666 15.8296 4.60059ZM15.2505 10C14.5603 10.0001 14.0007 10.5598 14.0005 11.25C14.0007 11.9402 14.5603 12.4999 15.2505 12.5C15.9407 12.4999 16.5004 11.9402 16.5005 11.25C16.5004 10.5598 15.9407 10.0001 15.2505 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M11.0005 2C12.4602 2.00009 13.7367 2.78242 14.4351 3.9502C13.4113 4.33077 12.5717 4.90696 11.8052 5.5H7.88531C7.59293 5.50001 7.30682 5.51416 7.02789 5.54102C7.25564 3.54813 8.94668 2 11.0005 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPiggyBankCoin;\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,uBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,89BACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qMACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPiggyBankCoin_exports","__export","IconPiggyBankCoin","IconPiggyBankCoin_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPiggyBankCoin","props","React","CentralIconBase","IconPiggyBankCoin_default"]}
@@ -0,0 +1,2 @@
1
+ import C from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:r,size:o=24,...t})=>p.createElement(l,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as n}from"react-native-svg";var a=r=>C.createElement(e,{...r},C.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.8296 4.60059C17.1317 4.36838 17.9392 5.47496 18.0552 6.36914C18.2913 8.18863 19.2773 9.41863 20.9263 9.94043C21.5242 10.1297 22.0005 10.6882 22.0005 11.3906V14.1094C22.0005 14.81 21.5256 15.3729 20.9205 15.5605C19.294 16.0643 18.1585 17.1775 17.7134 18.584C17.3494 19.7346 16.3215 20.9997 14.7574 21H14.2916C13.3892 20.9999 12.5878 20.4224 12.3023 19.5664C12.2891 19.527 12.2511 19.5001 12.2095 19.5H9.79156C9.74996 19.5001 9.71312 19.527 9.69976 19.5664C9.41405 20.4223 8.61188 20.9999 7.70953 21H6.89898C6.05859 21 5.19294 20.6474 4.63433 19.9092C2.77755 17.4543 1.76667 14.2492 2.09136 11.5654C2.25562 10.2086 2.77084 8.92421 3.76422 7.97656C4.76841 7.01885 6.16113 6.5001 7.88531 6.5H11.7994C12.0208 6.4999 12.2475 6.42298 12.4419 6.27344C13.4225 5.51882 14.4513 4.84666 15.8296 4.60059ZM15.2505 10C14.5603 10.0001 14.0007 10.5598 14.0005 11.25C14.0007 11.9402 14.5603 12.4999 15.2505 12.5C15.9407 12.4999 16.5004 11.9402 16.5005 11.25C16.5004 10.5598 15.9407 10.0001 15.2505 10Z",fill:"currentColor"}),C.createElement(n,{d:"M11.0005 2C12.4602 2.00009 13.7367 2.78242 14.4351 3.9502C13.4113 4.33077 12.5717 4.90696 11.8052 5.5H7.88531C7.59293 5.50001 7.30682 5.51416 7.02789 5.54102C7.25564 3.54813 8.94668 2 11.0005 2Z",fill:"currentColor"})),I=a;export{a as IconPiggyBankCoin,I as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPiggyBankCoin/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 IconPiggyBankCoin: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15.8296 4.60059C17.1317 4.36838 17.9392 5.47496 18.0552 6.36914C18.2913 8.18863 19.2773 9.41863 20.9263 9.94043C21.5242 10.1297 22.0005 10.6882 22.0005 11.3906V14.1094C22.0005 14.81 21.5256 15.3729 20.9205 15.5605C19.294 16.0643 18.1585 17.1775 17.7134 18.584C17.3494 19.7346 16.3215 20.9997 14.7574 21H14.2916C13.3892 20.9999 12.5878 20.4224 12.3023 19.5664C12.2891 19.527 12.2511 19.5001 12.2095 19.5H9.79156C9.74996 19.5001 9.71312 19.527 9.69976 19.5664C9.41405 20.4223 8.61188 20.9999 7.70953 21H6.89898C6.05859 21 5.19294 20.6474 4.63433 19.9092C2.77755 17.4543 1.76667 14.2492 2.09136 11.5654C2.25562 10.2086 2.77084 8.92421 3.76422 7.97656C4.76841 7.01885 6.16113 6.5001 7.88531 6.5H11.7994C12.0208 6.4999 12.2475 6.42298 12.4419 6.27344C13.4225 5.51882 14.4513 4.84666 15.8296 4.60059ZM15.2505 10C14.5603 10.0001 14.0007 10.5598 14.0005 11.25C14.0007 11.9402 14.5603 12.4999 15.2505 12.5C15.9407 12.4999 16.5004 11.9402 16.5005 11.25C16.5004 10.5598 15.9407 10.0001 15.2505 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M11.0005 2C12.4602 2.00009 13.7367 2.78242 14.4351 3.9502C13.4113 4.33077 12.5717 4.90696 11.8052 5.5H7.88531C7.59293 5.50001 7.30682 5.51416 7.02789 5.54102C7.25564 3.54813 8.94668 2 11.0005 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPiggyBankCoin;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,89BACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qMACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPiggyBankCoin","props","React","CentralIconBase","IconPiggyBankCoin_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconUnblock: FC<CentralIconBaseProps>;
4
+ export default IconUnblock;
@@ -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=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of I(r))!v.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(p=B(r,n))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(t({},"__esModule",{value:!0}),o);var b={};x(b,{IconUnblock:()=>i,default:()=>g});module.exports=P(b);var C=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:o,size:r=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>C.default.createElement(s,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.8678 16.4067 5.29297 17.999L9.39648 13.8965C9.59175 13.7012 9.90825 13.7012 10.1035 13.8965C10.2988 14.0917 10.2988 14.4083 10.1035 14.6035L6 18.7061C7.5924 20.1318 9.69439 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69439 20.1318 7.5924 18.7061 6L14.6035 10.1035C14.4083 10.2988 14.0917 10.2988 13.8965 10.1035C13.7012 9.90825 13.7012 9.59175 13.8965 9.39648L17.999 5.29297C16.4067 3.8678 14.3051 3 12 3Z",fill:"currentColor"})),g=i;0&&(module.exports={IconUnblock});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconUnblock/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 IconUnblock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.8678 16.4067 5.29297 17.999L9.39648 13.8965C9.59175 13.7012 9.90825 13.7012 10.1035 13.8965C10.2988 14.0917 10.2988 14.4083 10.1035 14.6035L6 18.7061C7.5924 20.1318 9.69439 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69439 20.1318 7.5924 18.7061 6L14.6035 10.1035C14.4083 10.2988 14.0917 10.2988 13.8965 10.1035C13.7012 9.90825 13.7012 9.59175 13.8965 9.39648L17.999 5.29297C16.4067 3.8678 14.3051 3 12 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnblock;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ijBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconUnblock_exports","__export","IconUnblock","IconUnblock_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconUnblock","props","React","CentralIconBase","IconUnblock_default"]}
@@ -0,0 +1,2 @@
1
+ import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>C.createElement(p,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>n.createElement(e,{...r},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.8678 16.4067 5.29297 17.999L9.39648 13.8965C9.59175 13.7012 9.90825 13.7012 10.1035 13.8965C10.2988 14.0917 10.2988 14.4083 10.1035 14.6035L6 18.7061C7.5924 20.1318 9.69439 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69439 20.1318 7.5924 18.7061 6L14.6035 10.1035C14.4083 10.2988 14.0917 10.2988 13.8965 10.1035C13.7012 9.90825 13.7012 9.59175 13.8965 9.39648L17.999 5.29297C16.4067 3.8678 14.3051 3 12 3Z",fill:"currentColor"})),v=a;export{a as IconUnblock,v as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconUnblock/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 IconUnblock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.8678 16.4067 5.29297 17.999L9.39648 13.8965C9.59175 13.7012 9.90825 13.7012 10.1035 13.8965C10.2988 14.0917 10.2988 14.4083 10.1035 14.6035L6 18.7061C7.5924 20.1318 9.69439 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69439 20.1318 7.5924 18.7061 6L14.6035 10.1035C14.4083 10.2988 14.0917 10.2988 13.8965 10.1035C13.7012 9.90825 13.7012 9.59175 13.8965 9.39648L17.999 5.29297C16.4067 3.8678 14.3051 3 12 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnblock;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,ijBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconUnblock","props","React","CentralIconBase","IconUnblock_default"]}
package/README.md CHANGED
@@ -1065,10 +1065,14 @@ Below is a complete list of available icons:
1065
1065
 
1066
1066
  ### Health & Medical
1067
1067
 
1068
+ - IconInjection
1068
1069
  - IconMask1
1069
1070
  - IconMedicalCross
1070
1071
  - IconMedicalCrossCircle
1071
1072
  - IconMedicalCrossSquare
1073
+ - IconMedicinePill
1074
+ - IconMedicinePill2
1075
+ - IconMedicineTablett
1072
1076
 
1073
1077
  ### Interface General
1074
1078
 
@@ -1262,6 +1266,7 @@ Below is a complete list of available icons:
1262
1266
  - IconTrashRounded
1263
1267
  - IconTrial
1264
1268
  - IconUnarchiv
1269
+ - IconUnblock
1265
1270
  - IconUnpin
1266
1271
  - IconUnpin2
1267
1272
  - IconUntrash
@@ -1992,7 +1997,6 @@ Below is a complete list of available icons:
1992
1997
  - IconGraduateCap2
1993
1998
  - IconHermesHelmet
1994
1999
  - IconInfinity
1995
- - IconInjection
1996
2000
  - IconJudgeGavel
1997
2001
  - IconLab
1998
2002
  - IconLifeVest
@@ -2001,9 +2005,6 @@ Below is a complete list of available icons:
2001
2005
  - IconMagicLamp
2002
2006
  - IconMakeItPop
2003
2007
  - IconMedal
2004
- - IconMedicinePill
2005
- - IconMedicinePill2
2006
- - IconMedicineTablett
2007
2008
  - IconMouth
2008
2009
  - IconNailedIt
2009
2010
  - IconOrganisation
@@ -2013,6 +2014,7 @@ Below is a complete list of available icons:
2013
2014
  - IconPeace
2014
2015
  - IconPets
2015
2016
  - IconPiggyBank
2017
+ - IconPiggyBankCoin
2016
2018
  - IconPillow
2017
2019
  - IconPillowZz
2018
2020
  - IconPilone
@@ -6876,7 +6876,7 @@
6876
6876
  },
6877
6877
  {
6878
6878
  "category": "Interface General",
6879
- "svg": "<path d=\"M2 12C2 6.47715 6.47715 2 12 2C14.5815 2 16.9346 2.9782 18.7087 4.58417L4.58417 18.7087C2.9782 16.9346 2 14.5815 2 12Z\" fill=\"currentColor\"/><path d=\"M5.29128 19.4158C7.06541 21.0218 9.41847 22 12 22C17.5228 22 22 17.5228 22 12C22 9.41847 21.0218 7.06541 19.4158 5.29128L5.29128 19.4158Z\" fill=\"currentColor\"/>",
6879
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C14.7613 2 17.2622 3.11961 19.0713 4.92871C20.8804 6.73781 22 9.23871 22 12C22 17.5228 17.5228 22 12 22C9.23871 22 6.73781 20.8804 4.92871 19.0713C3.11961 17.2622 2 14.7613 2 12C2 6.47715 6.47715 2 12 2ZM6 18.7061C7.5928 20.1322 9.69422 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69422 20.1322 7.5928 18.7061 6L6 18.7061ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3053 3.86742 16.4063 5.29297 17.999L17.999 5.29297C16.4063 3.86742 14.3053 3 12 3Z\" fill=\"currentColor\"/>",
6880
6880
  "iconName": "circle-ban-sign, circle, block, ads",
6881
6881
  "variant": {
6882
6882
  "join": "round",
@@ -14589,7 +14589,7 @@
14589
14589
  "componentName": "IconInitiatives"
14590
14590
  },
14591
14591
  {
14592
- "category": "Things",
14592
+ "category": "Health & Medical",
14593
14593
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.1464 2.14662C17.3173 1.97588 17.5813 1.95408 17.7753 2.08216L17.8534 2.14662L21.8534 6.14662L21.9179 6.22474C22.046 6.41877 22.0242 6.68278 21.8534 6.85365C21.6826 7.02451 21.4186 7.04626 21.2245 6.9181L21.1464 6.85365L19.4999 5.20716L17.207 7.50013L20.8534 11.1466L20.9179 11.2247C21.046 11.4188 21.0242 11.6828 20.8534 11.8536C20.6826 12.0245 20.4186 12.0463 20.2245 11.9181L20.1464 11.8536L18.4999 10.2072L11.2675 17.4396C10.3522 18.3547 8.90368 18.4122 7.92179 17.6115L7.73234 17.4396L7.49992 17.2072L3.85344 20.8536C3.65817 21.0489 3.34167 21.0489 3.1464 20.8536C2.95123 20.6584 2.95117 20.3419 3.1464 20.1466L6.79289 16.5001L6.56047 16.2677C5.5844 15.2914 5.58434 13.7088 6.56047 12.7326L13.7929 5.50013L12.1464 3.85365L12.082 3.77552C11.9539 3.58146 11.9756 3.31744 12.1464 3.14662C12.3173 2.97588 12.5813 2.95408 12.7753 3.08216L12.8534 3.14662L16.4999 6.7931L18.7929 4.50013L17.1464 2.85365L17.082 2.77552C16.9539 2.58146 16.9756 2.31744 17.1464 2.14662Z\" fill=\"currentColor\"/>",
14594
14594
  "iconName": "injection",
14595
14595
  "variant": {
@@ -16549,7 +16549,7 @@
16549
16549
  "componentName": "IconMedicalCrossSquare"
16550
16550
  },
16551
16551
  {
16552
- "category": "Things",
16552
+ "category": "Health & Medical",
16553
16553
  "svg": "<path d=\"M9.97503 3.58104C12.0831 1.47299 15.5009 1.47299 17.609 3.58104C19.0387 5.0108 19.4985 7.04233 18.9893 8.85939C17.947 8.3106 16.7598 8 15.5 8C13.6089 8 11.8812 8.69993 10.562 9.85487L7.13159 6.42448L9.97503 3.58104Z\" fill=\"currentColor\"/><path d=\"M8 15.5C8 13.6089 8.69993 11.8812 9.85487 10.562L6.42448 7.13159L3.58104 9.97503C1.47299 12.0831 1.47299 15.5009 3.58104 17.609C5.01082 19.0387 7.04228 19.4983 8.85929 18.9891C8.31056 17.9468 8 16.7597 8 15.5Z\" fill=\"currentColor\"/><path d=\"M9 15.5C9 12.4691 11.0745 9.92267 13.8811 9.20322L16.1339 21.9695C15.9254 21.9897 15.7139 22 15.5 22C11.9101 22 9 19.0899 9 15.5Z\" fill=\"currentColor\"/><path d=\"M22 15.5C22 18.5309 19.9255 21.0773 17.1189 21.7968L14.8661 9.03052C15.0746 9.01033 15.2861 9 15.5 9C19.0899 9 22 11.9101 22 15.5Z\" fill=\"currentColor\"/>",
16554
16554
  "iconName": "medicine-pill",
16555
16555
  "variant": {
@@ -16563,7 +16563,7 @@
16563
16563
  "componentName": "IconMedicinePill"
16564
16564
  },
16565
16565
  {
16566
- "category": "Things",
16566
+ "category": "Health & Medical",
16567
16567
  "svg": "<path d=\"M19.8105 12.0963C21.1114 11.3022 22 10.2521 22 9C22 7.43805 20.6172 6.19048 18.7763 5.36206C16.8884 4.51251 14.3154 4 11.5 4C9.24011 4 7.1364 4.33022 5.41784 4.8999L19.8105 12.0963Z\" fill=\"currentColor\"/><path d=\"M18.7137 12.6659L4.16207 5.39005C2.35201 6.21847 1 7.45554 1 9C1 10.562 2.38281 11.8095 4.22375 12.6379C6.11163 13.4875 8.68462 14 11.5 14C14.2844 14 16.8317 13.4987 18.7137 12.6659Z\" fill=\"currentColor\"/><path d=\"M1 11.5643C1.73179 12.4244 2.77439 13.0823 3.81339 13.5499C5.85773 14.4698 8.57671 15 11.5 15C14.4233 15 17.1423 14.4698 19.1866 13.5499C20.2256 13.0823 21.2682 12.4244 22 11.5643V15C22 16.562 20.6172 17.8095 18.7763 18.6379C16.8884 19.4875 14.3154 20 11.5 20C8.68462 20 6.11163 19.4875 4.22375 18.6379C2.38281 17.8095 1 16.562 1 15V11.5643Z\" fill=\"currentColor\"/>",
16568
16568
  "iconName": "medicine-pill-2, tablett",
16569
16569
  "variant": {
@@ -16577,7 +16577,7 @@
16577
16577
  "componentName": "IconMedicinePill2"
16578
16578
  },
16579
16579
  {
16580
- "category": "Things",
16580
+ "category": "Health & Medical",
16581
16581
  "svg": "<path d=\"M11.8951 3.89701C14.1614 1.63069 17.8358 1.63068 20.1022 3.89701C22.3685 6.16334 22.3685 9.83779 20.1022 12.1041L16.4557 15.7506L8.24861 7.54346L11.8951 3.89701Z\" fill=\"currentColor\"/><path d=\"M7.54151 8.25057L3.89506 11.897C1.62873 14.1633 1.62873 17.8378 3.89506 20.1041C6.16139 22.3704 9.83584 22.3704 12.1022 20.1041L15.7486 16.4577L7.54151 8.25057Z\" fill=\"currentColor\"/>",
16582
16582
  "iconName": "medicine-tablett, pill",
16583
16583
  "variant": {
@@ -18748,7 +18748,7 @@
18748
18748
  },
18749
18749
  {
18750
18750
  "category": "Things",
18751
- "svg": "<path d=\"M10.219 13.4825C9.77045 13.8503 9.32054 14.258 8.93993 14.6684C7.80323 12.4998 7.0043 9.93484 6.65142 7.74959C6.45741 6.54815 6.4024 5.48644 6.48904 4.68304C6.53239 4.28105 6.60918 3.96378 6.70871 3.7323C6.80892 3.49923 6.91637 3.38848 7.00084 3.33971C7.08531 3.29094 7.23495 3.25326 7.4869 3.28301C7.73713 3.31256 8.05028 3.40469 8.4201 3.56814C9.15918 3.89481 10.0511 4.47331 10.9946 5.24205C12.7107 6.64027 14.5326 8.61466 15.8422 10.6834C15.2965 10.8078 14.7185 10.9936 14.1757 11.1981C13.3705 11.5016 12.6072 11.8598 12.0917 12.1574C11.5763 12.455 10.8844 12.9369 10.219 13.4825Z\" fill=\"currentColor\"/><path d=\"M5.51929 4.38379C5.51051 4.44715 5.50264 4.51135 5.49564 4.57631C5.396 5.50021 5.46298 6.65817 5.66504 7.9095C6.01695 10.0888 6.7912 12.6268 7.90219 14.8354C6.87534 15.0803 5.86373 15.8068 5.04195 17.0514C4.63236 17.6718 3.71311 17.6442 3.34142 17.0005C0.888231 12.7514 1.90772 7.45037 5.51929 4.38379Z\" fill=\"currentColor\"/><path d=\"M8.64844 2.57748C8.70769 2.60155 8.76723 2.62684 8.82699 2.65325C9.67692 3.02892 10.6463 3.6659 11.6289 4.46656C13.3403 5.86095 15.1512 7.8005 16.5084 9.86696C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792C20.5997 8.45339 21.0354 7.64351 20.6637 6.99972C18.2105 2.75067 13.11 0.983059 8.64844 2.57748Z\" fill=\"currentColor\"/><path d=\"M13.0699 12.7686C12.8914 12.8579 12.7304 12.9441 12.5923 13.0238C12.4543 13.1035 12.2993 13.1997 12.1328 13.3095C12.2009 13.3742 12.2612 13.4498 12.3108 13.5358L16.3186 20.4775C16.4566 20.7166 16.7624 20.7985 17.0016 20.6605C17.2407 20.5224 17.3227 20.2166 17.1846 19.9775L13.1768 13.0358C13.1272 12.9498 13.0918 12.8598 13.0699 12.7686Z\" fill=\"currentColor\"/>",
18751
+ "svg": "<path d=\"M10.2229 13.4825C9.77436 13.8503 9.32444 14.258 8.94384 14.6684C7.80713 12.4998 7.0082 9.93484 6.65533 7.74959C6.46132 6.54815 6.4063 5.48644 6.49295 4.68304C6.5363 4.28105 6.61309 3.96378 6.71261 3.7323C6.81283 3.49923 6.92028 3.38848 7.00475 3.33971C7.08922 3.29094 7.23886 3.25326 7.49081 3.28301C7.74103 3.31256 8.05419 3.40469 8.424 3.56814C9.16309 3.89481 10.055 4.47331 10.9985 5.24205C12.7146 6.64027 14.5365 8.61466 15.8462 10.6834C15.3004 10.8078 14.7224 10.9936 14.1796 11.1981C13.3744 11.5016 12.6111 11.8598 12.0957 12.1574C11.5802 12.455 10.8883 12.9369 10.2229 13.4825Z\" fill=\"currentColor\"/><path d=\"M5.51929 4.38379C5.51051 4.44715 5.50264 4.51135 5.49564 4.57631C5.396 5.50021 5.46298 6.65817 5.66504 7.9095C6.01695 10.0888 6.7912 12.6268 7.90219 14.8354C6.87534 15.0803 5.86373 15.8068 5.04195 17.0514C4.63236 17.6718 3.71311 17.6442 3.34142 17.0005C0.888231 12.7514 1.90772 7.45037 5.51929 4.38379Z\" fill=\"currentColor\"/><path d=\"M8.64844 2.57748C8.70769 2.60155 8.76723 2.62684 8.82699 2.65325C9.67692 3.02892 10.6463 3.6659 11.6289 4.46656C13.3403 5.86095 15.1512 7.8005 16.5084 9.86696C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792C20.5997 8.45339 21.0354 7.64351 20.6637 6.99972C18.2105 2.75067 13.11 0.983059 8.64844 2.57748Z\" fill=\"currentColor\"/><path d=\"M13.0699 12.7686C12.8914 12.8579 12.7304 12.9441 12.5923 13.0238C12.4543 13.1035 12.2993 13.1997 12.1328 13.3095C12.2009 13.3742 12.2612 13.4498 12.3108 13.5358L16.3186 20.4775C16.4566 20.7166 16.7624 20.7985 17.0016 20.6605C17.2407 20.5224 17.3227 20.2166 17.1846 19.9775L13.1768 13.0358C13.1272 12.9498 13.0918 12.8598 13.0699 12.7686Z\" fill=\"currentColor\"/>",
18752
18752
  "iconName": "parasol,umbrella,vacation",
18753
18753
  "variant": {
18754
18754
  "join": "round",
@@ -19502,6 +19502,20 @@
19502
19502
  "packageName": "round-filled-radius-2-stroke-1",
19503
19503
  "componentName": "IconPiggyBank"
19504
19504
  },
19505
+ {
19506
+ "category": "Things",
19507
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.8296 4.60059C17.1317 4.36838 17.9392 5.47496 18.0552 6.36914C18.2913 8.18863 19.2773 9.41863 20.9263 9.94043C21.5242 10.1297 22.0005 10.6882 22.0005 11.3906V14.1094C22.0005 14.81 21.5256 15.3729 20.9205 15.5605C19.294 16.0643 18.1585 17.1775 17.7134 18.584C17.3494 19.7346 16.3215 20.9997 14.7574 21H14.2916C13.3892 20.9999 12.5878 20.4224 12.3023 19.5664C12.2891 19.527 12.2511 19.5001 12.2095 19.5H9.79156C9.74996 19.5001 9.71312 19.527 9.69976 19.5664C9.41405 20.4223 8.61188 20.9999 7.70953 21H6.89898C6.05859 21 5.19294 20.6474 4.63433 19.9092C2.77755 17.4543 1.76667 14.2492 2.09136 11.5654C2.25562 10.2086 2.77084 8.92421 3.76422 7.97656C4.76841 7.01885 6.16113 6.5001 7.88531 6.5H11.7994C12.0208 6.4999 12.2475 6.42298 12.4419 6.27344C13.4225 5.51882 14.4513 4.84666 15.8296 4.60059ZM15.2505 10C14.5603 10.0001 14.0007 10.5598 14.0005 11.25C14.0007 11.9402 14.5603 12.4999 15.2505 12.5C15.9407 12.4999 16.5004 11.9402 16.5005 11.25C16.5004 10.5598 15.9407 10.0001 15.2505 10Z\" fill=\"currentColor\"/><path d=\"M11.0005 2C12.4602 2.00009 13.7367 2.78242 14.4351 3.9502C13.4113 4.33077 12.5717 4.90696 11.8052 5.5H7.88531C7.59293 5.50001 7.30682 5.51416 7.02789 5.54102C7.25564 3.54813 8.94668 2 11.0005 2Z\" fill=\"currentColor\"/>",
19508
+ "iconName": "piggy-bank-coin, money, cashback, savings",
19509
+ "variant": {
19510
+ "join": "round",
19511
+ "filled": "on",
19512
+ "radius": "2",
19513
+ "stroke": "1"
19514
+ },
19515
+ "createdAt": "2026-05-22T11:02:18.919122+00:00",
19516
+ "packageName": "round-filled-radius-2-stroke-1",
19517
+ "componentName": "IconPiggyBankCoin"
19518
+ },
19505
19519
  {
19506
19520
  "category": "Things",
19507
19521
  "svg": "<path d=\"M4.61111 3C3.16595 3 2 4.17835 2 5.625C2 5.868 2.03298 6.10407 2.09498 6.32856C2.14073 6.4942 2.19306 6.66308 2.243 6.82424L2.28113 6.9476C2.34325 7.14961 2.39976 7.34098 2.44349 7.52855C2.53148 7.90595 2.55782 8.22941 2.48708 8.52221C2.2179 9.63635 2 10.8797 2 12C2 13.1203 2.2179 14.3637 2.48708 15.4778C2.55782 15.7706 2.53148 16.0941 2.44349 16.4714C2.39976 16.659 2.34325 16.8504 2.28113 17.0524L2.243 17.1758C2.19306 17.3369 2.14073 17.5058 2.09498 17.6714C2.03298 17.8959 2 18.132 2 18.375C2 19.8217 3.16595 21 4.61111 21C4.876 21 5.13253 20.9602 5.37463 20.8859C5.54984 20.8321 5.72772 20.7705 5.89684 20.7119L6.00282 20.6753C6.20764 20.6047 6.40118 20.5402 6.59125 20.4892C6.97371 20.3866 7.30009 20.3509 7.59703 20.4182C8.97745 20.7312 10.5735 21 12 21C13.4265 21 15.0226 20.7312 16.403 20.4182C16.6999 20.3509 17.0263 20.3866 17.4088 20.4892C17.5989 20.5402 17.7924 20.6047 17.9972 20.6753L18.1031 20.7119C18.2722 20.7704 18.4502 20.8321 18.6254 20.8859C18.8675 20.9602 19.1241 21 19.3889 21C20.8341 21 22.0001 19.8217 22.0001 18.375C22.0001 18.132 21.9671 17.8959 21.9051 17.6714C21.8593 17.5058 21.807 17.337 21.7571 17.1758L21.7189 17.0524C21.6568 16.8504 21.6003 16.659 21.5565 16.4714C21.4685 16.094 21.4422 15.7705 21.5129 15.4777C21.7821 14.3636 22 13.1203 22 12C22 10.8797 21.7821 9.63634 21.5129 8.52221C21.4422 8.22941 21.4685 7.90595 21.5565 7.52855C21.6002 7.34098 21.6568 7.14961 21.7189 6.9476L21.757 6.82428C21.8069 6.66312 21.8593 6.4942 21.905 6.32856C21.967 6.10407 22 5.868 22 5.625C22 4.17835 20.8341 3 19.3889 3C19.1223 3 18.8641 3.04034 18.6206 3.11562C18.4451 3.16987 18.2669 3.23197 18.0976 3.29102L17.9916 3.32787C17.7866 3.39898 17.5928 3.46398 17.4026 3.51542C17.0197 3.61893 16.6931 3.65505 16.396 3.58762C15.0066 3.27231 13.405 3 12 3C10.595 3 8.99338 3.27231 7.60403 3.58762C7.30689 3.65505 6.9803 3.61893 6.59742 3.51542C6.40716 3.46398 6.21341 3.39898 6.00835 3.32787L5.90247 3.29103C5.73309 3.23198 5.55491 3.16987 5.37942 3.11562C5.13592 3.04034 4.87775 3 4.61111 3Z\" fill=\"currentColor\"/>",
@@ -26306,6 +26320,20 @@
26306
26320
  "packageName": "round-filled-radius-2-stroke-1",
26307
26321
  "componentName": "IconUnarchiv"
26308
26322
  },
26323
+ {
26324
+ "category": "Interface General",
26325
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.8678 16.4067 5.29297 17.999L9.39648 13.8965C9.59175 13.7012 9.90825 13.7012 10.1035 13.8965C10.2988 14.0917 10.2988 14.4083 10.1035 14.6035L6 18.7061C7.5924 20.1318 9.69439 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69439 20.1318 7.5924 18.7061 6L14.6035 10.1035C14.4083 10.2988 14.0917 10.2988 13.8965 10.1035C13.7012 9.90825 13.7012 9.59175 13.8965 9.39648L17.999 5.29297C16.4067 3.8678 14.3051 3 12 3Z\" fill=\"currentColor\"/>",
26326
+ "iconName": "unblock, unban",
26327
+ "variant": {
26328
+ "join": "round",
26329
+ "filled": "on",
26330
+ "radius": "2",
26331
+ "stroke": "1"
26332
+ },
26333
+ "createdAt": "2026-05-22T08:02:26.577334+00:00",
26334
+ "packageName": "round-filled-radius-2-stroke-1",
26335
+ "componentName": "IconUnblock"
26336
+ },
26309
26337
  {
26310
26338
  "category": "Photography & Video",
26311
26339
  "svg": "<path d=\"M9.75 6.25C9.75 6.80228 9.30228 7.25 8.75 7.25C8.19772 7.25 7.75 6.80228 7.75 6.25C7.75 5.69772 8.19772 5.25 8.75 5.25C9.30228 5.25 9.75 5.69772 9.75 6.25Z\" fill=\"currentColor\"/><path d=\"M6.25 6.25C6.25 6.80228 5.80228 7.25 5.25 7.25C4.69772 7.25 4.25 6.80228 4.25 6.25C4.25 5.69772 4.69772 5.25 5.25 5.25C5.80228 5.25 6.25 5.69772 6.25 6.25Z\" fill=\"currentColor\"/><path d=\"M9.75 17.75C9.75 18.3023 9.30228 18.75 8.75 18.75C8.19772 18.75 7.75 18.3023 7.75 17.75C7.75 17.1977 8.19772 16.75 8.75 16.75C9.30228 16.75 9.75 17.1977 9.75 17.75Z\" fill=\"currentColor\"/><path d=\"M9.5 3.25C9.5 3.66421 9.16421 4 8.75 4C8.33579 4 8 3.66421 8 3.25C8 2.83579 8.33579 2.5 8.75 2.5C9.16421 2.5 9.5 2.83579 9.5 3.25Z\" fill=\"currentColor\"/><path d=\"M3.25 10C3.25 10.4142 2.91421 10.75 2.5 10.75C2.08579 10.75 1.75 10.4142 1.75 10C1.75 9.58579 2.08579 9.25 2.5 9.25C2.91421 9.25 3.25 9.58579 3.25 10Z\" fill=\"currentColor\"/><path d=\"M3.25 14C3.25 14.4142 2.91421 14.75 2.5 14.75C2.08579 14.75 1.75 14.4142 1.75 14C1.75 13.5858 2.08579 13.25 2.5 13.25C2.91421 13.25 3.25 13.5858 3.25 14Z\" fill=\"currentColor\"/><path d=\"M9.5 20.75C9.5 21.1642 9.16421 21.5 8.75 21.5C8.33579 21.5 8 21.1642 8 20.75C8 20.3358 8.33579 20 8.75 20C9.16421 20 9.5 20.3358 9.5 20.75Z\" fill=\"currentColor\"/><path d=\"M10.25 10C10.25 10.8284 9.57843 11.5 8.75 11.5C7.92157 11.5 7.25 10.8284 7.25 10C7.25 9.17157 7.92157 8.5 8.75 8.5C9.57843 8.5 10.25 9.17157 10.25 10Z\" fill=\"currentColor\"/><path d=\"M10.25 14C10.25 14.8284 9.57843 15.5 8.75 15.5C7.92157 15.5 7.25 14.8284 7.25 14C7.25 13.1716 7.92157 12.5 8.75 12.5C9.57843 12.5 10.25 13.1716 10.25 14Z\" fill=\"currentColor\"/><path d=\"M6.25 10C6.25 10.5523 5.80228 11 5.25 11C4.69772 11 4.25 10.5523 4.25 10C4.25 9.44772 4.69772 9 5.25 9C5.80228 9 6.25 9.44772 6.25 10Z\" fill=\"currentColor\"/><path d=\"M6.25 14C6.25 14.5523 5.80228 15 5.25 15C4.69772 15 4.25 14.5523 4.25 14C4.25 13.4477 4.69772 13 5.25 13C5.80228 13 6.25 13.4477 6.25 14Z\" fill=\"currentColor\"/><path d=\"M6.25 17.75C6.25 18.3023 5.80228 18.75 5.25 18.75C4.69772 18.75 4.25 18.3023 4.25 17.75C4.25 17.1977 4.69772 16.75 5.25 16.75C5.80228 16.75 6.25 17.1977 6.25 17.75Z\" fill=\"currentColor\"/><path d=\"M12 2C11.7239 2 11.5 2.22386 11.5 2.5V21.5C11.5 21.7761 11.7239 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -1392,6 +1392,7 @@ export type CentralIconName =
1392
1392
  | "IconPieChart2"
1393
1393
  | "IconPieChart3"
1394
1394
  | "IconPiggyBank"
1395
+ | "IconPiggyBankCoin"
1395
1396
  | "IconPillow"
1396
1397
  | "IconPillowZz"
1397
1398
  | "IconPilone"
@@ -1878,6 +1879,7 @@ export type CentralIconName =
1878
1879
  | "IconUfo"
1879
1880
  | "IconUmbrellaSecurity"
1880
1881
  | "IconUnarchiv"
1882
+ | "IconUnblock"
1881
1883
  | "IconUnblur"
1882
1884
  | "IconUnderline"
1883
1885
  | "IconUnicorn"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-2-stroke-1",
3
- "version": "1.1.244",
3
+ "version": "1.1.246",
4
4
  "style": "round-filled-radius-2-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-2-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": 2012,
14
+ "totalIcons": 2014,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 88,
@@ -970,16 +970,20 @@
970
970
  ]
971
971
  },
972
972
  "Health & Medical": {
973
- "count": 4,
973
+ "count": 8,
974
974
  "icons": [
975
+ "IconInjection",
975
976
  "IconMask1",
976
977
  "IconMedicalCross",
977
978
  "IconMedicalCrossCircle",
978
- "IconMedicalCrossSquare"
979
+ "IconMedicalCrossSquare",
980
+ "IconMedicinePill",
981
+ "IconMedicinePill2",
982
+ "IconMedicineTablett"
979
983
  ]
980
984
  },
981
985
  "Interface General": {
982
- "count": 199,
986
+ "count": 200,
983
987
  "icons": [
984
988
  "IconAnchor1",
985
989
  "IconAnchor2",
@@ -1171,6 +1175,7 @@
1171
1175
  "IconTrashRounded",
1172
1176
  "IconTrial",
1173
1177
  "IconUnarchiv",
1178
+ "IconUnblock",
1174
1179
  "IconUnpin",
1175
1180
  "IconUnpin2",
1176
1181
  "IconUntrash",
@@ -1865,7 +1870,7 @@
1865
1870
  ]
1866
1871
  },
1867
1872
  "Things": {
1868
- "count": 141,
1873
+ "count": 138,
1869
1874
  "icons": [
1870
1875
  "IconAnvil",
1871
1876
  "IconApps",
@@ -1927,7 +1932,6 @@
1927
1932
  "IconGraduateCap2",
1928
1933
  "IconHermesHelmet",
1929
1934
  "IconInfinity",
1930
- "IconInjection",
1931
1935
  "IconJudgeGavel",
1932
1936
  "IconLab",
1933
1937
  "IconLifeVest",
@@ -1936,9 +1940,6 @@
1936
1940
  "IconMagicLamp",
1937
1941
  "IconMakeItPop",
1938
1942
  "IconMedal",
1939
- "IconMedicinePill",
1940
- "IconMedicinePill2",
1941
- "IconMedicineTablett",
1942
1943
  "IconMouth",
1943
1944
  "IconNailedIt",
1944
1945
  "IconOrganisation",
@@ -1948,6 +1949,7 @@
1948
1949
  "IconPeace",
1949
1950
  "IconPets",
1950
1951
  "IconPiggyBank",
1952
+ "IconPiggyBankCoin",
1951
1953
  "IconPillow",
1952
1954
  "IconPillowZz",
1953
1955
  "IconPilone",
@@ -3611,6 +3613,7 @@
3611
3613
  "IconPieChart2": "pie-chart-2, graph, chart, statistics",
3612
3614
  "IconPieChart3": "pie-chart-3, graph, statistics",
3613
3615
  "IconPiggyBank": "piggy-bank, save-money",
3616
+ "IconPiggyBankCoin": "piggy-bank-coin, money, cashback, savings",
3614
3617
  "IconPillow": "pillow, sleep, snooze",
3615
3618
  "IconPillowZz": "pillow-zz, sleep, snooze",
3616
3619
  "IconPilone": "pilone, maintenance",
@@ -4097,6 +4100,7 @@
4097
4100
  "IconUfo": "ufo, beam",
4098
4101
  "IconUmbrellaSecurity": "umbrella-security",
4099
4102
  "IconUnarchiv": "unarchiv, unbox",
4103
+ "IconUnblock": "unblock, unban",
4100
4104
  "IconUnblur": "unblur",
4101
4105
  "IconUnderline": "underline",
4102
4106
  "IconUnicorn": "unicorn, startup, success",
package/index.d.ts CHANGED
@@ -1391,6 +1391,7 @@ export { IconPieChart1, default as IconPieChart1Default, } from "./IconPieChart1
1391
1391
  export { IconPieChart2, default as IconPieChart2Default, } from "./IconPieChart2";
1392
1392
  export { IconPieChart3, default as IconPieChart3Default, } from "./IconPieChart3";
1393
1393
  export { IconPiggyBank, default as IconPiggyBankDefault, } from "./IconPiggyBank";
1394
+ export { IconPiggyBankCoin, default as IconPiggyBankCoinDefault, } from "./IconPiggyBankCoin";
1394
1395
  export { IconPillow, default as IconPillowDefault } from "./IconPillow";
1395
1396
  export { IconPillowZz, default as IconPillowZzDefault } from "./IconPillowZz";
1396
1397
  export { IconPilone, default as IconPiloneDefault } from "./IconPilone";
@@ -1877,6 +1878,7 @@ export { IconTypescript, default as IconTypescriptDefault, } from "./IconTypescr
1877
1878
  export { IconUfo, default as IconUfoDefault } from "./IconUfo";
1878
1879
  export { IconUmbrellaSecurity, default as IconUmbrellaSecurityDefault, } from "./IconUmbrellaSecurity";
1879
1880
  export { IconUnarchiv, default as IconUnarchivDefault } from "./IconUnarchiv";
1881
+ export { IconUnblock, default as IconUnblockDefault } from "./IconUnblock";
1880
1882
  export { IconUnblur, default as IconUnblurDefault } from "./IconUnblur";
1881
1883
  export { IconUnderline, default as IconUnderlineDefault, } from "./IconUnderline";
1882
1884
  export { IconUnicorn, default as IconUnicornDefault } from "./IconUnicorn";