@central-icons-react-native/square-filled-radius-0-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 p=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)p(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!H.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(C=B(o,t))||C.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),V=r=>a(p({},"__esModule",{value:!0}),r);var v={};P(v,{IconDevices2:()=>i,default:()=>g});module.exports=V(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 l=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(l.Path,{d:"M23 21H16V9H23V21Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M15 20H1V17H15V20Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M21 8H15V16H3V3H21V8Z",fill:"currentColor"})),g=i;0&&(module.exports={IconDevices2});
1
+ "use strict";var u=Object.create;var p=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)p(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!H.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(C=B(o,t))||C.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),V=r=>a(p({},"__esModule",{value:!0}),r);var v={};P(v,{IconDevices2:()=>i,default:()=>g});module.exports=V(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 l=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(l.Path,{d:"M23 21H15V9H23V21Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M13 20.5H1V16H13V20.5Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M21 7H13V14H3V3H21V7Z",fill:"currentColor"})),g=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 d=\"M23 21H16V9H23V21Z\" fill=\"currentColor\" />\n <Path d=\"M15 20H1V17H15V20Z\" fill=\"currentColor\" />\n <Path d=\"M21 8H15V16H3V3H21V8Z\" fill=\"currentColor\" />\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,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,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 d=\"M23 21H15V9H23V21Z\" fill=\"currentColor\" />\n <Path d=\"M13 20.5H1V16H13V20.5Z\" fill=\"currentColor\" />\n <Path d=\"M21 7H13V14H3V3H21V7Z\" fill=\"currentColor\" />\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,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,EACrD,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,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 l from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:r=24,...p})=>l.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M23 21H16V9H23V21Z",fill:"currentColor"}),o.createElement(t,{d:"M15 20H1V17H15V20Z",fill:"currentColor"}),o.createElement(t,{d:"M21 8H15V16H3V3H21V8Z",fill:"currentColor"})),H=a;export{a as IconDevices2,H as default};
1
+ import o from"react";import l from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:r=24,...p})=>l.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M23 21H15V9H23V21Z",fill:"currentColor"}),o.createElement(t,{d:"M13 20.5H1V16H13V20.5Z",fill:"currentColor"}),o.createElement(t,{d:"M21 7H13V14H3V3H21V7Z",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 d=\"M23 21H16V9H23V21Z\" fill=\"currentColor\" />\n <Path d=\"M15 20H1V17H15V20Z\" fill=\"currentColor\" />\n <Path d=\"M21 8H15V16H3V3H21V8Z\" fill=\"currentColor\" />\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,CAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDG,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDG,EAAA,cAACH,EAAA,CAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,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 d=\"M23 21H15V9H23V21Z\" fill=\"currentColor\" />\n <Path d=\"M13 20.5H1V16H13V20.5Z\" fill=\"currentColor\" />\n <Path d=\"M21 7H13V14H3V3H21V7Z\" fill=\"currentColor\" />\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,CAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDG,EAAA,cAACH,EAAA,CAAK,EAAE,yBAAyB,KAAK,eAAe,EACrDG,EAAA,cAACH,EAAA,CAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,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 L=(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)),d=r=>a(l({},"__esModule",{value:!0}),r);var v={};L(v,{IconParasol:()=>i,default:()=>g});module.exports=d(v);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.0009L4.14653 18.4021L5.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.4989L21.4678 8.40197L20.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.3838L16.1318 21.1613L17.8638 20.1613L13.9508 13.3838Z",fill:"currentColor"})),g=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 L=(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)),d=r=>a(l({},"__esModule",{value:!0}),r);var v={};L(v,{IconParasol:()=>i,default:()=>g});module.exports=d(v);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.7655 5.08691C1.77007 8.21571 1.0587 13.0606 3.3336 17.0009L4.14262 18.4021L5.03414 17.0519C5.73314 15.9932 6.56948 15.3094 7.43573 14.978C6.31546 12.663 5.50107 10.0893 5.08334 7.8683C4.89673 6.87609 4.78421 5.92805 4.7655 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.4989L21.4678 8.40197L20.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.3838L16.1318 21.1613L17.8638 20.1613L13.9508 13.3838Z",fill:"currentColor"})),g=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.0009L4.14653 18.4021L5.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.4989L21.4678 8.40197L20.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.3838L16.1318 21.1613L17.8638 20.1613L13.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,gPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oKACF,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.7655 5.08691C1.77007 8.21571 1.0587 13.0606 3.3336 17.0009L4.14262 18.4021L5.03414 17.0519C5.73314 15.9932 6.56948 15.3094 7.43573 14.978C6.31546 12.663 5.50107 10.0893 5.08334 7.8683C4.89673 6.87609 4.78421 5.92805 4.7655 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.4989L21.4678 8.40197L20.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.3838L16.1318 21.1613L17.8638 20.1613L13.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,6OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oKACF,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.0009L4.14653 18.4021L5.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.4989L21.4678 8.40197L20.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.3838L16.1318 21.1613L17.8638 20.1613L13.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.7655 5.08691C1.77007 8.21571 1.0587 13.0606 3.3336 17.0009L4.14262 18.4021L5.03414 17.0519C5.73314 15.9932 6.56948 15.3094 7.43573 14.978C6.31546 12.663 5.50107 10.0893 5.08334 7.8683C4.89673 6.87609 4.78421 5.92805 4.7655 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.4989L21.4678 8.40197L20.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.3838L16.1318 21.1613L17.8638 20.1613L13.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.0009L4.14653 18.4021L5.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.4989L21.4678 8.40197L20.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.3838L16.1318 21.1613L17.8638 20.1613L13.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,gPACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oKACF,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.7655 5.08691C1.77007 8.21571 1.0587 13.0606 3.3336 17.0009L4.14262 18.4021L5.03414 17.0519C5.73314 15.9932 6.56948 15.3094 7.43573 14.978C6.31546 12.663 5.50107 10.0893 5.08334 7.8683C4.89673 6.87609 4.78421 5.92805 4.7655 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.4989L21.4678 8.40197L20.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.3838L16.1318 21.1613L17.8638 20.1613L13.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,6OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oKACF,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 t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var P=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},a=(o,r,e,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of d(r))!I.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(l=B(r,n))||l.enumerable});return o};var m=(o,r,e)=>(e=o!=null?u(g(o)):{},a(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),v=o=>a(t({},"__esModule",{value:!0}),o);var H={};P(H,{IconPiggyBankCoin:()=>c,default:()=>x});module.exports=v(H);var C=m(require("react"));var f=m(require("react")),i=require("react-native-svg"),s=({children:o,size:r=24,...e})=>f.default.createElement(i.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 p=require("react-native-svg"),c=o=>C.default.createElement(s,{...o},C.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.0012 5.5C18.0012 6.7486 18.3111 7.74591 18.841 8.4834C19.3654 9.21313 20.1545 9.75775 21.2443 10.0303L22.0012 10.2188V15.2812L21.2443 15.4697C18.9386 16.0463 17.5012 17.8015 17.5012 20V21H13.2804L12.7804 19.5H9.72186L9.22186 21H5.55193L5.25408 20.6641C3.09896 18.2397 1.8576 14.8581 2.05096 11.9951C2.14855 10.5503 2.6197 9.16178 3.61443 8.12695C4.62446 7.07648 6.06954 6.50015 7.88592 6.5H12.1535C13.5045 5.43173 14.8588 4.50015 17.0012 4.5H18.0012V5.5ZM15.2512 10C14.561 10.0002 14.0012 10.5598 14.0012 11.25C14.0012 11.9402 14.561 12.4998 15.2512 12.5C15.9415 12.5 16.5012 11.9404 16.5012 11.25C16.5012 10.5596 15.9415 10 15.2512 10Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M11.0012 2C12.4608 2 13.7372 2.7824 14.4357 3.9502C13.412 4.3308 12.5723 4.90694 11.8058 5.5H7.88592C7.59351 5.50002 7.30745 5.51415 7.0285 5.54102C7.25623 3.54817 8.94736 2.00009 11.0012 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=\"M18.0012 5.5C18.0012 6.7486 18.3111 7.74591 18.841 8.4834C19.3654 9.21313 20.1545 9.75775 21.2443 10.0303L22.0012 10.2188V15.2812L21.2443 15.4697C18.9386 16.0463 17.5012 17.8015 17.5012 20V21H13.2804L12.7804 19.5H9.72186L9.22186 21H5.55193L5.25408 20.6641C3.09896 18.2397 1.8576 14.8581 2.05096 11.9951C2.14855 10.5503 2.6197 9.16178 3.61443 8.12695C4.62446 7.07648 6.06954 6.50015 7.88592 6.5H12.1535C13.5045 5.43173 14.8588 4.50015 17.0012 4.5H18.0012V5.5ZM15.2512 10C14.561 10.0002 14.0012 10.5598 14.0012 11.25C14.0012 11.9402 14.561 12.4998 15.2512 12.5C15.9415 12.5 16.5012 11.9404 16.5012 11.25C16.5012 10.5596 15.9415 10 15.2512 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M11.0012 2C12.4608 2 13.7372 2.7824 14.4357 3.9502C13.412 4.3308 12.5723 4.90694 11.8058 5.5H7.88592C7.59351 5.50002 7.30745 5.51415 7.0285 5.54102C7.25623 3.54817 8.94736 2.00009 11.0012 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,moBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iMACF,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 e from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:r,size:o=24,...C})=>p.createElement(l,{...C,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 t}from"react-native-svg";var a=r=>e.createElement(n,{...r},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.0012 5.5C18.0012 6.7486 18.3111 7.74591 18.841 8.4834C19.3654 9.21313 20.1545 9.75775 21.2443 10.0303L22.0012 10.2188V15.2812L21.2443 15.4697C18.9386 16.0463 17.5012 17.8015 17.5012 20V21H13.2804L12.7804 19.5H9.72186L9.22186 21H5.55193L5.25408 20.6641C3.09896 18.2397 1.8576 14.8581 2.05096 11.9951C2.14855 10.5503 2.6197 9.16178 3.61443 8.12695C4.62446 7.07648 6.06954 6.50015 7.88592 6.5H12.1535C13.5045 5.43173 14.8588 4.50015 17.0012 4.5H18.0012V5.5ZM15.2512 10C14.561 10.0002 14.0012 10.5598 14.0012 11.25C14.0012 11.9402 14.561 12.4998 15.2512 12.5C15.9415 12.5 16.5012 11.9404 16.5012 11.25C16.5012 10.5596 15.9415 10 15.2512 10Z",fill:"currentColor"}),e.createElement(t,{d:"M11.0012 2C12.4608 2 13.7372 2.7824 14.4357 3.9502C13.412 4.3308 12.5723 4.90694 11.8058 5.5H7.88592C7.59351 5.50002 7.30745 5.51415 7.0285 5.54102C7.25623 3.54817 8.94736 2.00009 11.0012 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=\"M18.0012 5.5C18.0012 6.7486 18.3111 7.74591 18.841 8.4834C19.3654 9.21313 20.1545 9.75775 21.2443 10.0303L22.0012 10.2188V15.2812L21.2443 15.4697C18.9386 16.0463 17.5012 17.8015 17.5012 20V21H13.2804L12.7804 19.5H9.72186L9.22186 21H5.55193L5.25408 20.6641C3.09896 18.2397 1.8576 14.8581 2.05096 11.9951C2.14855 10.5503 2.6197 9.16178 3.61443 8.12695C4.62446 7.07648 6.06954 6.50015 7.88592 6.5H12.1535C13.5045 5.43173 14.8588 4.50015 17.0012 4.5H18.0012V5.5ZM15.2512 10C14.561 10.0002 14.0012 10.5598 14.0012 11.25C14.0012 11.9402 14.561 12.4998 15.2512 12.5C15.9415 12.5 16.5012 11.9404 16.5012 11.25C16.5012 10.5596 15.9415 10 15.2512 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M11.0012 2C12.4608 2 13.7372 2.7824 14.4357 3.9502C13.412 4.3308 12.5723 4.90694 11.8058 5.5H7.88592C7.59351 5.50002 7.30745 5.51415 7.0285 5.54102C7.25623 3.54817 8.94736 2.00009 11.0012 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,moBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iMACF,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,C)=>{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:!(C=B(r,n))||C.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 L={};x(L,{IconUnblock:()=>i,default:()=>g});module.exports=P(L);var p=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=>p.default.createElement(s,{...o},p.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.9033L9.29297 13.293L10.707 14.707L7.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.0957L14.707 10.707L13.293 9.29297L16.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.9033L9.29297 13.293L10.707 14.707L7.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.0957L14.707 10.707L13.293 9.29297L16.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,2ZACF,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 p from"react";import{Svg as C}from"react-native-svg";var e=({children:r,size:o=24,...t})=>p.createElement(C,{...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.9033L9.29297 13.293L10.707 14.707L7.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.0957L14.707 10.707L13.293 9.29297L16.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.9033L9.29297 13.293L10.707 14.707L7.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.0957L14.707 10.707L13.293 9.29297L16.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,2ZACF,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": "square",
@@ -9256,7 +9256,7 @@
9256
9256
  },
9257
9257
  {
9258
9258
  "category": "Devices & Signals",
9259
- "svg": "<path d=\"M23 21H16V9H23V21Z\" fill=\"currentColor\"/><path d=\"M15 20H1V17H15V20Z\" fill=\"currentColor\"/><path d=\"M21 8H15V16H3V3H21V8Z\" fill=\"currentColor\"/>",
9259
+ "svg": "<path d=\"M23 21H15V9H23V21Z\" fill=\"currentColor\"/><path d=\"M13 20.5H1V16H13V20.5Z\" fill=\"currentColor\"/><path d=\"M21 7H13V14H3V3H21V7Z\" fill=\"currentColor\"/>",
9260
9260
  "iconName": "devices-2, laptop-phone",
9261
9261
  "variant": {
9262
9262
  "join": "square",
@@ -14589,7 +14589,7 @@
14589
14589
  "componentName": "IconInitiatives"
14590
14590
  },
14591
14591
  {
14592
- "category": "Things",
14592
+ "category": "Health & Medical",
14593
14593
  "svg": "<path d=\"M22.207 5.79297L20.793 7.20703L19.5 5.91406L17.9141 7.5L21.207 10.793L19.793 12.207L18.5 10.9141L9.5 19.9141L7.5 17.9141L3.70703 21.707L2.29297 20.293L6.08594 16.5L4.08594 14.5L13.0859 5.5L11.793 4.20703L13.207 2.79297L16.5 6.08594L18.0859 4.5L16.793 3.20703L18.207 1.79297L22.207 5.79297Z\" 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.57992 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.0009L4.14653 18.4021L5.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.4989L21.4678 8.40197L20.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.3838L16.1318 21.1613L17.8638 20.1613L13.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.7655 5.08691C1.77007 8.21571 1.0587 13.0606 3.3336 17.0009L4.14262 18.4021L5.03414 17.0519C5.73314 15.9932 6.56948 15.3094 7.43573 14.978C6.31546 12.663 5.50107 10.0893 5.08334 7.8683C4.89673 6.87609 4.78421 5.92805 4.7655 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.4989L21.4678 8.40197L20.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.3838L16.1318 21.1613L17.8638 20.1613L13.9508 13.3838Z\" fill=\"currentColor\"/>",
18752
18752
  "iconName": "parasol,umbrella,vacation",
18753
18753
  "variant": {
18754
18754
  "join": "square",
@@ -19502,6 +19502,20 @@
19502
19502
  "packageName": "square-filled-radius-0-stroke-2",
19503
19503
  "componentName": "IconPiggyBank"
19504
19504
  },
19505
+ {
19506
+ "category": "Things",
19507
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.0012 5.5C18.0012 6.7486 18.3111 7.74591 18.841 8.4834C19.3654 9.21313 20.1545 9.75775 21.2443 10.0303L22.0012 10.2188V15.2812L21.2443 15.4697C18.9386 16.0463 17.5012 17.8015 17.5012 20V21H13.2804L12.7804 19.5H9.72186L9.22186 21H5.55193L5.25408 20.6641C3.09896 18.2397 1.8576 14.8581 2.05096 11.9951C2.14855 10.5503 2.6197 9.16178 3.61443 8.12695C4.62446 7.07648 6.06954 6.50015 7.88592 6.5H12.1535C13.5045 5.43173 14.8588 4.50015 17.0012 4.5H18.0012V5.5ZM15.2512 10C14.561 10.0002 14.0012 10.5598 14.0012 11.25C14.0012 11.9402 14.561 12.4998 15.2512 12.5C15.9415 12.5 16.5012 11.9404 16.5012 11.25C16.5012 10.5596 15.9415 10 15.2512 10Z\" fill=\"currentColor\"/><path d=\"M11.0012 2C12.4608 2 13.7372 2.7824 14.4357 3.9502C13.412 4.3308 12.5723 4.90694 11.8058 5.5H7.88592C7.59351 5.50002 7.30745 5.51415 7.0285 5.54102C7.25623 3.54817 8.94736 2.00009 11.0012 2Z\" fill=\"currentColor\"/>",
19508
+ "iconName": "piggy-bank-coin, money, cashback, savings",
19509
+ "variant": {
19510
+ "join": "square",
19511
+ "filled": "on",
19512
+ "radius": "0",
19513
+ "stroke": "2"
19514
+ },
19515
+ "createdAt": "2026-05-22T11:02:18.919122+00:00",
19516
+ "packageName": "square-filled-radius-0-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.71255 2.249 7.36716 2.66311 7.88118C2.32248 9.12037 2 10.6433 2 12C2 13.3567 2.32248 14.8796 2.66312 16.1188C2.249 16.6328 2 17.2874 2 18C2 19.6569 3.34315 21 5 21C5.75415 21 6.44311 20.7212 6.96946 20.2629C8.44781 20.6316 10.3338 21 12 21C13.6662 21 15.5522 20.6316 17.0305 20.2629C17.5569 20.7212 18.2458 21 19 21C20.6569 21 22 19.6569 22 18C22 17.2874 21.751 16.6328 21.3369 16.1188C21.6775 14.8796 22 13.3567 22 12C22 10.6433 21.6775 9.12037 21.3369 7.88118C21.751 7.36716 22 6.71255 22 6C22 4.34315 20.6569 3 19 3C18.2429 3 17.5515 3.28097 17.0244 3.74248C15.5363 3.37239 13.6403 3 12 3C10.3597 3 8.46371 3.37239 6.97564 3.74248C6.44851 3.28097 5.75711 3 5 3Z\" fill=\"currentColor\"/>",
@@ -26306,6 +26320,20 @@
26306
26320
  "packageName": "square-filled-radius-0-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.9033L9.29297 13.293L10.707 14.707L7.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.0957L14.707 10.707L13.293 9.29297L16.9033 5.68164C15.5488 4.62892 13.8484 4 12 4Z\" fill=\"currentColor\"/>",
26326
+ "iconName": "unblock, unban",
26327
+ "variant": {
26328
+ "join": "square",
26329
+ "filled": "on",
26330
+ "radius": "0",
26331
+ "stroke": "2"
26332
+ },
26333
+ "createdAt": "2026-05-22T08:02:26.577334+00:00",
26334
+ "packageName": "square-filled-radius-0-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 2H11V22H12C17.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/square-filled-radius-0-stroke-2",
3
- "version": "1.1.244",
3
+ "version": "1.1.246",
4
4
  "style": "square-filled-radius-0-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-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";