@central-icons-react-native/round-filled-radius-3-stroke-2 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.4013 2 16.6049 2.84637 18.3287 4.25705L4.25705 18.3287C2.84637 16.6049 2 14.4013 2 12Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M5.67127 19.7429C7.39514 21.1536 9.59873 22 12 22C17.5228 22 22 17.5228 22 12C22 9.59873 21.1536 7.39514 19.7429 5.67127L5.67127 19.7429Z",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.7611 2 17.2627 3.12016 19.0713 4.92871C20.8798 6.73726 22 9.23885 22 12C22 17.5228 17.5228 22 12 22C9.23885 22 6.73726 20.8798 4.92871 19.0713C3.12016 17.2627 2 14.7611 2 12C2 6.47715 6.47715 2 12 2ZM7.09473 18.3184C8.44997 19.3721 10.1507 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1507 19.3721 8.44997 18.3184 7.09473L7.09473 18.3184ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8488 4.6274 15.5492 5.68066 16.9043L16.9043 5.68066C15.5492 4.6274 13.8488 4 12 4Z",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.4013 2 16.6049 2.84637 18.3287 4.25705L4.25705 18.3287C2.84637 16.6049 2 14.4013 2 12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.67127 19.7429C7.39514 21.1536 9.59873 22 12 22C17.5228 22 22 17.5228 22 12C22 9.59873 21.1536 7.39514 19.7429 5.67127L5.67127 19.7429Z\"\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,2HACF,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.7611 2 17.2627 3.12016 19.0713 4.92871C20.8798 6.73726 22 9.23885 22 12C22 17.5228 17.5228 22 12 22C9.23885 22 6.73726 20.8798 4.92871 19.0713C3.12016 17.2627 2 14.7611 2 12C2 6.47715 6.47715 2 12 2ZM7.09473 18.3184C8.44997 19.3721 10.1507 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1507 19.3721 8.44997 18.3184 7.09473L7.09473 18.3184ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8488 4.6274 15.5492 5.68066 16.9043L16.9043 5.68066C15.5492 4.6274 13.8488 4 12 4Z\"\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,kdACF,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.4013 2 16.6049 2.84637 18.3287 4.25705L4.25705 18.3287C2.84637 16.6049 2 14.4013 2 12Z",fill:"currentColor"}),n.createElement(e,{d:"M5.67127 19.7429C7.39514 21.1536 9.59873 22 12 22C17.5228 22 22 17.5228 22 12C22 9.59873 21.1536 7.39514 19.7429 5.67127L5.67127 19.7429Z",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.7611 2 17.2627 3.12016 19.0713 4.92871C20.8798 6.73726 22 9.23885 22 12C22 17.5228 17.5228 22 12 22C9.23885 22 6.73726 20.8798 4.92871 19.0713C3.12016 17.2627 2 14.7611 2 12C2 6.47715 6.47715 2 12 2ZM7.09473 18.3184C8.44997 19.3721 10.1507 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1507 19.3721 8.44997 18.3184 7.09473L7.09473 18.3184ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8488 4.6274 15.5492 5.68066 16.9043L16.9043 5.68066C15.5492 4.6274 13.8488 4 12 4Z",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.4013 2 16.6049 2.84637 18.3287 4.25705L4.25705 18.3287C2.84637 16.6049 2 14.4013 2 12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.67127 19.7429C7.39514 21.1536 9.59873 22 12 22C17.5228 22 22 17.5228 22 12C22 9.59873 21.1536 7.39514 19.7429 5.67127L5.67127 19.7429Z\"\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,2HACF,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.7611 2 17.2627 3.12016 19.0713 4.92871C20.8798 6.73726 22 9.23885 22 12C22 17.5228 17.5228 22 12 22C9.23885 22 6.73726 20.8798 4.92871 19.0713C3.12016 17.2627 2 14.7611 2 12C2 6.47715 6.47715 2 12 2ZM7.09473 18.3184C8.44997 19.3721 10.1507 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1507 19.3721 8.44997 18.3184 7.09473L7.09473 18.3184ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8488 4.6274 15.5492 5.68066 16.9043L16.9043 5.68066C15.5492 4.6274 13.8488 4 12 4Z\"\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,kdACF,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 C=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!H.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(l=B(o,t))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(C({},"__esModule",{value:!0}),r);var V={};P(V,{IconDevices2:()=>i,default:()=>v});module.exports=g(V);var n=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...e})=>s.default.createElement(f.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 p=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(p.Path,{d:"M21 9C22.1046 9 23 9.89543 23 11V19C23 20.1046 22.1046 21 21 21H18C16.8954 21 16 20.1046 16 19V11C16 9.89543 16.8954 9 18 9H21Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M15 20H3.25C2.00736 20 1 18.9926 1 17.75C1 17.3358 1.33579 17 1.75 17H15V20Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M18 3C19.6569 3 21 4.34315 21 6V8H18C16.3431 8 15 9.34315 15 11V16H3V6C3 4.34315 4.34315 3 6 3H18Z",fill:"currentColor"})),v=i;0&&(module.exports={IconDevices2});
1
+ "use strict";var u=Object.create;var C=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!H.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(l=B(o,t))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(C({},"__esModule",{value:!0}),r);var V={};P(V,{IconDevices2:()=>i,default:()=>v});module.exports=g(V);var n=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...e})=>s.default.createElement(f.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 p=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(p.Path,{d:"M20 9C21.6569 9 23 10.3431 23 12V18C23 19.6569 21.6569 21 20 21H18C16.3431 21 15 19.6569 15 18V12C15 10.3431 16.3431 9 18 9H20Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M13 18C13 18.9111 13.2452 19.7644 13.6709 20.5H4.5C2.567 20.5 1 18.933 1 17C1 16.4477 1.44772 16 2 16H13V18Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M18 3C19.6569 3 21 4.34315 21 6V7.09961C20.6769 7.03403 20.3424 7 20 7H18C15.2386 7 13 9.23858 13 12V14H3V6C3 4.34315 4.34315 3 6 3H18Z",fill:"currentColor"})),v=i;0&&(module.exports={IconDevices2});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconDevices2/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 IconDevices2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 9C22.1046 9 23 9.89543 23 11V19C23 20.1046 22.1046 21 21 21H18C16.8954 21 16 20.1046 16 19V11C16 9.89543 16.8954 9 18 9H21Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15 20H3.25C2.00736 20 1 18.9926 1 17.75C1 17.3358 1.33579 17 1.75 17H15V20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 3C19.6569 3 21 4.34315 21 6V8H18C16.3431 8 15 9.34315 15 11V16H3V6C3 4.34315 4.34315 3 6 3H18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDevices2;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+EACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconDevices2_exports","__export","IconDevices2","IconDevices2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDevices2","props","React","CentralIconBase","IconDevices2_default"]}
1
+ {"version":3,"sources":["../src/IconDevices2/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 IconDevices2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 9C21.6569 9 23 10.3431 23 12V18C23 19.6569 21.6569 21 20 21H18C16.3431 21 15 19.6569 15 18V12C15 10.3431 16.3431 9 18 9H20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13 18C13 18.9111 13.2452 19.7644 13.6709 20.5H4.5C2.567 20.5 1 18.933 1 17C1 16.4477 1.44772 16 2 16H13V18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 3C19.6569 3 21 4.34315 21 6V7.09961C20.6769 7.03403 20.3424 7 20 7H18C15.2386 7 13 9.23858 13 12V14H3V6C3 4.34315 4.34315 3 6 3H18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDevices2;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+GACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0IACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconDevices2_exports","__export","IconDevices2","IconDevices2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDevices2","props","React","CentralIconBase","IconDevices2_default"]}
@@ -1,2 +1,2 @@
1
- import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:e,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M21 9C22.1046 9 23 9.89543 23 11V19C23 20.1046 22.1046 21 21 21H18C16.8954 21 16 20.1046 16 19V11C16 9.89543 16.8954 9 18 9H21Z",fill:"currentColor"}),o.createElement(t,{d:"M15 20H3.25C2.00736 20 1 18.9926 1 17.75C1 17.3358 1.33579 17 1.75 17H15V20Z",fill:"currentColor"}),o.createElement(t,{d:"M18 3C19.6569 3 21 4.34315 21 6V8H18C16.3431 8 15 9.34315 15 11V16H3V6C3 4.34315 4.34315 3 6 3H18Z",fill:"currentColor"})),H=a;export{a as IconDevices2,H as default};
1
+ import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:e,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M20 9C21.6569 9 23 10.3431 23 12V18C23 19.6569 21.6569 21 20 21H18C16.3431 21 15 19.6569 15 18V12C15 10.3431 16.3431 9 18 9H20Z",fill:"currentColor"}),o.createElement(t,{d:"M13 18C13 18.9111 13.2452 19.7644 13.6709 20.5H4.5C2.567 20.5 1 18.933 1 17C1 16.4477 1.44772 16 2 16H13V18Z",fill:"currentColor"}),o.createElement(t,{d:"M18 3C19.6569 3 21 4.34315 21 6V7.09961C20.6769 7.03403 20.3424 7 20 7H18C15.2386 7 13 9.23858 13 12V14H3V6C3 4.34315 4.34315 3 6 3H18Z",fill:"currentColor"})),H=a;export{a as IconDevices2,H as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconDevices2/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 IconDevices2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 9C22.1046 9 23 9.89543 23 11V19C23 20.1046 22.1046 21 21 21H18C16.8954 21 16 20.1046 16 19V11C16 9.89543 16.8954 9 18 9H21Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15 20H3.25C2.00736 20 1 18.9926 1 17.75C1 17.3358 1.33579 17 1.75 17H15V20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 3C19.6569 3 21 4.34315 21 6V8H18C16.3431 8 15 9.34315 15 11V16H3V6C3 4.34315 4.34315 3 6 3H18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDevices2;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+EACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qGACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDevices2","props","React","CentralIconBase","IconDevices2_default"]}
1
+ {"version":3,"sources":["../src/IconDevices2/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 IconDevices2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 9C21.6569 9 23 10.3431 23 12V18C23 19.6569 21.6569 21 20 21H18C16.3431 21 15 19.6569 15 18V12C15 10.3431 16.3431 9 18 9H20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13 18C13 18.9111 13.2452 19.7644 13.6709 20.5H4.5C2.567 20.5 1 18.933 1 17C1 16.4477 1.44772 16 2 16H13V18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 3C19.6569 3 21 4.34315 21 6V7.09961C20.6769 7.03403 20.3424 7 20 7H18C15.2386 7 13 9.23858 13 12V14H3V6C3 4.34315 4.34315 3 6 3H18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDevices2;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+GACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0IACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDevices2","props","React","CentralIconBase","IconDevices2_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,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0})},a=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==C&&l(r,t,{get:()=>o[t],enumerable:!(p=B(o,t))||p.enumerable});return r};var f=(r,o,C)=>(C=r!=null?u(P(r)):{},a(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,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:o=24,...C})=>m.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 e=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(e.Path,{d:"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M4.76941 5.08691C1.77398 8.21571 1.0626 13.0606 3.33751 17.0009C3.7092 17.6447 4.62845 17.6722 5.03805 17.0519C5.73704 15.9932 6.57339 15.3094 7.43963 14.978C6.31937 12.663 5.50497 10.0893 5.08725 7.8683C4.90063 6.87609 4.78812 5.92805 4.76941 5.08691Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z",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,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0})},a=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==C&&l(r,t,{get:()=>o[t],enumerable:!(p=B(o,t))||p.enumerable});return r};var f=(r,o,C)=>(C=r!=null?u(P(r)):{},a(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,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:o=24,...C})=>m.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 e=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(e.Path,{d:"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M4.77331 5.08691C1.77789 8.21571 1.06651 13.0606 3.34142 17.0009C3.71311 17.6447 4.63236 17.6722 5.04195 17.0519C5.74095 15.9932 6.5773 15.3094 7.44354 14.978C6.32328 12.663 5.50888 10.0893 5.09115 7.8683C4.90454 6.87609 4.79202 5.92805 4.77331 5.08691Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z",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.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.76941 5.08691C1.77398 8.21571 1.0626 13.0606 3.33751 17.0009C3.7092 17.6447 4.62845 17.6722 5.03805 17.0519C5.73704 15.9932 6.57339 15.3094 7.43963 14.978C6.31937 12.663 5.50497 10.0893 5.08725 7.8683C4.90063 6.87609 4.78812 5.92805 4.76941 5.08691Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\"\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,klBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+PACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2PACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kPACF,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.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.77331 5.08691C1.77789 8.21571 1.06651 13.0606 3.34142 17.0009C3.71311 17.6447 4.63236 17.6722 5.04195 17.0519C5.74095 15.9932 6.5773 15.3094 7.44354 14.978C6.32328 12.663 5.50888 10.0893 5.09115 7.8683C4.90454 6.87609 4.79202 5.92805 4.77331 5.08691Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\"\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,klBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gQACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2PACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kPACF,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 o 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 C}from"react-native-svg";var a=n=>o.createElement(t,{...n},o.createElement(C,{d:"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z",fill:"currentColor"}),o.createElement(C,{d:"M4.76941 5.08691C1.77398 8.21571 1.0626 13.0606 3.33751 17.0009C3.7092 17.6447 4.62845 17.6722 5.03805 17.0519C5.73704 15.9932 6.57339 15.3094 7.43963 14.978C6.31937 12.663 5.50497 10.0893 5.08725 7.8683C4.90063 6.87609 4.78812 5.92805 4.76941 5.08691Z",fill:"currentColor"}),o.createElement(C,{d:"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z",fill:"currentColor"}),o.createElement(C,{d:"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z",fill:"currentColor"})),x=a;export{a as IconParasol,x as default};
1
+ import o 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 C}from"react-native-svg";var a=n=>o.createElement(t,{...n},o.createElement(C,{d:"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z",fill:"currentColor"}),o.createElement(C,{d:"M4.77331 5.08691C1.77789 8.21571 1.06651 13.0606 3.34142 17.0009C3.71311 17.6447 4.63236 17.6722 5.04195 17.0519C5.74095 15.9932 6.5773 15.3094 7.44354 14.978C6.32328 12.663 5.50888 10.0893 5.09115 7.8683C4.90454 6.87609 4.79202 5.92805 4.77331 5.08691Z",fill:"currentColor"}),o.createElement(C,{d:"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z",fill:"currentColor"}),o.createElement(C,{d:"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z",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.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.76941 5.08691C1.77398 8.21571 1.0626 13.0606 3.33751 17.0009C3.7092 17.6447 4.62845 17.6722 5.03805 17.0519C5.73704 15.9932 6.57339 15.3094 7.43963 14.978C6.31937 12.663 5.50497 10.0893 5.08725 7.8683C4.90063 6.87609 4.78812 5.92805 4.76941 5.08691Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\"\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,klBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+PACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2PACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kPACF,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.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.77331 5.08691C1.77789 8.21571 1.06651 13.0606 3.34142 17.0009C3.71311 17.6447 4.63236 17.6722 5.04195 17.0519C5.74095 15.9932 6.5773 15.3094 7.44354 14.978C6.32328 12.663 5.50888 10.0893 5.09115 7.8683C4.90454 6.87609 4.79202 5.92805 4.77331 5.08691Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\"\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,klBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gQACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2PACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kPACF,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.79058C9.74898 19.5001 9.71215 19.527 9.69879 19.5664C9.41307 20.4223 8.6109 20.9999 7.70855 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.79058C9.74898 19.5001 9.71215 19.527 9.69879 19.5664C9.41307 20.4223 8.6109 20.9999 7.70855 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,69BACF,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.79058C9.74898 19.5001 9.71215 19.527 9.69879 19.5664C9.41307 20.4223 8.6109 20.9999 7.70855 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.79058C9.74898 19.5001 9.71215 19.527 9.69879 19.5664C9.41307 20.4223 8.6109 20.9999 7.70855 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,69BACF,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 4C7.58172 4 4 7.58172 4 12C4 13.8484 4.62892 15.5488 5.68164 16.9033L8.79297 13.793C9.18349 13.4024 9.81651 13.4024 10.207 13.793C10.5976 14.1835 10.5976 14.8165 10.207 15.207L7.0957 18.3174C8.45045 19.3706 10.1511 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1511 19.3706 8.45045 18.3174 7.0957L15.207 10.207C14.8165 10.5976 14.1835 10.5976 13.793 10.207C13.4024 9.81651 13.4024 9.18349 13.793 8.79297L16.9033 5.68164C15.5488 4.62892 13.8484 4 12 4Z",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 4C7.58172 4 4 7.58172 4 12C4 13.8484 4.62892 15.5488 5.68164 16.9033L8.79297 13.793C9.18349 13.4024 9.81651 13.4024 10.207 13.793C10.5976 14.1835 10.5976 14.8165 10.207 15.207L7.0957 18.3174C8.45045 19.3706 10.1511 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1511 19.3706 8.45045 18.3174 7.0957L15.207 10.207C14.8165 10.5976 14.1835 10.5976 13.793 10.207C13.4024 9.81651 13.4024 9.18349 13.793 8.79297L16.9033 5.68164C15.5488 4.62892 13.8484 4 12 4Z\"\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,ujBACF,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 4C7.58172 4 4 7.58172 4 12C4 13.8484 4.62892 15.5488 5.68164 16.9033L8.79297 13.793C9.18349 13.4024 9.81651 13.4024 10.207 13.793C10.5976 14.1835 10.5976 14.8165 10.207 15.207L7.0957 18.3174C8.45045 19.3706 10.1511 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1511 19.3706 8.45045 18.3174 7.0957L15.207 10.207C14.8165 10.5976 14.1835 10.5976 13.793 10.207C13.4024 9.81651 13.4024 9.18349 13.793 8.79297L16.9033 5.68164C15.5488 4.62892 13.8484 4 12 4Z",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 4C7.58172 4 4 7.58172 4 12C4 13.8484 4.62892 15.5488 5.68164 16.9033L8.79297 13.793C9.18349 13.4024 9.81651 13.4024 10.207 13.793C10.5976 14.1835 10.5976 14.8165 10.207 15.207L7.0957 18.3174C8.45045 19.3706 10.1511 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1511 19.3706 8.45045 18.3174 7.0957L15.207 10.207C14.8165 10.5976 14.1835 10.5976 13.793 10.207C13.4024 9.81651 13.4024 9.18349 13.793 8.79297L16.9033 5.68164C15.5488 4.62892 13.8484 4 12 4Z\"\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,ujBACF,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.4013 2 16.6049 2.84637 18.3287 4.25705L4.25705 18.3287C2.84637 16.6049 2 14.4013 2 12Z\" fill=\"currentColor\"/><path d=\"M5.67127 19.7429C7.39514 21.1536 9.59873 22 12 22C17.5228 22 22 17.5228 22 12C22 9.59873 21.1536 7.39514 19.7429 5.67127L5.67127 19.7429Z\" fill=\"currentColor\"/>",
6879
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C14.7611 2 17.2627 3.12016 19.0713 4.92871C20.8798 6.73726 22 9.23885 22 12C22 17.5228 17.5228 22 12 22C9.23885 22 6.73726 20.8798 4.92871 19.0713C3.12016 17.2627 2 14.7611 2 12C2 6.47715 6.47715 2 12 2ZM7.09473 18.3184C8.44997 19.3721 10.1507 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1507 19.3721 8.44997 18.3184 7.09473L7.09473 18.3184ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8488 4.6274 15.5492 5.68066 16.9043L16.9043 5.68066C15.5492 4.6274 13.8488 4 12 4Z\" fill=\"currentColor\"/>",
6880
6880
  "iconName": "circle-ban-sign, circle, block, ads",
6881
6881
  "variant": {
6882
6882
  "join": "round",
@@ -9256,7 +9256,7 @@
9256
9256
  },
9257
9257
  {
9258
9258
  "category": "Devices & Signals",
9259
- "svg": "<path d=\"M21 9C22.1046 9 23 9.89543 23 11V19C23 20.1046 22.1046 21 21 21H18C16.8954 21 16 20.1046 16 19V11C16 9.89543 16.8954 9 18 9H21Z\" fill=\"currentColor\"/><path d=\"M15 20H3.25C2.00736 20 1 18.9926 1 17.75C1 17.3358 1.33579 17 1.75 17H15V20Z\" fill=\"currentColor\"/><path d=\"M18 3C19.6569 3 21 4.34315 21 6V8H18C16.3431 8 15 9.34315 15 11V16H3V6C3 4.34315 4.34315 3 6 3H18Z\" fill=\"currentColor\"/>",
9259
+ "svg": "<path d=\"M20 9C21.6569 9 23 10.3431 23 12V18C23 19.6569 21.6569 21 20 21H18C16.3431 21 15 19.6569 15 18V12C15 10.3431 16.3431 9 18 9H20Z\" fill=\"currentColor\"/><path d=\"M13 18C13 18.9111 13.2452 19.7644 13.6709 20.5H4.5C2.567 20.5 1 18.933 1 17C1 16.4477 1.44772 16 2 16H13V18Z\" fill=\"currentColor\"/><path d=\"M18 3C19.6569 3 21 4.34315 21 6V7.09961C20.6769 7.03403 20.3424 7 20 7H18C15.2386 7 13 9.23858 13 12V14H3V6C3 4.34315 4.34315 3 6 3H18Z\" fill=\"currentColor\"/>",
9260
9260
  "iconName": "devices-2, laptop-phone",
9261
9261
  "variant": {
9262
9262
  "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.2928 2.29273C17.659 1.92662 18.238 1.90402 18.6307 2.22437L18.7069 2.29273L21.7069 5.29273L21.7753 5.36891C22.0955 5.76168 22.073 6.34074 21.7069 6.7068C21.3408 7.07279 20.7618 7.09534 20.369 6.77516L20.2928 6.7068L19.4999 5.91383L17.9139 7.49977L20.7069 10.2927L20.7753 10.3689C21.0955 10.7617 21.073 11.3407 20.7069 11.7068C20.3408 12.0728 19.7618 12.0953 19.369 11.7752L19.2928 11.7068L18.4999 10.9138L12.2069 17.2068C10.9564 18.4573 9.05578 18.6615 7.59265 17.8201L3.70691 21.7068C3.31644 22.0972 2.68336 22.0971 2.29285 21.7068C1.90236 21.3163 1.90241 20.6833 2.29285 20.2927L6.17859 16.406C5.33765 14.943 5.54258 13.0431 6.79285 11.7927L13.0858 5.49977L12.2928 4.7068L12.2245 4.63063C11.9042 4.23788 11.9268 3.65885 12.2928 3.29273C12.659 2.92662 13.238 2.90402 13.6307 3.22438L13.7069 3.29273L16.4999 6.0857L18.0858 4.49977L17.2928 3.7068L17.2245 3.63063C16.9042 3.23788 16.9268 2.65885 17.2928 2.29273Z\" 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=\"M17.4789 3.63124C15.3039 1.45625 11.7775 1.45625 9.60252 3.63124L7.3206 5.91316L10.2945 8.88704C11.7349 7.75024 13.5538 7.0718 15.5311 7.0718C16.8073 7.0718 18.0174 7.35438 19.1024 7.86039C19.1817 6.33986 18.6407 4.79313 17.4789 3.63124Z\" fill=\"currentColor\"/><path d=\"M8.88704 10.2945L5.91316 7.3206L3.63124 9.60252C1.45625 11.7775 1.45625 15.3039 3.63124 17.4789C4.79313 18.6407 6.33986 19.1817 7.86039 19.1024C7.35438 18.0174 7.0718 16.8073 7.0718 15.5311C7.0718 13.5538 7.75024 11.7349 8.88704 10.2945Z\" fill=\"currentColor\"/><path d=\"M13.3013 9.4568C10.8273 10.3653 9.06223 12.7421 9.06223 15.5311C9.06223 19.1038 11.9584 22 15.5311 22C15.6241 22 15.7167 21.998 15.8088 21.9941L13.3013 9.4568Z\" fill=\"currentColor\"/><path d=\"M17.7609 21.6054C20.2349 20.697 22 18.3202 22 15.5311C22 11.9584 19.1038 9.06223 15.5311 9.06223C15.4381 9.06223 15.3455 9.06419 15.2534 9.06808L17.7609 21.6054Z\" 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=\"M20.1241 11.944C20.4338 11.7351 20.7144 11.5091 20.9589 11.2657C21.5641 10.6633 22 9.89682 22 9C22 8.10318 21.5641 7.33672 20.9589 6.73431C20.3576 6.1357 19.5381 5.6426 18.6056 5.24994C16.7364 4.4629 14.2235 4 11.5 4C9.39621 4 7.41816 4.2762 5.76535 4.76464L20.1241 11.944Z\" fill=\"currentColor\"/><path d=\"M3.32097 5.77852C2.83208 6.06062 2.39811 6.37887 2.04105 6.73431C1.43591 7.33672 1 8.10318 1 9C1 9.89682 1.43591 10.6633 2.04105 11.2657C2.64239 11.8643 3.46186 12.3574 4.39443 12.7501C6.26364 13.5371 8.77646 14 11.5 14C13.8694 14 16.0793 13.6497 17.8446 13.0404L3.32097 5.77852Z\" fill=\"currentColor\"/><path d=\"M1 13.0255C1.77435 13.693 2.69212 14.2034 3.61831 14.5933C5.78764 15.5067 8.57611 16 11.5 16C14.4239 16 17.2124 15.5067 19.3817 14.5933C20.3079 14.2034 21.2257 13.693 22 13.0255V15.0001C22 15.8969 21.5641 16.6633 20.9589 17.2657C20.3576 17.8644 19.5381 18.3575 18.6056 18.7501C16.7364 19.5371 14.2235 20 11.5 20C8.77646 20 6.26364 19.5371 4.39443 18.7501C3.46186 18.3575 2.64239 17.8644 2.04105 17.2657C1.43591 16.6633 1 15.8969 1 15.0001V13.0255Z\" 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.0415 4.04346C13.5031 1.58187 17.4941 1.58187 19.9557 4.04346C22.4173 6.50505 22.4173 10.4961 19.9557 12.9577L17.1628 15.7506L8.24861 6.83635L11.0415 4.04346Z\" fill=\"currentColor\"/><path d=\"M6.8344 8.25057L4.04151 11.0435C1.57991 13.5051 1.57991 17.4961 4.04151 19.9577C6.5031 22.4193 10.4941 22.4193 12.9557 19.9577L15.7486 17.1648L6.8344 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.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\" fill=\"currentColor\"/><path d=\"M4.76941 5.08691C1.77398 8.21571 1.0626 13.0606 3.33751 17.0009C3.7092 17.6447 4.62845 17.6722 5.03805 17.0519C5.73704 15.9932 6.57339 15.3094 7.43963 14.978C6.31937 12.663 5.50497 10.0893 5.08725 7.8683C4.90063 6.87609 4.78812 5.92805 4.76941 5.08691Z\" fill=\"currentColor\"/><path d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\" fill=\"currentColor\"/><path d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\" fill=\"currentColor\"/>",
18751
+ "svg": "<path d=\"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\" fill=\"currentColor\"/><path d=\"M4.77331 5.08691C1.77789 8.21571 1.06651 13.0606 3.34142 17.0009C3.71311 17.6447 4.63236 17.6722 5.04195 17.0519C5.74095 15.9932 6.5773 15.3094 7.44354 14.978C6.32328 12.663 5.50888 10.0893 5.09115 7.8683C4.90454 6.87609 4.79202 5.92805 4.77331 5.08691Z\" fill=\"currentColor\"/><path d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\" fill=\"currentColor\"/><path d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\" 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-3-stroke-2",
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.79058C9.74898 19.5001 9.71215 19.527 9.69879 19.5664C9.41307 20.4223 8.6109 20.9999 7.70855 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": "3",
19513
+ "stroke": "2"
19514
+ },
19515
+ "createdAt": "2026-05-22T11:02:18.919122+00:00",
19516
+ "packageName": "round-filled-radius-3-stroke-2",
19517
+ "componentName": "IconPiggyBankCoin"
19518
+ },
19505
19519
  {
19506
19520
  "category": "Things",
19507
19521
  "svg": "<path d=\"M5 3C3.34315 3 2 4.34315 2 6C2 6.23294 2.02674 6.4609 2.07774 6.68049C2.12947 6.90325 2.19305 7.12483 2.24889 7.31948L2.25574 7.34335C2.31586 7.55298 2.36744 7.73468 2.40768 7.91114C2.48911 8.2682 2.49907 8.50589 2.45508 8.68992C2.20563 9.73348 2 10.9145 2 12C2 13.0855 2.20563 14.2665 2.45508 15.3101C2.49907 15.4941 2.48911 15.7318 2.40768 16.0889C2.36744 16.2653 2.31586 16.447 2.25574 16.6566L2.24889 16.6805C2.19305 16.8752 2.12948 17.0967 2.07774 17.3195C2.02674 17.5391 2 17.7671 2 18C2 19.6569 3.34315 21 5 21C5.26653 21 5.52641 20.965 5.77462 20.8988C5.99849 20.8391 6.22083 20.767 6.41568 20.7038L6.44032 20.6958C6.65053 20.6277 6.83219 20.5694 7.00868 20.5232C7.366 20.4295 7.60076 20.4145 7.78183 20.4549C9.08905 20.7464 10.6156 21 12 21C13.3844 21 14.911 20.7464 16.2182 20.4549C16.3992 20.4145 16.634 20.4295 16.9913 20.5232C17.1678 20.5694 17.3495 20.6277 17.5597 20.6958L17.5843 20.7038C17.7792 20.767 18.0015 20.8391 18.2254 20.8988C18.4736 20.965 18.7335 21 19 21C20.6569 21 22 19.6569 22 18C22 17.7671 21.9733 17.5391 21.9223 17.3195C21.8705 17.0967 21.8069 16.8751 21.7511 16.6805L21.7443 16.6566C21.6841 16.447 21.6326 16.2653 21.5923 16.0889C21.5109 15.7318 21.5009 15.4941 21.5449 15.3101C21.7944 14.2665 22 13.0855 22 12C22 10.9145 21.7944 9.73348 21.5449 8.68992C21.5009 8.50589 21.5109 8.2682 21.5923 7.91114C21.6326 7.73468 21.6841 7.55298 21.7443 7.34335L21.7511 7.31952C21.8069 7.12486 21.8705 6.90327 21.9223 6.68049C21.9733 6.4609 22 6.23294 22 6C22 4.34315 20.6569 3 19 3C18.7316 3 18.4699 3.0355 18.2201 3.10263C17.9958 3.1629 17.7731 3.2356 17.578 3.29929L17.5535 3.30729C17.343 3.37596 17.1612 3.43471 16.9845 3.48137C16.6269 3.57584 16.3923 3.59093 16.2116 3.55058C14.8973 3.2572 13.3653 3 12 3C10.6347 3 9.10268 3.2572 7.78844 3.55058C7.60769 3.59093 7.37313 3.57584 7.01547 3.48137C6.83882 3.43471 6.65699 3.37596 6.44651 3.30729L6.422 3.29928C6.22688 3.2356 6.00416 3.1629 5.77989 3.10263C5.5301 3.0355 5.26842 3 5 3Z\" fill=\"currentColor\"/>",
@@ -26306,6 +26320,20 @@
26306
26320
  "packageName": "round-filled-radius-3-stroke-2",
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 4C7.58172 4 4 7.58172 4 12C4 13.8484 4.62892 15.5488 5.68164 16.9033L8.79297 13.793C9.18349 13.4024 9.81651 13.4024 10.207 13.793C10.5976 14.1835 10.5976 14.8165 10.207 15.207L7.0957 18.3174C8.45045 19.3706 10.1511 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1511 19.3706 8.45045 18.3174 7.0957L15.207 10.207C14.8165 10.5976 14.1835 10.5976 13.793 10.207C13.4024 9.81651 13.4024 9.18349 13.793 8.79297L16.9033 5.68164C15.5488 4.62892 13.8484 4 12 4Z\" fill=\"currentColor\"/>",
26326
+ "iconName": "unblock, unban",
26327
+ "variant": {
26328
+ "join": "round",
26329
+ "filled": "on",
26330
+ "radius": "3",
26331
+ "stroke": "2"
26332
+ },
26333
+ "createdAt": "2026-05-22T08:02:26.577334+00:00",
26334
+ "packageName": "round-filled-radius-3-stroke-2",
26335
+ "componentName": "IconUnblock"
26336
+ },
26309
26337
  {
26310
26338
  "category": "Photography & Video",
26311
26339
  "svg": "<path d=\"M9.5 6.25C9.5 6.80228 9.05228 7.25 8.5 7.25C7.94772 7.25 7.5 6.80228 7.5 6.25C7.5 5.69772 7.94772 5.25 8.5 5.25C9.05228 5.25 9.5 5.69772 9.5 6.25Z\" fill=\"currentColor\"/><path d=\"M6 6.25C6 6.80228 5.55228 7.25 5 7.25C4.44772 7.25 4 6.80228 4 6.25C4 5.69772 4.44772 5.25 5 5.25C5.55228 5.25 6 5.69772 6 6.25Z\" fill=\"currentColor\"/><path d=\"M9.5 17.75C9.5 18.3023 9.05228 18.75 8.5 18.75C7.94772 18.75 7.5 18.3023 7.5 17.75C7.5 17.1977 7.94772 16.75 8.5 16.75C9.05228 16.75 9.5 17.1977 9.5 17.75Z\" fill=\"currentColor\"/><path d=\"M9.25 3.25C9.25 3.66421 8.91421 4 8.5 4C8.08579 4 7.75 3.66421 7.75 3.25C7.75 2.83579 8.08579 2.5 8.5 2.5C8.91421 2.5 9.25 2.83579 9.25 3.25Z\" fill=\"currentColor\"/><path d=\"M3 10C3 10.4142 2.66421 10.75 2.25 10.75C1.83579 10.75 1.5 10.4142 1.5 10C1.5 9.58579 1.83579 9.25 2.25 9.25C2.66421 9.25 3 9.58579 3 10Z\" fill=\"currentColor\"/><path d=\"M3 14C3 14.4142 2.66421 14.75 2.25 14.75C1.83579 14.75 1.5 14.4142 1.5 14C1.5 13.5858 1.83579 13.25 2.25 13.25C2.66421 13.25 3 13.5858 3 14Z\" fill=\"currentColor\"/><path d=\"M9.25 20.75C9.25 21.1642 8.91421 21.5 8.5 21.5C8.08579 21.5 7.75 21.1642 7.75 20.75C7.75 20.3358 8.08579 20 8.5 20C8.91421 20 9.25 20.3358 9.25 20.75Z\" fill=\"currentColor\"/><path d=\"M10 10C10 10.8284 9.32843 11.5 8.5 11.5C7.67157 11.5 7 10.8284 7 10C7 9.17157 7.67157 8.5 8.5 8.5C9.32843 8.5 10 9.17157 10 10Z\" fill=\"currentColor\"/><path d=\"M10 14C10 14.8284 9.32843 15.5 8.5 15.5C7.67157 15.5 7 14.8284 7 14C7 13.1716 7.67157 12.5 8.5 12.5C9.32843 12.5 10 13.1716 10 14Z\" fill=\"currentColor\"/><path d=\"M6 10C6 10.5523 5.55228 11 5 11C4.44772 11 4 10.5523 4 10C4 9.44772 4.44772 9 5 9C5.55228 9 6 9.44772 6 10Z\" fill=\"currentColor\"/><path d=\"M6 14C6 14.5523 5.55228 15 5 15C4.44772 15 4 14.5523 4 14C4 13.4477 4.44772 13 5 13C5.55228 13 6 13.4477 6 14Z\" fill=\"currentColor\"/><path d=\"M6 17.75C6 18.3023 5.55228 18.75 5 18.75C4.44772 18.75 4 18.3023 4 17.75C4 17.1977 4.44772 16.75 5 16.75C5.55228 16.75 6 17.1977 6 17.75Z\" fill=\"currentColor\"/><path d=\"M12 2C11.4477 2 11 2.44772 11 3V21C11 21.5523 11.4477 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-3-stroke-2",
3
- "version": "1.1.244",
3
+ "version": "1.1.246",
4
4
  "style": "round-filled-radius-3-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-3-stroke-2/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";