@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.244 → 1.1.246

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,2 @@
1
- "use strict";var B=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=u(o,t))||C.enumerable});return r};var s=(r,o,e)=>(e=r!=null?B(g(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconCircleBanSign:()=>i,default:()=>S});module.exports=v(d);var p=s(require("react"));var m=s(require("react")),c=require("react-native-svg"),l=({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=>p.default.createElement(l,{...r},p.default.createElement(f.Path,{d:"M18.4414 5.5586L5.46929 18.5307M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z",stroke:"currentColor",strokeLinecap:"round"})),S=i;0&&(module.exports={IconCircleBanSign});
1
+ "use strict";var f=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!x.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(a=B(o,n))||a.enumerable});return r};var c=(r,o,e)=>(e=r!=null?f(g(r)):{},s(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>s(t({},"__esModule",{value:!0}),r);var S={};P(S,{IconCircleBanSign:()=>u,default:()=>v});module.exports=d(S);var p=c(require("react"));var l=c(require("react")),m=require("react-native-svg"),i=({children:r,size:o=24,...e})=>l.default.createElement(m.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 C=require("react-native-svg"),u=r=>p.default.createElement(i,{...r},p.default.createElement(C.Path,{d:"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z",stroke:"currentColor",strokeLinecap:"round"}),p.default.createElement(C.Path,{d:"M18.4413 5.55859L5.46924 18.5307",stroke:"currentColor",strokeLinecap:"round"})),v=u;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=\"M18.4414 5.5586L5.46929 18.5307M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\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,6QACF,OAAO,eACP,cAAc,QAChB,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 d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M18.4413 5.55859L5.46924 18.5307\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\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,8OACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,cAAc,QAChB,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 t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var s=o=>t.createElement(e,{...o},t.createElement(a,{d:"M18.4414 5.5586L5.46929 18.5307M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z",stroke:"currentColor",strokeLinecap:"round"})),x=s;export{s as IconCircleBanSign,x as default};
1
+ import e from"react";import C from"react";import{Svg as a}from"react-native-svg";var n=({children:o,size:r=24,...p})=>C.createElement(a,{...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 t}from"react-native-svg";var s=o=>e.createElement(n,{...o},e.createElement(t,{d:"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z",stroke:"currentColor",strokeLinecap:"round"}),e.createElement(t,{d:"M18.4413 5.55859L5.46924 18.5307",stroke:"currentColor",strokeLinecap:"round"})),x=s;export{s as IconCircleBanSign,x 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=\"M18.4414 5.5586L5.46929 18.5307M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\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,6QACF,OAAO,eACP,cAAc,QAChB,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 d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M18.4413 5.55859L5.46924 18.5307\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\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,8OACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mCACF,OAAO,eACP,cAAc,QAChB,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 B=Object.create;var p=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(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))!P.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(C=I(o,t))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?B(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 H={};g(H,{IconDevices2:()=>u,default:()=>d});module.exports=v(H);var n=l(require("react"));var m=l(require("react")),c=require("react-native-svg"),f=({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 s=require("react-native-svg"),u=r=>n.default.createElement(f,{...r},n.default.createElement(s.Path,{d:"M15.5 9.5H22.5V20.5H15.5V9.5Z",stroke:"currentColor"}),n.default.createElement(s.Path,{d:"M13 19.5H1.5V17.5H13",stroke:"currentColor"}),n.default.createElement(s.Path,{d:"M20.5 7V3.5H3.5V17.5",stroke:"currentColor"})),d=u;0&&(module.exports={IconDevices2});
1
+ "use strict";var B=Object.create;var p=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(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))!P.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(C=I(o,t))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?B(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 H={};g(H,{IconDevices2:()=>u,default:()=>d});module.exports=v(H);var n=l(require("react"));var m=l(require("react")),c=require("react-native-svg"),f=({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 s=require("react-native-svg"),u=r=>n.default.createElement(f,{...r},n.default.createElement(s.Path,{d:"M15.5 9.5H22.5V20.5H15.5V9.5Z",stroke:"currentColor"}),n.default.createElement(s.Path,{d:"M13 19.5H1.5V17.5H13",stroke:"currentColor"}),n.default.createElement(s.Path,{d:"M20.5 7V3.5H3.5V17.25",stroke:"currentColor"})),d=u;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=\"M15.5 9.5H22.5V20.5H15.5V9.5Z\" stroke=\"currentColor\" />\n <Path d=\"M13 19.5H1.5V17.5H13\" stroke=\"currentColor\" />\n <Path d=\"M20.5 7V3.5H3.5V17.5\" stroke=\"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,gCAAgC,OAAO,eAAe,EAC9D,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,EACrD,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,CACvD,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=\"M15.5 9.5H22.5V20.5H15.5V9.5Z\" stroke=\"currentColor\" />\n <Path d=\"M13 19.5H1.5V17.5H13\" stroke=\"currentColor\" />\n <Path d=\"M20.5 7V3.5H3.5V17.25\" stroke=\"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,gCAAgC,OAAO,eAAe,EAC9D,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,EACrD,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,OAAO,eAAe,CACxD,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 s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:r=24,...p})=>s.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:"M15.5 9.5H22.5V20.5H15.5V9.5Z",stroke:"currentColor"}),o.createElement(t,{d:"M13 19.5H1.5V17.5H13",stroke:"currentColor"}),o.createElement(t,{d:"M20.5 7V3.5H3.5V17.5",stroke:"currentColor"})),P=a;export{a as IconDevices2,P as default};
1
+ import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:r=24,...p})=>s.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:"M15.5 9.5H22.5V20.5H15.5V9.5Z",stroke:"currentColor"}),o.createElement(t,{d:"M13 19.5H1.5V17.5H13",stroke:"currentColor"}),o.createElement(t,{d:"M20.5 7V3.5H3.5V17.25",stroke:"currentColor"})),P=a;export{a as IconDevices2,P 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=\"M15.5 9.5H22.5V20.5H15.5V9.5Z\" stroke=\"currentColor\" />\n <Path d=\"M13 19.5H1.5V17.5H13\" stroke=\"currentColor\" />\n <Path d=\"M20.5 7V3.5H3.5V17.5\" stroke=\"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,gCAAgC,OAAO,eAAe,EAC9DG,EAAA,cAACH,EAAA,CAAK,EAAE,uBAAuB,OAAO,eAAe,EACrDG,EAAA,cAACH,EAAA,CAAK,EAAE,uBAAuB,OAAO,eAAe,CACvD,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=\"M15.5 9.5H22.5V20.5H15.5V9.5Z\" stroke=\"currentColor\" />\n <Path d=\"M13 19.5H1.5V17.5H13\" stroke=\"currentColor\" />\n <Path d=\"M20.5 7V3.5H3.5V17.25\" stroke=\"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,gCAAgC,OAAO,eAAe,EAC9DG,EAAA,cAACH,EAAA,CAAK,EAAE,uBAAuB,OAAO,eAAe,EACrDG,EAAA,cAACH,EAAA,CAAK,EAAE,wBAAwB,OAAO,eAAe,CACxD,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 s=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var P=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of P(o))!k.call(r,p)&&p!==e&&s(r,p,{get:()=>o[p],enumerable:!(C=f(o,p))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?u(d(r)):{},i(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>i(s({},"__esModule",{value:!0}),r);var x={};B(x,{IconParasol:()=>m,default:()=>g});module.exports=I(x);var n=l(require("react"));var a=l(require("react")),h=require("react-native-svg"),c=({children:r,size:o=24,...e})=>a.default.createElement(h.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),m=r=>n.default.createElement(c,{...r},n.default.createElement(t.G,{"clip-Path":"url(#clip0_9082_25720)"},n.default.createElement(t.Path,{d:"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement(t.Path,{d:"M11.668 11.4229L16.7513 20.2274",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement(t.Path,{d:"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),n.default.createElement(t.Defs,null,n.default.createElement(t.ClipPath,{id:"clip0_9082_25720"},n.default.createElement(t.Rect,{width:"24",height:"24",fill:"white"})))),g=m;0&&(module.exports={IconParasol});
1
+ "use strict";var f=Object.create;var s=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var P=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of P(o))!I.call(r,p)&&p!==t&&s(r,p,{get:()=>o[p],enumerable:!(C=h(o,p))||C.enumerable});return r};var a=(r,o,t)=>(t=r!=null?f(B(r)):{},l(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>l(s({},"__esModule",{value:!0}),r);var k={};d(k,{IconParasol:()=>u,default:()=>x});module.exports=g(k);var n=a(require("react"));var i=a(require("react")),c=require("react-native-svg"),m=({children:r,size:o=24,...t})=>i.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var e=require("react-native-svg"),u=r=>n.default.createElement(m,{...r},n.default.createElement(e.G,{"clip-Path":"url(#clip0_15261_28203)"},n.default.createElement(e.Path,{d:"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement(e.Path,{d:"M11.6641 11.4229L16.7474 20.2274",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement(e.Path,{d:"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583",stroke:"currentColor",strokeLinecap:"square"})),n.default.createElement(e.Defs,null,n.default.createElement(e.ClipPath,{id:"clip0_15261_28203"},n.default.createElement(e.Rect,{width:"24",height:"24",fill:"white"})))),x=u;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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_9082_25720)\">\n <Path\n d=\"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M11.668 11.4229L16.7513 20.2274\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_9082_25720\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\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,EAA8C,4BAEjCC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,KAAE,YAAU,0BACX,EAAAA,QAAA,cAAC,QACC,EAAE,6PACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_15261_28203)\">\n <Path\n d=\"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M11.6641 11.4229L16.7474 20.2274\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_15261_28203\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\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,EAA8C,4BAEjCC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,KAAE,YAAU,2BACX,EAAAA,QAAA,cAAC,QACC,EAAE,6PACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gHACF,OAAO,eACP,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,qBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,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 r from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:o=24,...p})=>s.createElement(C,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{ClipPath as i,Defs as l,G as a,Path as e,Rect as h}from"react-native-svg";var c=t=>r.createElement(n,{...t},r.createElement(a,{"clip-Path":"url(#clip0_9082_25720)"},r.createElement(e,{d:"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement(e,{d:"M11.668 11.4229L16.7513 20.2274",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement(e,{d:"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),r.createElement(l,null,r.createElement(i,{id:"clip0_9082_25720"},r.createElement(h,{width:"24",height:"24",fill:"white"})))),x=c;export{c as IconParasol,x as default};
1
+ import r from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:o=24,...p})=>s.createElement(C,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{ClipPath as l,Defs as a,G as i,Path as t,Rect as c}from"react-native-svg";var m=e=>r.createElement(n,{...e},r.createElement(i,{"clip-Path":"url(#clip0_15261_28203)"},r.createElement(t,{d:"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(t,{d:"M11.6641 11.4229L16.7474 20.2274",stroke:"currentColor",strokeLinecap:"square"}),r.createElement(t,{d:"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583",stroke:"currentColor",strokeLinecap:"square"})),r.createElement(a,null,r.createElement(l,{id:"clip0_15261_28203"},r.createElement(c,{width:"24",height:"24",fill:"white"})))),k=m;export{m as IconParasol,k 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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_9082_25720)\">\n <Path\n d=\"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M11.668 11.4229L16.7513 20.2274\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_9082_25720\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\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,YAAAG,EAAU,QAAAC,EAAM,KAAAC,EAAG,QAAAC,EAAM,QAAAC,MAAY,mBAEvC,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACL,EAAA,CAAE,YAAU,0BACXK,EAAA,cAACJ,EAAA,CACC,EAAE,6PACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,kCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,gHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EACAI,EAAA,cAACN,EAAA,KACCM,EAAA,cAACP,EAAA,CAAS,GAAG,oBACXO,EAAA,cAACH,EAAA,CAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","ClipPath","Defs","G","Path","Rect","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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_15261_28203)\">\n <Path\n d=\"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M11.6641 11.4229L16.7474 20.2274\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_15261_28203\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\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,YAAAG,EAAU,QAAAC,EAAM,KAAAC,EAAG,QAAAC,EAAM,QAAAC,MAAY,mBAEvC,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACL,EAAA,CAAE,YAAU,2BACXK,EAAA,cAACJ,EAAA,CACC,EAAE,6PACF,OAAO,eACP,cAAc,SAChB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,mCACF,OAAO,eACP,cAAc,SAChB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,gHACF,OAAO,eACP,cAAc,SAChB,CACF,EACAI,EAAA,cAACN,EAAA,KACCM,EAAA,cAACP,EAAA,CAAS,GAAG,qBACXO,EAAA,cAACH,EAAA,CAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","ClipPath","Defs","G","Path","Rect","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 C=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of g(o))!P.call(r,n)&&n!==t&&C(r,n,{get:()=>o[n],enumerable:!(l=B(o,n))||l.enumerable});return r};var s=(r,o,t)=>(t=r!=null?u(I(r)):{},a(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>a(C({},"__esModule",{value:!0}),r);var y={};x(y,{IconPiggyBankCoin:()=>i,default:()=>v});module.exports=d(y);var e=s(require("react"));var m=s(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>m.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>e.default.createElement(f,{...r},e.default.createElement(p.Path,{d:"M9.25 20.5H5.64013C1.41022 15.6897 0.881166 7.13793 7.63317 7.13793H12.5127C14.0336 5.90784 15.2485 5 17.2707 5C17.2707 8.02155 18.7587 9.65197 21.5 10.3448V15.1552C18.6399 15.8781 17 17.6103 17 20.5L13.25 20.5L12.75 18.8966L9.75 18.8966L9.25 20.5Z",stroke:"currentColor"}),e.default.createElement(p.Path,{d:"M17 10.75C17 11.3023 16.5523 11.75 16 11.75C15.4477 11.75 15 11.3023 15 10.75C15 10.1977 15.4477 9.75 16 9.75C16.5523 9.75 17 10.1977 17 10.75Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M7.90675 7C7.80498 6.68497 7.75 6.3489 7.75 6C7.75 4.20507 9.20507 2.75 11 2.75C12.7145 2.75 14.1189 4.0776 14.2413 5.76087",stroke:"currentColor"})),v=i;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 d=\"M9.25 20.5H5.64013C1.41022 15.6897 0.881166 7.13793 7.63317 7.13793H12.5127C14.0336 5.90784 15.2485 5 17.2707 5C17.2707 8.02155 18.7587 9.65197 21.5 10.3448V15.1552C18.6399 15.8781 17 17.6103 17 20.5L13.25 20.5L12.75 18.8966L9.75 18.8966L9.25 20.5Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M17 10.75C17 11.3023 16.5523 11.75 16 11.75C15.4477 11.75 15 11.3023 15 10.75C15 10.1977 15.4477 9.75 16 9.75C16.5523 9.75 17 10.1977 17 10.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.90675 7C7.80498 6.68497 7.75 6.3489 7.75 6C7.75 4.20507 9.20507 2.75 11 2.75C12.7145 2.75 14.1189 4.0776 14.2413 5.76087\"\n stroke=\"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,EAAE,2PACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8HACF,OAAO,eACT,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 o from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:t,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"},t);import{Path as n}from"react-native-svg";var a=t=>o.createElement(e,{...t},o.createElement(n,{d:"M9.25 20.5H5.64013C1.41022 15.6897 0.881166 7.13793 7.63317 7.13793H12.5127C14.0336 5.90784 15.2485 5 17.2707 5C17.2707 8.02155 18.7587 9.65197 21.5 10.3448V15.1552C18.6399 15.8781 17 17.6103 17 20.5L13.25 20.5L12.75 18.8966L9.75 18.8966L9.25 20.5Z",stroke:"currentColor"}),o.createElement(n,{d:"M17 10.75C17 11.3023 16.5523 11.75 16 11.75C15.4477 11.75 15 11.3023 15 10.75C15 10.1977 15.4477 9.75 16 9.75C16.5523 9.75 17 10.1977 17 10.75Z",fill:"currentColor"}),o.createElement(n,{d:"M7.90675 7C7.80498 6.68497 7.75 6.3489 7.75 6C7.75 4.20507 9.20507 2.75 11 2.75C12.7145 2.75 14.1189 4.0776 14.2413 5.76087",stroke:"currentColor"})),P=a;export{a as IconPiggyBankCoin,P 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 d=\"M9.25 20.5H5.64013C1.41022 15.6897 0.881166 7.13793 7.63317 7.13793H12.5127C14.0336 5.90784 15.2485 5 17.2707 5C17.2707 8.02155 18.7587 9.65197 21.5 10.3448V15.1552C18.6399 15.8781 17 17.6103 17 20.5L13.25 20.5L12.75 18.8966L9.75 18.8966L9.25 20.5Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M17 10.75C17 11.3023 16.5523 11.75 16 11.75C15.4477 11.75 15 11.3023 15 10.75C15 10.1977 15.4477 9.75 16 9.75C16.5523 9.75 17 10.1977 17 10.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.90675 7C7.80498 6.68497 7.75 6.3489 7.75 6C7.75 4.20507 9.20507 2.75 11 2.75C12.7145 2.75 14.1189 4.0776 14.2413 5.76087\"\n stroke=\"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,EAAE,2PACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8HACF,OAAO,eACT,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 x=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var i=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!P.call(r,e)&&e!==t&&l(r,e,{get:()=>o[e],enumerable:!(s=B(o,e))||s.enumerable});return r};var c=(r,o,t)=>(t=r!=null?x(i(r)):{},C(o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>C(l({},"__esModule",{value:!0}),r);var b={};g(b,{IconUnblock:()=>u,default:()=>y});module.exports=v(b);var n=c(require("react"));var a=c(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...t})=>a.default.createElement(m.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),u=r=>n.default.createElement(f,{...r},n.default.createElement(p.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M5.5 18.5L10 14",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M14 10L18.5 5.5",stroke:"currentColor"})),y=u;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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconUnblock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <Path d=\"M5.5 18.5L10 14\" stroke=\"currentColor\" />\n <Path d=\"M14 10L18.5 5.5\" stroke=\"currentColor\" />\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,EAA6B,4BAEhBC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,OAAO,eAAe,EAChD,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,OAAO,eAAe,CAClD,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 o from"react";import l from"react";import{Svg as s}from"react-native-svg";var e=({children:t,size:r=24,...p})=>l.createElement(s,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as C,Path as n}from"react-native-svg";var c=t=>o.createElement(e,{...t},o.createElement(C,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),o.createElement(n,{d:"M5.5 18.5L10 14",stroke:"currentColor"}),o.createElement(n,{d:"M14 10L18.5 5.5",stroke:"currentColor"})),g=c;export{c as IconUnblock,g 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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconUnblock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <Path d=\"M5.5 18.5L10 14\" stroke=\"currentColor\" />\n <Path d=\"M14 10L18.5 5.5\" stroke=\"currentColor\" />\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtDI,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,OAAO,eAAe,EAChDG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,OAAO,eAAe,CAClD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","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=\"M18.4414 5.5586L5.46929 18.5307M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
6879
+ "svg": "<path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M18.4413 5.55859L5.46924 18.5307\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
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=\"M15.5 9.5H22.5V20.5H15.5V9.5Z\" stroke=\"currentColor\"/><path d=\"M13 19.5H1.5V17.5H13\" stroke=\"currentColor\"/><path d=\"M20.5 7V3.5H3.5V17.5\" stroke=\"currentColor\"/>",
9259
+ "svg": "<path d=\"M15.5 9.5H22.5V20.5H15.5V9.5Z\" stroke=\"currentColor\"/><path d=\"M13 19.5H1.5V17.5H13\" stroke=\"currentColor\"/><path d=\"M20.5 7V3.5H3.5V17.25\" stroke=\"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=\"M17.5 2.5L21.5 6.5\" stroke=\"currentColor\"/><path d=\"M19.5 4.5L16.5 7.5\" stroke=\"currentColor\"/><path d=\"M12.5 3.5L20.5 11.5\" stroke=\"currentColor\"/><path d=\"M14.5 5.5L5.5 14.5L9.5 18.5L18.5 9.5\" stroke=\"currentColor\"/><path d=\"M3 21L7.5 16.5\" stroke=\"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=\"M18 9.90692C19.1233 8.02609 18.8751 5.55427 17.2554 3.93459C15.3426 2.0218 12.2414 2.0218 10.3286 3.93459L3.93459 10.3286C2.0218 12.2414 2.0218 15.3426 3.93459 17.2554C5.55417 18.875 8.02564 19.123 9.90643 18\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M7.25 7.25L11 11\" stroke=\"currentColor\" stroke-linecap=\"square\"/><circle cx=\"15.5\" cy=\"15.5\" r=\"6\" stroke=\"currentColor\"/><path d=\"M16.5 21L14.5 10\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
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=\"M5.5 5.5L18.5 12\" stroke=\"currentColor\"/><ellipse cx=\"11.5\" cy=\"9\" rx=\"10\" ry=\"4.5\" stroke=\"currentColor\"/><path d=\"M1.5 9V15C1.5 17.4853 5.97715 19.5 11.5 19.5C17.0228 19.5 21.5 17.4853 21.5 15V9\" stroke=\"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=\"M12.2486 4.24959L4.24861 12.2496C2.17755 14.3207 2.17755 17.6785 4.24861 19.7496C6.31968 21.8207 9.67755 21.8207 11.7486 19.7496L19.7486 11.7496C21.8197 9.67852 21.8197 6.32066 19.7486 4.24959C17.6775 2.17852 14.3197 2.17852 12.2486 4.24959Z\" stroke=\"currentColor\"/><path d=\"M8.5 8.5L15.5 15.5\" stroke=\"currentColor\"/>",
16582
16582
  "iconName": "medicine-tablett, pill",
16583
16583
  "variant": {
@@ -18748,7 +18748,7 @@
18748
18748
  },
18749
18749
  {
18750
18750
  "category": "Things",
18751
- "svg": "<g clip-path=\"url(#clip0_9082_25720)\"><path d=\"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M11.668 11.4229L16.7513 20.2274\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/></g><defs><clipPath id=\"clip0_9082_25720\"><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs>",
18751
+ "svg": "<g clip-path=\"url(#clip0_15261_28203)\"><path d=\"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M11.6641 11.4229L16.7474 20.2274\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583\" stroke=\"currentColor\" stroke-linecap=\"square\"/></g><defs><clipPath id=\"clip0_15261_28203\"><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs>",
18752
18752
  "iconName": "parasol,umbrella,vacation",
18753
18753
  "variant": {
18754
18754
  "join": "square",
@@ -19502,6 +19502,20 @@
19502
19502
  "packageName": "square-outlined-radius-0-stroke-1",
19503
19503
  "componentName": "IconPiggyBank"
19504
19504
  },
19505
+ {
19506
+ "category": "Things",
19507
+ "svg": "<path d=\"M9.25 20.5H5.64013C1.41022 15.6897 0.881166 7.13793 7.63317 7.13793H12.5127C14.0336 5.90784 15.2485 5 17.2707 5C17.2707 8.02155 18.7587 9.65197 21.5 10.3448V15.1552C18.6399 15.8781 17 17.6103 17 20.5L13.25 20.5L12.75 18.8966L9.75 18.8966L9.25 20.5Z\" stroke=\"currentColor\"/><path d=\"M17 10.75C17 11.3023 16.5523 11.75 16 11.75C15.4477 11.75 15 11.3023 15 10.75C15 10.1977 15.4477 9.75 16 9.75C16.5523 9.75 17 10.1977 17 10.75Z\" fill=\"currentColor\"/><path d=\"M7.90675 7C7.80498 6.68497 7.75 6.3489 7.75 6C7.75 4.20507 9.20507 2.75 11 2.75C12.7145 2.75 14.1189 4.0776 14.2413 5.76087\" stroke=\"currentColor\"/>",
19508
+ "iconName": "piggy-bank-coin, money, cashback, savings",
19509
+ "variant": {
19510
+ "join": "square",
19511
+ "filled": "off",
19512
+ "radius": "0",
19513
+ "stroke": "1"
19514
+ },
19515
+ "createdAt": "2026-05-22T11:02:18.919122+00:00",
19516
+ "packageName": "square-outlined-radius-0-stroke-1",
19517
+ "componentName": "IconPiggyBankCoin"
19518
+ },
19505
19519
  {
19506
19520
  "category": "Things",
19507
19521
  "svg": "<path d=\"M6.34623 4.41419C5.965 3.86171 5.33002 3.5 4.61111 3.5C3.44518 3.5 2.5 4.45139 2.5 5.625C2.5 6.31388 2.82566 6.9262 3.33046 7.31449C2.92213 8.6933 2.5 10.485 2.5 12C2.5 13.515 2.92213 15.3067 3.33046 16.6855C2.82566 17.0738 2.5 17.6861 2.5 18.375C2.5 19.5486 3.44518 20.5 4.61111 20.5C5.32752 20.5 5.96058 20.1408 6.34224 19.5916C7.94824 20.0235 10.1413 20.5 12 20.5C13.8587 20.5 16.0518 20.0235 17.6578 19.5916C18.0395 20.1408 18.6725 20.5 19.3889 20.5C20.5549 20.5 21.5001 19.5486 21.5001 18.375C21.5001 17.6861 21.1744 17.0738 20.6695 16.6855C21.0779 15.3067 21.5 13.5149 21.5 12C21.5 10.485 21.0779 8.6933 20.6695 7.31449C21.1743 6.9262 21.5 6.31388 21.5 5.625C21.5 4.45139 20.5548 3.5 19.3889 3.5C18.67 3.5 18.035 3.86171 17.6538 4.41419C16.0337 3.98077 13.8253 3.5 12 3.5C10.1747 3.5 7.96627 3.98077 6.34623 4.41419Z\" stroke=\"currentColor\"/>",
@@ -26306,6 +26320,20 @@
26306
26320
  "packageName": "square-outlined-radius-0-stroke-1",
26307
26321
  "componentName": "IconUnarchiv"
26308
26322
  },
26323
+ {
26324
+ "category": "Interface General",
26325
+ "svg": "<circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><path d=\"M5.5 18.5L10 14\" stroke=\"currentColor\"/><path d=\"M14 10L18.5 5.5\" stroke=\"currentColor\"/>",
26326
+ "iconName": "unblock, unban",
26327
+ "variant": {
26328
+ "join": "square",
26329
+ "filled": "off",
26330
+ "radius": "0",
26331
+ "stroke": "1"
26332
+ },
26333
+ "createdAt": "2026-05-22T08:02:26.577334+00:00",
26334
+ "packageName": "square-outlined-radius-0-stroke-1",
26335
+ "componentName": "IconUnblock"
26336
+ },
26309
26337
  {
26310
26338
  "category": "Photography & Video",
26311
26339
  "svg": "<path d=\"M9.75 6.25C9.75 6.80228 9.30228 7.25 8.75 7.25C8.19772 7.25 7.75 6.80228 7.75 6.25C7.75 5.69772 8.19772 5.25 8.75 5.25C9.30228 5.25 9.75 5.69772 9.75 6.25Z\" fill=\"currentColor\"/><path d=\"M6.25 6.25C6.25 6.80228 5.80228 7.25 5.25 7.25C4.69772 7.25 4.25 6.80228 4.25 6.25C4.25 5.69772 4.69772 5.25 5.25 5.25C5.80228 5.25 6.25 5.69772 6.25 6.25Z\" fill=\"currentColor\"/><path d=\"M9.75 17.75C9.75 18.3023 9.30228 18.75 8.75 18.75C8.19772 18.75 7.75 18.3023 7.75 17.75C7.75 17.1977 8.19772 16.75 8.75 16.75C9.30228 16.75 9.75 17.1977 9.75 17.75Z\" fill=\"currentColor\"/><path d=\"M9.5 3.25C9.5 3.66421 9.16421 4 8.75 4C8.33579 4 8 3.66421 8 3.25C8 2.83579 8.33579 2.5 8.75 2.5C9.16421 2.5 9.5 2.83579 9.5 3.25Z\" fill=\"currentColor\"/><path d=\"M3.25 10C3.25 10.4142 2.91421 10.75 2.5 10.75C2.08579 10.75 1.75 10.4142 1.75 10C1.75 9.58579 2.08579 9.25 2.5 9.25C2.91421 9.25 3.25 9.58579 3.25 10Z\" fill=\"currentColor\"/><path d=\"M3.25 14C3.25 14.4142 2.91421 14.75 2.5 14.75C2.08579 14.75 1.75 14.4142 1.75 14C1.75 13.5858 2.08579 13.25 2.5 13.25C2.91421 13.25 3.25 13.5858 3.25 14Z\" fill=\"currentColor\"/><path d=\"M9.5 20.75C9.5 21.1642 9.16421 21.5 8.75 21.5C8.33579 21.5 8 21.1642 8 20.75C8 20.3358 8.33579 20 8.75 20C9.16421 20 9.5 20.3358 9.5 20.75Z\" fill=\"currentColor\"/><path d=\"M10.25 10C10.25 10.8284 9.57843 11.5 8.75 11.5C7.92157 11.5 7.25 10.8284 7.25 10C7.25 9.17157 7.92157 8.5 8.75 8.5C9.57843 8.5 10.25 9.17157 10.25 10Z\" fill=\"currentColor\"/><path d=\"M10.25 14C10.25 14.8284 9.57843 15.5 8.75 15.5C7.92157 15.5 7.25 14.8284 7.25 14C7.25 13.1716 7.92157 12.5 8.75 12.5C9.57843 12.5 10.25 13.1716 10.25 14Z\" fill=\"currentColor\"/><path d=\"M6.25 10C6.25 10.5523 5.80228 11 5.25 11C4.69772 11 4.25 10.5523 4.25 10C4.25 9.44772 4.69772 9 5.25 9C5.80228 9 6.25 9.44772 6.25 10Z\" fill=\"currentColor\"/><path d=\"M6.25 14C6.25 14.5523 5.80228 15 5.25 15C4.69772 15 4.25 14.5523 4.25 14C4.25 13.4477 4.69772 13 5.25 13C5.80228 13 6.25 13.4477 6.25 14Z\" fill=\"currentColor\"/><path d=\"M6.25 17.75C6.25 18.3023 5.80228 18.75 5.25 18.75C4.69772 18.75 4.25 18.3023 4.25 17.75C4.25 17.1977 4.69772 16.75 5.25 16.75C5.80228 16.75 6.25 17.1977 6.25 17.75Z\" fill=\"currentColor\"/><path d=\"M12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5V21.5Z\" stroke=\"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-outlined-radius-0-stroke-1",
3
- "version": "1.1.244",
3
+ "version": "1.1.246",
4
4
  "style": "square-outlined-radius-0-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-1/IconHome';",
@@ -11,7 +11,7 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 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";