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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,2 @@
1
- "use strict";var B=Object.create;var e=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var n in o)e(r,n,{get:o[n],enumerable:!0})},a=(r,o,n,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==n&&e(r,t,{get:()=>o[t],enumerable:!(l=u(o,t))||l.enumerable});return r};var m=(r,o,n)=>(n=r!=null?B(g(r)):{},a(o||!r||!r.__esModule?e(n,"default",{value:r,enumerable:!0}):n,r)),v=r=>a(e({},"__esModule",{value:!0}),r);var d={};P(d,{IconCircleBanSign:()=>i,default:()=>S});module.exports=v(d);var p=m(require("react"));var s=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...n})=>s.default.createElement(c.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Path,{d:"M2 12C2 6.47715 6.47715 2 12 2C14.4013 2 16.6049 2.84637 18.3287 4.25705L4.25705 18.3287C2.84637 16.6049 2 14.4013 2 12Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M5.67127 19.7429C7.39514 21.1536 9.59873 22 12 22C17.5228 22 22 17.5228 22 12C22 9.59873 21.1536 7.39514 19.7429 5.67127L5.67127 19.7429Z",fill:"currentColor"})),S=i;0&&(module.exports={IconCircleBanSign});
1
+ "use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!g.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(p=B(o,n))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(d(r)):{},l(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(t({},"__esModule",{value:!0}),r);var S={};v(S,{IconCircleBanSign:()=>i,default:()=>P});module.exports=x(S);var C=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:r,size:o=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>C.default.createElement(s,{...r},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C14.7611 2 17.2627 3.12016 19.0713 4.92871C20.8798 6.73726 22 9.23885 22 12C22 17.5228 17.5228 22 12 22C9.23885 22 6.73726 20.8798 4.92871 19.0713C3.12016 17.2627 2 14.7611 2 12C2 6.47715 6.47715 2 12 2ZM7.09473 18.3184C8.44997 19.3721 10.1507 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1507 19.3721 8.44997 18.3184 7.09473L7.09473 18.3184ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8488 4.6274 15.5492 5.68066 16.9043L16.9043 5.68066C15.5492 4.6274 13.8488 4 12 4Z",fill:"currentColor"})),P=i;0&&(module.exports={IconCircleBanSign});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2 12C2 6.47715 6.47715 2 12 2C14.4013 2 16.6049 2.84637 18.3287 4.25705L4.25705 18.3287C2.84637 16.6049 2 14.4013 2 12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.67127 19.7429C7.39514 21.1536 9.59873 22 12 22C17.5228 22 22 17.5228 22 12C22 9.59873 21.1536 7.39514 19.7429 5.67127L5.67127 19.7429Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4IACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCircleBanSign_exports","__export","IconCircleBanSign","IconCircleBanSign_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
1
+ {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C14.7611 2 17.2627 3.12016 19.0713 4.92871C20.8798 6.73726 22 9.23885 22 12C22 17.5228 17.5228 22 12 22C9.23885 22 6.73726 20.8798 4.92871 19.0713C3.12016 17.2627 2 14.7611 2 12C2 6.47715 6.47715 2 12 2ZM7.09473 18.3184C8.44997 19.3721 10.1507 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1507 19.3721 8.44997 18.3184 7.09473L7.09473 18.3184ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8488 4.6274 15.5492 5.68066 16.9043L16.9043 5.68066C15.5492 4.6274 13.8488 4 12 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kdACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCircleBanSign_exports","__export","IconCircleBanSign","IconCircleBanSign_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
@@ -1,2 +1,2 @@
1
- import n from"react";import C from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...p})=>C.createElement(l,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as e}from"react-native-svg";var a=o=>n.createElement(t,{...o},n.createElement(e,{d:"M2 12C2 6.47715 6.47715 2 12 2C14.4013 2 16.6049 2.84637 18.3287 4.25705L4.25705 18.3287C2.84637 16.6049 2 14.4013 2 12Z",fill:"currentColor"}),n.createElement(e,{d:"M5.67127 19.7429C7.39514 21.1536 9.59873 22 12 22C17.5228 22 22 17.5228 22 12C22 9.59873 21.1536 7.39514 19.7429 5.67127L5.67127 19.7429Z",fill:"currentColor"})),x=a;export{a as IconCircleBanSign,x as default};
1
+ import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...t})=>C.createElement(p,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as l}from"react-native-svg";var a=o=>n.createElement(e,{...o},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C14.7611 2 17.2627 3.12016 19.0713 4.92871C20.8798 6.73726 22 9.23885 22 12C22 17.5228 17.5228 22 12 22C9.23885 22 6.73726 20.8798 4.92871 19.0713C3.12016 17.2627 2 14.7611 2 12C2 6.47715 6.47715 2 12 2ZM7.09473 18.3184C8.44997 19.3721 10.1507 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1507 19.3721 8.44997 18.3184 7.09473L7.09473 18.3184ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8488 4.6274 15.5492 5.68066 16.9043L16.9043 5.68066C15.5492 4.6274 13.8488 4 12 4Z",fill:"currentColor"})),g=a;export{a as IconCircleBanSign,g as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2 12C2 6.47715 6.47715 2 12 2C14.4013 2 16.6049 2.84637 18.3287 4.25705L4.25705 18.3287C2.84637 16.6049 2 14.4013 2 12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.67127 19.7429C7.39514 21.1536 9.59873 22 12 22C17.5228 22 22 17.5228 22 12C22 9.59873 21.1536 7.39514 19.7429 5.67127L5.67127 19.7429Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4IACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
1
+ {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C14.7611 2 17.2627 3.12016 19.0713 4.92871C20.8798 6.73726 22 9.23885 22 12C22 17.5228 17.5228 22 12 22C9.23885 22 6.73726 20.8798 4.92871 19.0713C3.12016 17.2627 2 14.7611 2 12C2 6.47715 6.47715 2 12 2ZM7.09473 18.3184C8.44997 19.3721 10.1507 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1507 19.3721 8.44997 18.3184 7.09473L7.09473 18.3184ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8488 4.6274 15.5492 5.68066 16.9043L16.9043 5.68066C15.5492 4.6274 13.8488 4 12 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,kdACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var C=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!H.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(l=B(o,t))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(C({},"__esModule",{value:!0}),r);var V={};P(V,{IconDevices2:()=>i,default:()=>v});module.exports=g(V);var n=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...e})=>s.default.createElement(f.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(p.Path,{d:"M21 9C22.1046 9 23 9.89543 23 11V19C23 20.1046 22.1046 21 21 21H18C16.8954 21 16 20.1046 16 19V11C16 9.89543 16.8954 9 18 9H21Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M15 20H3C1.89543 20 1 19.1046 1 18C1 17.4477 1.44772 17 2 17H15V20Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M18 3C19.6569 3 21 4.34315 21 6V8H18C16.3431 8 15 9.34315 15 11V16H3V6C3 4.34315 4.34315 3 6 3H18Z",fill:"currentColor"})),v=i;0&&(module.exports={IconDevices2});
1
+ "use strict";var u=Object.create;var C=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!H.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(l=B(o,t))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),V=r=>a(C({},"__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 p=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(p.Path,{d:"M20 9C21.6569 9 23 10.3431 23 12V18C23 19.6569 21.6569 21 20 21H18C16.3431 21 15 19.6569 15 18V12C15 10.3431 16.3431 9 18 9H20Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M13 18C13 18.9111 13.2452 19.7644 13.6709 20.5H4C2.34315 20.5 1 19.1569 1 17.5V17C1 16.4477 1.44772 16 2 16H13V18Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M18 3C19.6569 3 21 4.34315 21 6V7.09961C20.6769 7.03403 20.3424 7 20 7H18C15.2386 7 13 9.23858 13 12V14H3V6C3 4.34315 4.34315 3 6 3H18Z",fill:"currentColor"})),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\n d=\"M21 9C22.1046 9 23 9.89543 23 11V19C23 20.1046 22.1046 21 21 21H18C16.8954 21 16 20.1046 16 19V11C16 9.89543 16.8954 9 18 9H21Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15 20H3C1.89543 20 1 19.1046 1 18C1 17.4477 1.44772 17 2 17H15V20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 3C19.6569 3 21 4.34315 21 6V8H18C16.3431 8 15 9.34315 15 11V16H3V6C3 4.34315 4.34315 3 6 3H18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDevices2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sEACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconDevices2_exports","__export","IconDevices2","IconDevices2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDevices2","props","React","CentralIconBase","IconDevices2_default"]}
1
+ {"version":3,"sources":["../src/IconDevices2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconDevices2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 9C21.6569 9 23 10.3431 23 12V18C23 19.6569 21.6569 21 20 21H18C16.3431 21 15 19.6569 15 18V12C15 10.3431 16.3431 9 18 9H20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13 18C13 18.9111 13.2452 19.7644 13.6709 20.5H4C2.34315 20.5 1 19.1569 1 17.5V17C1 16.4477 1.44772 16 2 16H13V18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 3C19.6569 3 21 4.34315 21 6V7.09961C20.6769 7.03403 20.3424 7 20 7H18C15.2386 7 13 9.23858 13 12V14H3V6C3 4.34315 4.34315 3 6 3H18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDevices2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0IACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconDevices2_exports","__export","IconDevices2","IconDevices2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDevices2","props","React","CentralIconBase","IconDevices2_default"]}
@@ -1,2 +1,2 @@
1
- import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:e,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M21 9C22.1046 9 23 9.89543 23 11V19C23 20.1046 22.1046 21 21 21H18C16.8954 21 16 20.1046 16 19V11C16 9.89543 16.8954 9 18 9H21Z",fill:"currentColor"}),o.createElement(t,{d:"M15 20H3C1.89543 20 1 19.1046 1 18C1 17.4477 1.44772 17 2 17H15V20Z",fill:"currentColor"}),o.createElement(t,{d:"M18 3C19.6569 3 21 4.34315 21 6V8H18C16.3431 8 15 9.34315 15 11V16H3V6C3 4.34315 4.34315 3 6 3H18Z",fill:"currentColor"})),H=a;export{a as IconDevices2,H as default};
1
+ import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:e,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M20 9C21.6569 9 23 10.3431 23 12V18C23 19.6569 21.6569 21 20 21H18C16.3431 21 15 19.6569 15 18V12C15 10.3431 16.3431 9 18 9H20Z",fill:"currentColor"}),o.createElement(t,{d:"M13 18C13 18.9111 13.2452 19.7644 13.6709 20.5H4C2.34315 20.5 1 19.1569 1 17.5V17C1 16.4477 1.44772 16 2 16H13V18Z",fill:"currentColor"}),o.createElement(t,{d:"M18 3C19.6569 3 21 4.34315 21 6V7.09961C20.6769 7.03403 20.3424 7 20 7H18C15.2386 7 13 9.23858 13 12V14H3V6C3 4.34315 4.34315 3 6 3H18Z",fill:"currentColor"})),H=a;export{a as IconDevices2,H as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconDevices2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconDevices2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 9C22.1046 9 23 9.89543 23 11V19C23 20.1046 22.1046 21 21 21H18C16.8954 21 16 20.1046 16 19V11C16 9.89543 16.8954 9 18 9H21Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15 20H3C1.89543 20 1 19.1046 1 18C1 17.4477 1.44772 17 2 17H15V20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 3C19.6569 3 21 4.34315 21 6V8H18C16.3431 8 15 9.34315 15 11V16H3V6C3 4.34315 4.34315 3 6 3H18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDevices2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sEACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qGACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDevices2","props","React","CentralIconBase","IconDevices2_default"]}
1
+ {"version":3,"sources":["../src/IconDevices2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconDevices2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 9C21.6569 9 23 10.3431 23 12V18C23 19.6569 21.6569 21 20 21H18C16.3431 21 15 19.6569 15 18V12C15 10.3431 16.3431 9 18 9H20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13 18C13 18.9111 13.2452 19.7644 13.6709 20.5H4C2.34315 20.5 1 19.1569 1 17.5V17C1 16.4477 1.44772 16 2 16H13V18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 3C19.6569 3 21 4.34315 21 6V7.09961C20.6769 7.03403 20.3424 7 20 7H18C15.2386 7 13 9.23858 13 12V14H3V6C3 4.34315 4.34315 3 6 3H18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDevices2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kIACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qHACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0IACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDevices2","props","React","CentralIconBase","IconDevices2_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0})},a=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==C&&l(r,t,{get:()=>o[t],enumerable:!(p=B(o,t))||p.enumerable});return r};var f=(r,o,C)=>(C=r!=null?u(P(r)):{},a(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),g=r=>a(l({},"__esModule",{value:!0}),r);var h={};d(h,{IconParasol:()=>i,default:()=>v});module.exports=g(h);var n=f(require("react"));var m=f(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...C})=>m.default.createElement(s.Svg,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var e=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(e.Path,{d:"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M4.76941 5.08691C1.77398 8.21571 1.0626 13.0606 3.33751 17.0009C3.7092 17.6447 4.62845 17.6722 5.03805 17.0519C5.73704 15.9932 6.57339 15.3094 7.43963 14.978C6.31937 12.663 5.50497 10.0893 5.08725 7.8683C4.90063 6.87609 4.78812 5.92805 4.76941 5.08691Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z",fill:"currentColor"})),v=i;0&&(module.exports={IconParasol});
1
+ "use strict";var u=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0})},a=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==C&&l(r,t,{get:()=>o[t],enumerable:!(p=B(o,t))||p.enumerable});return r};var f=(r,o,C)=>(C=r!=null?u(P(r)):{},a(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),g=r=>a(l({},"__esModule",{value:!0}),r);var h={};d(h,{IconParasol:()=>i,default:()=>v});module.exports=g(h);var n=f(require("react"));var m=f(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...C})=>m.default.createElement(s.Svg,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var e=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(e.Path,{d:"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M4.77331 5.08691C1.77789 8.21571 1.06651 13.0606 3.34142 17.0009C3.71311 17.6447 4.63236 17.6722 5.04195 17.0519C5.74095 15.9932 6.5773 15.3094 7.44354 14.978C6.32328 12.663 5.50888 10.0893 5.09115 7.8683C4.90454 6.87609 4.79202 5.92805 4.77331 5.08691Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z",fill:"currentColor"})),v=i;0&&(module.exports={IconParasol});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.76941 5.08691C1.77398 8.21571 1.0626 13.0606 3.33751 17.0009C3.7092 17.6447 4.62845 17.6722 5.03805 17.0519C5.73704 15.9932 6.57339 15.3094 7.43963 14.978C6.31937 12.663 5.50497 10.0893 5.08725 7.8683C4.90063 6.87609 4.78812 5.92805 4.76941 5.08691Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,klBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+PACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2PACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kPACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconParasol_exports","__export","IconParasol","IconParasol_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
1
+ {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.77331 5.08691C1.77789 8.21571 1.06651 13.0606 3.34142 17.0009C3.71311 17.6447 4.63236 17.6722 5.04195 17.0519C5.74095 15.9932 6.5773 15.3094 7.44354 14.978C6.32328 12.663 5.50888 10.0893 5.09115 7.8683C4.90454 6.87609 4.79202 5.92805 4.77331 5.08691Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,klBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gQACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2PACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kPACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconParasol_exports","__export","IconParasol","IconParasol_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
@@ -1,2 +1,2 @@
1
- import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...e})=>l.createElement(p,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as C}from"react-native-svg";var a=n=>o.createElement(t,{...n},o.createElement(C,{d:"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z",fill:"currentColor"}),o.createElement(C,{d:"M4.76941 5.08691C1.77398 8.21571 1.0626 13.0606 3.33751 17.0009C3.7092 17.6447 4.62845 17.6722 5.03805 17.0519C5.73704 15.9932 6.57339 15.3094 7.43963 14.978C6.31937 12.663 5.50497 10.0893 5.08725 7.8683C4.90063 6.87609 4.78812 5.92805 4.76941 5.08691Z",fill:"currentColor"}),o.createElement(C,{d:"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z",fill:"currentColor"}),o.createElement(C,{d:"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z",fill:"currentColor"})),x=a;export{a as IconParasol,x as default};
1
+ import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...e})=>l.createElement(p,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as C}from"react-native-svg";var a=n=>o.createElement(t,{...n},o.createElement(C,{d:"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z",fill:"currentColor"}),o.createElement(C,{d:"M4.77331 5.08691C1.77789 8.21571 1.06651 13.0606 3.34142 17.0009C3.71311 17.6447 4.63236 17.6722 5.04195 17.0519C5.74095 15.9932 6.5773 15.3094 7.44354 14.978C6.32328 12.663 5.50888 10.0893 5.09115 7.8683C4.90454 6.87609 4.79202 5.92805 4.77331 5.08691Z",fill:"currentColor"}),o.createElement(C,{d:"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z",fill:"currentColor"}),o.createElement(C,{d:"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z",fill:"currentColor"})),x=a;export{a as IconParasol,x as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.76941 5.08691C1.77398 8.21571 1.0626 13.0606 3.33751 17.0009C3.7092 17.6447 4.62845 17.6722 5.03805 17.0519C5.73704 15.9932 6.57339 15.3094 7.43963 14.978C6.31937 12.663 5.50497 10.0893 5.08725 7.8683C4.90063 6.87609 4.78812 5.92805 4.76941 5.08691Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,klBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+PACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2PACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kPACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
1
+ {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.77331 5.08691C1.77789 8.21571 1.06651 13.0606 3.34142 17.0009C3.71311 17.6447 4.63236 17.6722 5.04195 17.0519C5.74095 15.9932 6.5773 15.3094 7.44354 14.978C6.32328 12.663 5.50888 10.0893 5.09115 7.8683C4.90454 6.87609 4.79202 5.92805 4.77331 5.08691Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,klBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gQACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2PACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kPACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconUnblock: FC<CentralIconBaseProps>;
4
+ export default IconUnblock;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of I(r))!v.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(p=B(r,n))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(t({},"__esModule",{value:!0}),o);var b={};x(b,{IconUnblock:()=>i,default:()=>g});module.exports=P(b);var C=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:o,size:r=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>C.default.createElement(s,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8484 4.62892 15.5488 5.68164 16.9033L8.79297 13.793C9.18349 13.4024 9.81651 13.4024 10.207 13.793C10.5976 14.1835 10.5976 14.8165 10.207 15.207L7.0957 18.3174C8.45045 19.3706 10.1511 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1511 19.3706 8.45045 18.3174 7.0957L15.207 10.207C14.8165 10.5976 14.1835 10.5976 13.793 10.207C13.4024 9.81651 13.4024 9.18349 13.793 8.79297L16.9033 5.68164C15.5488 4.62892 13.8484 4 12 4Z",fill:"currentColor"})),g=i;0&&(module.exports={IconUnblock});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconUnblock/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconUnblock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8484 4.62892 15.5488 5.68164 16.9033L8.79297 13.793C9.18349 13.4024 9.81651 13.4024 10.207 13.793C10.5976 14.1835 10.5976 14.8165 10.207 15.207L7.0957 18.3174C8.45045 19.3706 10.1511 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1511 19.3706 8.45045 18.3174 7.0957L15.207 10.207C14.8165 10.5976 14.1835 10.5976 13.793 10.207C13.4024 9.81651 13.4024 9.18349 13.793 8.79297L16.9033 5.68164C15.5488 4.62892 13.8484 4 12 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnblock;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ujBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconUnblock_exports","__export","IconUnblock","IconUnblock_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconUnblock","props","React","CentralIconBase","IconUnblock_default"]}
@@ -0,0 +1,2 @@
1
+ import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>C.createElement(p,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>n.createElement(e,{...r},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8484 4.62892 15.5488 5.68164 16.9033L8.79297 13.793C9.18349 13.4024 9.81651 13.4024 10.207 13.793C10.5976 14.1835 10.5976 14.8165 10.207 15.207L7.0957 18.3174C8.45045 19.3706 10.1511 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1511 19.3706 8.45045 18.3174 7.0957L15.207 10.207C14.8165 10.5976 14.1835 10.5976 13.793 10.207C13.4024 9.81651 13.4024 9.18349 13.793 8.79297L16.9033 5.68164C15.5488 4.62892 13.8484 4 12 4Z",fill:"currentColor"})),v=a;export{a as IconUnblock,v as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconUnblock/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconUnblock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8484 4.62892 15.5488 5.68164 16.9033L8.79297 13.793C9.18349 13.4024 9.81651 13.4024 10.207 13.793C10.5976 14.1835 10.5976 14.8165 10.207 15.207L7.0957 18.3174C8.45045 19.3706 10.1511 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1511 19.3706 8.45045 18.3174 7.0957L15.207 10.207C14.8165 10.5976 14.1835 10.5976 13.793 10.207C13.4024 9.81651 13.4024 9.18349 13.793 8.79297L16.9033 5.68164C15.5488 4.62892 13.8484 4 12 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnblock;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,ujBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconUnblock","props","React","CentralIconBase","IconUnblock_default"]}
package/README.md CHANGED
@@ -1065,10 +1065,14 @@ Below is a complete list of available icons:
1065
1065
 
1066
1066
  ### Health & Medical
1067
1067
 
1068
+ - IconInjection
1068
1069
  - IconMask1
1069
1070
  - IconMedicalCross
1070
1071
  - IconMedicalCrossCircle
1071
1072
  - IconMedicalCrossSquare
1073
+ - IconMedicinePill
1074
+ - IconMedicinePill2
1075
+ - IconMedicineTablett
1072
1076
 
1073
1077
  ### Interface General
1074
1078
 
@@ -1262,6 +1266,7 @@ Below is a complete list of available icons:
1262
1266
  - IconTrashRounded
1263
1267
  - IconTrial
1264
1268
  - IconUnarchiv
1269
+ - IconUnblock
1265
1270
  - IconUnpin
1266
1271
  - IconUnpin2
1267
1272
  - IconUntrash
@@ -1992,7 +1997,6 @@ Below is a complete list of available icons:
1992
1997
  - IconGraduateCap2
1993
1998
  - IconHermesHelmet
1994
1999
  - IconInfinity
1995
- - IconInjection
1996
2000
  - IconJudgeGavel
1997
2001
  - IconLab
1998
2002
  - IconLifeVest
@@ -2001,9 +2005,6 @@ Below is a complete list of available icons:
2001
2005
  - IconMagicLamp
2002
2006
  - IconMakeItPop
2003
2007
  - IconMedal
2004
- - IconMedicinePill
2005
- - IconMedicinePill2
2006
- - IconMedicineTablett
2007
2008
  - IconMouth
2008
2009
  - IconNailedIt
2009
2010
  - IconOrganisation
@@ -6876,7 +6876,7 @@
6876
6876
  },
6877
6877
  {
6878
6878
  "category": "Interface General",
6879
- "svg": "<path d=\"M2 12C2 6.47715 6.47715 2 12 2C14.4013 2 16.6049 2.84637 18.3287 4.25705L4.25705 18.3287C2.84637 16.6049 2 14.4013 2 12Z\" fill=\"currentColor\"/><path d=\"M5.67127 19.7429C7.39514 21.1536 9.59873 22 12 22C17.5228 22 22 17.5228 22 12C22 9.59873 21.1536 7.39514 19.7429 5.67127L5.67127 19.7429Z\" fill=\"currentColor\"/>",
6879
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C14.7611 2 17.2627 3.12016 19.0713 4.92871C20.8798 6.73726 22 9.23885 22 12C22 17.5228 17.5228 22 12 22C9.23885 22 6.73726 20.8798 4.92871 19.0713C3.12016 17.2627 2 14.7611 2 12C2 6.47715 6.47715 2 12 2ZM7.09473 18.3184C8.44997 19.3721 10.1507 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1507 19.3721 8.44997 18.3184 7.09473L7.09473 18.3184ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8488 4.6274 15.5492 5.68066 16.9043L16.9043 5.68066C15.5492 4.6274 13.8488 4 12 4Z\" fill=\"currentColor\"/>",
6880
6880
  "iconName": "circle-ban-sign, circle, block, ads",
6881
6881
  "variant": {
6882
6882
  "join": "round",
@@ -9256,7 +9256,7 @@
9256
9256
  },
9257
9257
  {
9258
9258
  "category": "Devices & Signals",
9259
- "svg": "<path d=\"M21 9C22.1046 9 23 9.89543 23 11V19C23 20.1046 22.1046 21 21 21H18C16.8954 21 16 20.1046 16 19V11C16 9.89543 16.8954 9 18 9H21Z\" fill=\"currentColor\"/><path d=\"M15 20H3C1.89543 20 1 19.1046 1 18C1 17.4477 1.44772 17 2 17H15V20Z\" fill=\"currentColor\"/><path d=\"M18 3C19.6569 3 21 4.34315 21 6V8H18C16.3431 8 15 9.34315 15 11V16H3V6C3 4.34315 4.34315 3 6 3H18Z\" fill=\"currentColor\"/>",
9259
+ "svg": "<path d=\"M20 9C21.6569 9 23 10.3431 23 12V18C23 19.6569 21.6569 21 20 21H18C16.3431 21 15 19.6569 15 18V12C15 10.3431 16.3431 9 18 9H20Z\" fill=\"currentColor\"/><path d=\"M13 18C13 18.9111 13.2452 19.7644 13.6709 20.5H4C2.34315 20.5 1 19.1569 1 17.5V17C1 16.4477 1.44772 16 2 16H13V18Z\" fill=\"currentColor\"/><path d=\"M18 3C19.6569 3 21 4.34315 21 6V7.09961C20.6769 7.03403 20.3424 7 20 7H18C15.2386 7 13 9.23858 13 12V14H3V6C3 4.34315 4.34315 3 6 3H18Z\" fill=\"currentColor\"/>",
9260
9260
  "iconName": "devices-2, laptop-phone",
9261
9261
  "variant": {
9262
9262
  "join": "round",
@@ -14589,7 +14589,7 @@
14589
14589
  "componentName": "IconInitiatives"
14590
14590
  },
14591
14591
  {
14592
- "category": "Things",
14592
+ "category": "Health & Medical",
14593
14593
  "svg": "<path d=\"M17.2929 2.29273C17.659 1.92662 18.238 1.90402 18.6307 2.22437L18.7069 2.29273L21.7069 5.29273L21.7753 5.36891C22.0955 5.76168 22.073 6.34074 21.7069 6.7068C21.3408 7.07279 20.7618 7.09535 20.369 6.77516L20.2929 6.7068L19.4999 5.91383L17.9139 7.49977L20.7069 10.2927L20.7753 10.3689C21.0955 10.7617 21.073 11.3407 20.7069 11.7068C20.3408 12.0728 19.7618 12.0953 19.369 11.7752L19.2929 11.7068L18.4999 10.9138L11.621 17.7927C10.4899 18.9234 8.68069 18.9626 7.50281 17.9099L3.70692 21.7068C3.31644 22.0972 2.68336 22.0971 2.29285 21.7068C1.90236 21.3163 1.90241 20.6833 2.29285 20.2927L6.08875 16.4959C5.03709 15.318 5.07654 13.5094 6.20692 12.3787L13.0858 5.49977L12.2929 4.7068L12.2245 4.63063C11.9042 4.23788 11.9268 3.65885 12.2929 3.29273C12.659 2.92662 13.238 2.90402 13.6307 3.22438L13.7069 3.29273L16.4999 6.0857L18.0858 4.49977L17.2929 3.7068L17.2245 3.63063C16.9042 3.23788 16.9268 2.65885 17.2929 2.29273Z\" fill=\"currentColor\"/>",
14594
14594
  "iconName": "injection",
14595
14595
  "variant": {
@@ -16549,7 +16549,7 @@
16549
16549
  "componentName": "IconMedicalCrossSquare"
16550
16550
  },
16551
16551
  {
16552
- "category": "Things",
16552
+ "category": "Health & Medical",
16553
16553
  "svg": "<path d=\"M17.4789 3.63124C15.3039 1.45625 11.7775 1.45625 9.60252 3.63124L7.3206 5.91316L10.2945 8.88704C11.7349 7.75024 13.5538 7.0718 15.5311 7.0718C16.8073 7.0718 18.0174 7.35438 19.1024 7.86039C19.1817 6.33986 18.6407 4.79313 17.4789 3.63124Z\" fill=\"currentColor\"/><path d=\"M8.88704 10.2945L5.91316 7.3206L3.63124 9.60252C1.45625 11.7775 1.45625 15.3039 3.63124 17.4789C4.79313 18.6407 6.33986 19.1817 7.86039 19.1024C7.35438 18.0174 7.0718 16.8073 7.0718 15.5311C7.0718 13.5538 7.75024 11.7349 8.88704 10.2945Z\" fill=\"currentColor\"/><path d=\"M13.3013 9.4568C10.8273 10.3653 9.06223 12.7421 9.06223 15.5311C9.06223 19.1038 11.9584 22 15.5311 22C15.6241 22 15.7167 21.998 15.8088 21.9941L13.3013 9.4568Z\" fill=\"currentColor\"/><path d=\"M17.7609 21.6054C20.2349 20.697 22 18.3202 22 15.5311C22 11.9584 19.1038 9.06223 15.5311 9.06223C15.4381 9.06223 15.3455 9.06419 15.2534 9.06808L17.7609 21.6054Z\" fill=\"currentColor\"/>",
16554
16554
  "iconName": "medicine-pill",
16555
16555
  "variant": {
@@ -16563,7 +16563,7 @@
16563
16563
  "componentName": "IconMedicinePill"
16564
16564
  },
16565
16565
  {
16566
- "category": "Things",
16566
+ "category": "Health & Medical",
16567
16567
  "svg": "<path d=\"M20.1241 11.944C20.4338 11.7351 20.7144 11.5091 20.9589 11.2657C21.5641 10.6633 22 9.89682 22 9C22 8.10318 21.5641 7.33672 20.9589 6.73431C20.3576 6.1357 19.5381 5.6426 18.6056 5.24994C16.7364 4.4629 14.2235 4 11.5 4C9.39621 4 7.41816 4.2762 5.76535 4.76464L20.1241 11.944Z\" fill=\"currentColor\"/><path d=\"M3.32097 5.77852C2.83208 6.06062 2.39811 6.37887 2.04105 6.73431C1.43591 7.33672 1 8.10318 1 9C1 9.89682 1.43591 10.6633 2.04105 11.2657C2.64239 11.8643 3.46186 12.3574 4.39443 12.7501C6.26364 13.5371 8.77646 14 11.5 14C13.8694 14 16.0793 13.6497 17.8446 13.0404L3.32097 5.77852Z\" fill=\"currentColor\"/><path d=\"M1 13.0255C1.77435 13.693 2.69212 14.2034 3.61831 14.5933C5.78764 15.5067 8.57611 16 11.5 16C14.4239 16 17.2124 15.5067 19.3817 14.5933C20.3079 14.2034 21.2257 13.693 22 13.0255V15.0001C22 15.8969 21.5641 16.6633 20.9589 17.2657C20.3576 17.8644 19.5381 18.3575 18.6056 18.7501C16.7364 19.5371 14.2235 20 11.5 20C8.77646 20 6.26364 19.5371 4.39443 18.7501C3.46186 18.3575 2.64239 17.8644 2.04105 17.2657C1.43591 16.6633 1 15.8969 1 15.0001V13.0255Z\" fill=\"currentColor\"/>",
16568
16568
  "iconName": "medicine-pill-2, tablett",
16569
16569
  "variant": {
@@ -16577,7 +16577,7 @@
16577
16577
  "componentName": "IconMedicinePill2"
16578
16578
  },
16579
16579
  {
16580
- "category": "Things",
16580
+ "category": "Health & Medical",
16581
16581
  "svg": "<path d=\"M11.0415 4.04346C13.5031 1.58187 17.4941 1.58187 19.9557 4.04346C22.4173 6.50505 22.4173 10.4961 19.9557 12.9577L17.1628 15.7506L8.24861 6.83635L11.0415 4.04346Z\" fill=\"currentColor\"/><path d=\"M6.8344 8.25057L4.04151 11.0435C1.57991 13.5051 1.57991 17.4961 4.04151 19.9577C6.5031 22.4193 10.4941 22.4193 12.9557 19.9577L15.7486 17.1648L6.8344 8.25057Z\" fill=\"currentColor\"/>",
16582
16582
  "iconName": "medicine-tablett, pill",
16583
16583
  "variant": {
@@ -18748,7 +18748,7 @@
18748
18748
  },
18749
18749
  {
18750
18750
  "category": "Things",
18751
- "svg": "<path d=\"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\" fill=\"currentColor\"/><path d=\"M4.76941 5.08691C1.77398 8.21571 1.0626 13.0606 3.33751 17.0009C3.7092 17.6447 4.62845 17.6722 5.03805 17.0519C5.73704 15.9932 6.57339 15.3094 7.43963 14.978C6.31937 12.663 5.50497 10.0893 5.08725 7.8683C4.90063 6.87609 4.78812 5.92805 4.76941 5.08691Z\" fill=\"currentColor\"/><path d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\" fill=\"currentColor\"/><path d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\" fill=\"currentColor\"/>",
18751
+ "svg": "<path d=\"M10.1121 13.4942C9.83968 13.7237 9.56313 13.9721 9.29949 14.2312C8.23359 12.0613 7.44796 9.60503 7.05182 7.49879C6.81403 6.23445 6.72604 5.14516 6.7818 4.34752C6.80978 3.94731 6.87122 3.66409 6.94085 3.48312C6.96597 3.41782 6.98789 3.37644 7.00314 3.35176C7.03214 3.35089 7.07893 3.35261 7.14805 3.3635C7.33958 3.39368 7.61558 3.48209 7.97616 3.65796C8.69481 4.00849 9.59418 4.62933 10.5702 5.46744C12.1962 6.86362 13.9306 8.77213 15.2768 10.7802C14.9206 10.8789 14.5673 10.9943 14.2322 11.1154C13.3983 11.4171 12.6021 11.7828 12.0536 12.0995C11.5052 12.4161 10.7903 12.9228 10.1121 13.4942Z\" fill=\"currentColor\"/><path d=\"M4.77331 5.08691C1.77789 8.21571 1.06651 13.0606 3.34142 17.0009C3.71311 17.6447 4.63236 17.6722 5.04195 17.0519C5.74095 15.9932 6.5773 15.3094 7.44354 14.978C6.32328 12.663 5.50888 10.0893 5.09115 7.8683C4.90454 6.87609 4.79202 5.92805 4.77331 5.08691Z\" fill=\"currentColor\"/><path d=\"M9.625 2.28377C10.3441 2.72054 11.1089 3.292 11.8748 3.94972C13.5894 5.422 15.4111 7.41411 16.8558 9.54179C17.5759 8.95728 18.5863 8.57489 19.8526 8.4989C20.5947 8.45437 21.0304 7.64448 20.6587 7.00069C18.3838 3.06044 13.8323 1.25405 9.625 2.28377Z\" fill=\"currentColor\"/><path d=\"M13.9508 13.3838C13.5962 13.5416 13.2869 13.6974 13.0546 13.8315C12.8224 13.9656 12.5328 14.1556 12.2188 14.3838L15.6318 20.2953C15.9079 20.7736 16.5195 20.9375 16.9978 20.6613C17.4761 20.3852 17.64 19.7736 17.3638 19.2953L13.9508 13.3838Z\" fill=\"currentColor\"/>",
18752
18752
  "iconName": "parasol,umbrella,vacation",
18753
18753
  "variant": {
18754
18754
  "join": "round",
@@ -26306,6 +26306,20 @@
26306
26306
  "packageName": "round-filled-radius-2-stroke-2",
26307
26307
  "componentName": "IconUnarchiv"
26308
26308
  },
26309
+ {
26310
+ "category": "Interface General",
26311
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 4C7.58172 4 4 7.58172 4 12C4 13.8484 4.62892 15.5488 5.68164 16.9033L8.79297 13.793C9.18349 13.4024 9.81651 13.4024 10.207 13.793C10.5976 14.1835 10.5976 14.8165 10.207 15.207L7.0957 18.3174C8.45045 19.3706 10.1511 20 12 20C16.4183 20 20 16.4183 20 12C20 10.1511 19.3706 8.45045 18.3174 7.0957L15.207 10.207C14.8165 10.5976 14.1835 10.5976 13.793 10.207C13.4024 9.81651 13.4024 9.18349 13.793 8.79297L16.9033 5.68164C15.5488 4.62892 13.8484 4 12 4Z\" fill=\"currentColor\"/>",
26312
+ "iconName": "unblock, unban",
26313
+ "variant": {
26314
+ "join": "round",
26315
+ "filled": "on",
26316
+ "radius": "2",
26317
+ "stroke": "2"
26318
+ },
26319
+ "createdAt": "2026-05-22T08:02:26.577334+00:00",
26320
+ "packageName": "round-filled-radius-2-stroke-2",
26321
+ "componentName": "IconUnblock"
26322
+ },
26309
26323
  {
26310
26324
  "category": "Photography & Video",
26311
26325
  "svg": "<path d=\"M9.5 6.25C9.5 6.80228 9.05228 7.25 8.5 7.25C7.94772 7.25 7.5 6.80228 7.5 6.25C7.5 5.69772 7.94772 5.25 8.5 5.25C9.05228 5.25 9.5 5.69772 9.5 6.25Z\" fill=\"currentColor\"/><path d=\"M6 6.25C6 6.80228 5.55228 7.25 5 7.25C4.44772 7.25 4 6.80228 4 6.25C4 5.69772 4.44772 5.25 5 5.25C5.55228 5.25 6 5.69772 6 6.25Z\" fill=\"currentColor\"/><path d=\"M9.5 17.75C9.5 18.3023 9.05228 18.75 8.5 18.75C7.94772 18.75 7.5 18.3023 7.5 17.75C7.5 17.1977 7.94772 16.75 8.5 16.75C9.05228 16.75 9.5 17.1977 9.5 17.75Z\" fill=\"currentColor\"/><path d=\"M9.25 3.25C9.25 3.66421 8.91421 4 8.5 4C8.08579 4 7.75 3.66421 7.75 3.25C7.75 2.83579 8.08579 2.5 8.5 2.5C8.91421 2.5 9.25 2.83579 9.25 3.25Z\" fill=\"currentColor\"/><path d=\"M3 10C3 10.4142 2.66421 10.75 2.25 10.75C1.83579 10.75 1.5 10.4142 1.5 10C1.5 9.58579 1.83579 9.25 2.25 9.25C2.66421 9.25 3 9.58579 3 10Z\" fill=\"currentColor\"/><path d=\"M3 14C3 14.4142 2.66421 14.75 2.25 14.75C1.83579 14.75 1.5 14.4142 1.5 14C1.5 13.5858 1.83579 13.25 2.25 13.25C2.66421 13.25 3 13.5858 3 14Z\" fill=\"currentColor\"/><path d=\"M9.25 20.75C9.25 21.1642 8.91421 21.5 8.5 21.5C8.08579 21.5 7.75 21.1642 7.75 20.75C7.75 20.3358 8.08579 20 8.5 20C8.91421 20 9.25 20.3358 9.25 20.75Z\" fill=\"currentColor\"/><path d=\"M10 10C10 10.8284 9.32843 11.5 8.5 11.5C7.67157 11.5 7 10.8284 7 10C7 9.17157 7.67157 8.5 8.5 8.5C9.32843 8.5 10 9.17157 10 10Z\" fill=\"currentColor\"/><path d=\"M10 14C10 14.8284 9.32843 15.5 8.5 15.5C7.67157 15.5 7 14.8284 7 14C7 13.1716 7.67157 12.5 8.5 12.5C9.32843 12.5 10 13.1716 10 14Z\" fill=\"currentColor\"/><path d=\"M6 10C6 10.5523 5.55228 11 5 11C4.44772 11 4 10.5523 4 10C4 9.44772 4.44772 9 5 9C5.55228 9 6 9.44772 6 10Z\" fill=\"currentColor\"/><path d=\"M6 14C6 14.5523 5.55228 15 5 15C4.44772 15 4 14.5523 4 14C4 13.4477 4.44772 13 5 13C5.55228 13 6 13.4477 6 14Z\" fill=\"currentColor\"/><path d=\"M6 17.75C6 18.3023 5.55228 18.75 5 18.75C4.44772 18.75 4 18.3023 4 17.75C4 17.1977 4.44772 16.75 5 16.75C5.55228 16.75 6 17.1977 6 17.75Z\" fill=\"currentColor\"/><path d=\"M12 2C11.4477 2 11 2.44772 11 3V21C11 21.5523 11.4477 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -1878,6 +1878,7 @@ export type CentralIconName =
1878
1878
  | "IconUfo"
1879
1879
  | "IconUmbrellaSecurity"
1880
1880
  | "IconUnarchiv"
1881
+ | "IconUnblock"
1881
1882
  | "IconUnblur"
1882
1883
  | "IconUnderline"
1883
1884
  | "IconUnicorn"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-2-stroke-2",
3
- "version": "1.1.244",
3
+ "version": "1.1.245",
4
4
  "style": "round-filled-radius-2-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-2-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": 2013,
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": 137,
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",
@@ -4097,6 +4098,7 @@
4097
4098
  "IconUfo": "ufo, beam",
4098
4099
  "IconUmbrellaSecurity": "umbrella-security",
4099
4100
  "IconUnarchiv": "unarchiv, unbox",
4101
+ "IconUnblock": "unblock, unban",
4100
4102
  "IconUnblur": "unblur",
4101
4103
  "IconUnderline": "underline",
4102
4104
  "IconUnicorn": "unicorn, startup, success",
package/index.d.ts CHANGED
@@ -1877,6 +1877,7 @@ export { IconTypescript, default as IconTypescriptDefault, } from "./IconTypescr
1877
1877
  export { IconUfo, default as IconUfoDefault } from "./IconUfo";
1878
1878
  export { IconUmbrellaSecurity, default as IconUmbrellaSecurityDefault, } from "./IconUmbrellaSecurity";
1879
1879
  export { IconUnarchiv, default as IconUnarchivDefault } from "./IconUnarchiv";
1880
+ export { IconUnblock, default as IconUnblockDefault } from "./IconUnblock";
1880
1881
  export { IconUnblur, default as IconUnblurDefault } from "./IconUnblur";
1881
1882
  export { IconUnderline, default as IconUnderlineDefault, } from "./IconUnderline";
1882
1883
  export { IconUnicorn, default as IconUnicornDefault } from "./IconUnicorn";