@central-icons-react-native/square-filled-radius-0-stroke-1 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.5815 2 16.9346 2.9782 18.7087 4.58417L4.58417 18.7087C2.9782 16.9346 2 14.5815 2 12Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M5.29128 19.4158C7.06541 21.0218 9.41847 22 12 22C17.5228 22 22 17.5228 22 12C22 9.41847 21.0218 7.06541 19.4158 5.29128L5.29128 19.4158Z",fill:"currentColor"})),S=i;0&&(module.exports={IconCircleBanSign});
1
+ "use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!g.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(p=B(o,n))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(d(r)):{},l(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(t({},"__esModule",{value:!0}),r);var S={};v(S,{IconCircleBanSign:()=>i,default:()=>P});module.exports=x(S);var C=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:r,size:o=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>C.default.createElement(s,{...r},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C14.7613 2 17.2622 3.11961 19.0713 4.92871C20.8804 6.73781 22 9.23871 22 12C22 17.5228 17.5228 22 12 22C9.23871 22 6.73781 20.8804 4.92871 19.0713C3.11961 17.2622 2 14.7613 2 12C2 6.47715 6.47715 2 12 2ZM6 18.7061C7.5928 20.1322 9.69422 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69422 20.1322 7.5928 18.7061 6L6 18.7061ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3053 3.86742 16.4063 5.29297 17.999L17.999 5.29297C16.4063 3.86742 14.3053 3 12 3Z",fill:"currentColor"})),P=i;0&&(module.exports={IconCircleBanSign});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2 12C2 6.47715 6.47715 2 12 2C14.5815 2 16.9346 2.9782 18.7087 4.58417L4.58417 18.7087C2.9782 16.9346 2 14.5815 2 12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.29128 19.4158C7.06541 21.0218 9.41847 22 12 22C17.5228 22 22 17.5228 22 12C22 9.41847 21.0218 7.06541 19.4158 5.29128L5.29128 19.4158Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4IACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCircleBanSign_exports","__export","IconCircleBanSign","IconCircleBanSign_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
1
+ {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C14.7613 2 17.2622 3.11961 19.0713 4.92871C20.8804 6.73781 22 9.23871 22 12C22 17.5228 17.5228 22 12 22C9.23871 22 6.73781 20.8804 4.92871 19.0713C3.11961 17.2622 2 14.7613 2 12C2 6.47715 6.47715 2 12 2ZM6 18.7061C7.5928 20.1322 9.69422 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69422 20.1322 7.5928 18.7061 6L6 18.7061ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3053 3.86742 16.4063 5.29297 17.999L17.999 5.29297C16.4063 3.86742 14.3053 3 12 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,8bACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCircleBanSign_exports","__export","IconCircleBanSign","IconCircleBanSign_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
@@ -1,2 +1,2 @@
1
- import n from"react";import C from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...p})=>C.createElement(l,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as e}from"react-native-svg";var a=o=>n.createElement(t,{...o},n.createElement(e,{d:"M2 12C2 6.47715 6.47715 2 12 2C14.5815 2 16.9346 2.9782 18.7087 4.58417L4.58417 18.7087C2.9782 16.9346 2 14.5815 2 12Z",fill:"currentColor"}),n.createElement(e,{d:"M5.29128 19.4158C7.06541 21.0218 9.41847 22 12 22C17.5228 22 22 17.5228 22 12C22 9.41847 21.0218 7.06541 19.4158 5.29128L5.29128 19.4158Z",fill:"currentColor"})),x=a;export{a as IconCircleBanSign,x as default};
1
+ import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...t})=>C.createElement(p,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as l}from"react-native-svg";var a=o=>n.createElement(e,{...o},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C14.7613 2 17.2622 3.11961 19.0713 4.92871C20.8804 6.73781 22 9.23871 22 12C22 17.5228 17.5228 22 12 22C9.23871 22 6.73781 20.8804 4.92871 19.0713C3.11961 17.2622 2 14.7613 2 12C2 6.47715 6.47715 2 12 2ZM6 18.7061C7.5928 20.1322 9.69422 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69422 20.1322 7.5928 18.7061 6L6 18.7061ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3053 3.86742 16.4063 5.29297 17.999L17.999 5.29297C16.4063 3.86742 14.3053 3 12 3Z",fill:"currentColor"})),g=a;export{a as IconCircleBanSign,g as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2 12C2 6.47715 6.47715 2 12 2C14.5815 2 16.9346 2.9782 18.7087 4.58417L4.58417 18.7087C2.9782 16.9346 2 14.5815 2 12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5.29128 19.4158C7.06541 21.0218 9.41847 22 12 22C17.5228 22 22 17.5228 22 12C22 9.41847 21.0218 7.06541 19.4158 5.29128L5.29128 19.4158Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yHACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4IACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
1
+ {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C14.7613 2 17.2622 3.11961 19.0713 4.92871C20.8804 6.73781 22 9.23871 22 12C22 17.5228 17.5228 22 12 22C9.23871 22 6.73781 20.8804 4.92871 19.0713C3.11961 17.2622 2 14.7613 2 12C2 6.47715 6.47715 2 12 2ZM6 18.7061C7.5928 20.1322 9.69422 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69422 20.1322 7.5928 18.7061 6L6 18.7061ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3053 3.86742 16.4063 5.29297 17.999L17.999 5.29297C16.4063 3.86742 14.3053 3 12 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,8bACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var x=(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))!P.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(L(r)):{},a(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),d=r=>a(l({},"__esModule",{value:!0}),r);var v={};x(v,{IconParasol:()=>i,default:()=>g});module.exports=d(v);var n=f(require("react"));var m=f(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...C})=>m.default.createElement(s.Svg,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var e=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(e.Path,{d:"M10.219 13.4825C9.77045 13.8503 9.32054 14.258 8.93993 14.6684C7.80323 12.4998 7.0043 9.93484 6.65142 7.74959C6.45741 6.54815 6.4024 5.48644 6.48904 4.68304C6.53239 4.28105 6.60918 3.96378 6.70871 3.7323C6.80734 3.50291 6.91298 3.39201 6.99682 3.34207L7.00489 3.33741C7.09006 3.28977 7.23893 3.25373 7.4869 3.28301C7.73713 3.31256 8.05028 3.40469 8.4201 3.56814C9.15918 3.89481 10.0511 4.47331 10.9946 5.24205C12.7107 6.64027 14.5326 8.61466 15.8422 10.6834C15.2965 10.8078 14.7185 10.9936 14.1757 11.1981C13.3705 11.5016 12.6072 11.8598 12.0917 12.1574C11.5763 12.455 10.8844 12.9369 10.219 13.4825Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M8.64453 2.57746C8.70377 2.60153 8.76329 2.62681 8.82304 2.65322C9.67297 3.02888 10.6423 3.66587 11.625 4.46652C13.3363 5.86092 15.1472 7.80048 16.5044 9.86694C17.2299 9.10008 18.3649 8.58726 19.8536 8.49792L21.4688 8.401L20.6598 6.99972C18.2066 2.75069 13.106 0.983073 8.64453 2.57746Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M13.0301 12.7871C12.8663 12.8699 12.7179 12.9496 12.5894 13.0238C12.4609 13.098 12.3176 13.1866 12.1641 13.2871L16.5655 20.9106L17.4315 20.4106L13.0301 12.7871Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M7.90221 14.8354C6.87535 15.0803 5.86373 15.8068 5.04195 17.0514L4.15043 18.4017L3.34142 17.0004C0.888233 12.7514 1.90772 7.45037 5.51928 4.38379C5.5105 4.44713 5.50264 4.51132 5.49563 4.57627C5.396 5.50016 5.46298 6.65813 5.66504 7.90946C6.01695 10.0887 6.7912 12.6268 7.90221 14.8354Z",fill:"currentColor"})),g=i;0&&(module.exports={IconParasol});
1
+ "use strict";var u=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var x=(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))!P.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(L(r)):{},a(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),d=r=>a(l({},"__esModule",{value:!0}),r);var v={};x(v,{IconParasol:()=>i,default:()=>g});module.exports=d(v);var n=f(require("react"));var m=f(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...C})=>m.default.createElement(s.Svg,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var e=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(e.Path,{d:"M10.2151 13.4825C9.76654 13.8503 9.31663 14.258 8.93602 14.6684C7.79932 12.4998 7.00039 9.93484 6.64752 7.74959C6.45351 6.54815 6.39849 5.48644 6.48513 4.68304C6.52848 4.28105 6.60528 3.96378 6.7048 3.7323C6.80343 3.50291 6.90907 3.39201 6.99292 3.34207L7.00098 3.33741C7.08616 3.28977 7.23502 3.25373 7.48299 3.28301C7.73322 3.31256 8.04638 3.40469 8.41619 3.56814C9.15528 3.89481 10.0472 4.47331 10.9907 5.24205C12.7068 6.64027 14.5287 8.61466 15.8383 10.6834C15.2926 10.8078 14.7146 10.9936 14.1718 11.1981C13.3666 11.5016 12.6033 11.8598 12.0878 12.1574C11.5724 12.455 10.8805 12.9369 10.2151 13.4825Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M8.64844 2.57746C8.70768 2.60153 8.7672 2.62681 8.82694 2.65322C9.67687 3.02888 10.6462 3.66587 11.6289 4.46652C13.3402 5.86092 15.1511 7.80048 16.5083 9.86694C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792L21.4727 8.401L20.6637 6.99972C18.2105 2.75069 13.1099 0.983073 8.64844 2.57746Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M13.0301 12.7871C12.8663 12.8699 12.7179 12.9496 12.5894 13.0238C12.4609 13.098 12.3176 13.1866 12.1641 13.2871L16.5655 20.9106L17.4315 20.4106L13.0301 12.7871Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M7.90221 14.8354C6.87535 15.0803 5.86373 15.8068 5.04195 17.0514L4.15043 18.4017L3.34142 17.0004C0.888233 12.7514 1.90772 7.45037 5.51928 4.38379C5.5105 4.44713 5.50264 4.51132 5.49563 4.57627C5.396 5.50016 5.46298 6.65813 5.66504 7.90946C6.01695 10.0887 6.7912 12.6268 7.90221 14.8354Z",fill:"currentColor"})),g=i;0&&(module.exports={IconParasol});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.219 13.4825C9.77045 13.8503 9.32054 14.258 8.93993 14.6684C7.80323 12.4998 7.0043 9.93484 6.65142 7.74959C6.45741 6.54815 6.4024 5.48644 6.48904 4.68304C6.53239 4.28105 6.60918 3.96378 6.70871 3.7323C6.80734 3.50291 6.91298 3.39201 6.99682 3.34207L7.00489 3.33741C7.09006 3.28977 7.23893 3.25373 7.4869 3.28301C7.73713 3.31256 8.05028 3.40469 8.4201 3.56814C9.15918 3.89481 10.0511 4.47331 10.9946 5.24205C12.7107 6.64027 14.5326 8.61466 15.8422 10.6834C15.2965 10.8078 14.7185 10.9936 14.1757 11.1981C13.3705 11.5016 12.6072 11.8598 12.0917 12.1574C11.5763 12.455 10.8844 12.9369 10.219 13.4825Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.64453 2.57746C8.70377 2.60153 8.76329 2.62681 8.82304 2.65322C9.67297 3.02888 10.6423 3.66587 11.625 4.46652C13.3363 5.86092 15.1472 7.80048 16.5044 9.86694C17.2299 9.10008 18.3649 8.58726 19.8536 8.49792L21.4688 8.401L20.6598 6.99972C18.2066 2.75069 13.106 0.983073 8.64453 2.57746Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.0301 12.7871C12.8663 12.8699 12.7179 12.9496 12.5894 13.0238C12.4609 13.098 12.3176 13.1866 12.1641 13.2871L16.5655 20.9106L17.4315 20.4106L13.0301 12.7871Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.90221 14.8354C6.87535 15.0803 5.86373 15.8068 5.04195 17.0514L4.15043 18.4017L3.34142 17.0004C0.888233 12.7514 1.90772 7.45037 5.51928 4.38379C5.5105 4.44713 5.50264 4.51132 5.49563 4.57627C5.396 5.50016 5.46298 6.65813 5.66504 7.90946C6.01695 10.0887 6.7912 12.6268 7.90221 14.8354Z\"\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,2lBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iSACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mKACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iSACF,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.2151 13.4825C9.76654 13.8503 9.31663 14.258 8.93602 14.6684C7.79932 12.4998 7.00039 9.93484 6.64752 7.74959C6.45351 6.54815 6.39849 5.48644 6.48513 4.68304C6.52848 4.28105 6.60528 3.96378 6.7048 3.7323C6.80343 3.50291 6.90907 3.39201 6.99292 3.34207L7.00098 3.33741C7.08616 3.28977 7.23502 3.25373 7.48299 3.28301C7.73322 3.31256 8.04638 3.40469 8.41619 3.56814C9.15528 3.89481 10.0472 4.47331 10.9907 5.24205C12.7068 6.64027 14.5287 8.61466 15.8383 10.6834C15.2926 10.8078 14.7146 10.9936 14.1718 11.1981C13.3666 11.5016 12.6033 11.8598 12.0878 12.1574C11.5724 12.455 10.8805 12.9369 10.2151 13.4825Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.64844 2.57746C8.70768 2.60153 8.7672 2.62681 8.82694 2.65322C9.67687 3.02888 10.6462 3.66587 11.6289 4.46652C13.3402 5.86092 15.1511 7.80048 16.5083 9.86694C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792L21.4727 8.401L20.6637 6.99972C18.2105 2.75069 13.1099 0.983073 8.64844 2.57746Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.0301 12.7871C12.8663 12.8699 12.7179 12.9496 12.5894 13.0238C12.4609 13.098 12.3176 13.1866 12.1641 13.2871L16.5655 20.9106L17.4315 20.4106L13.0301 12.7871Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.90221 14.8354C6.87535 15.0803 5.86373 15.8068 5.04195 17.0514L4.15043 18.4017L3.34142 17.0004C0.888233 12.7514 1.90772 7.45037 5.51928 4.38379C5.5105 4.44713 5.50264 4.51132 5.49563 4.57627C5.396 5.50016 5.46298 6.65813 5.66504 7.90946C6.01695 10.0887 6.7912 12.6268 7.90221 14.8354Z\"\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,gmBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kSACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mKACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iSACF,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.219 13.4825C9.77045 13.8503 9.32054 14.258 8.93993 14.6684C7.80323 12.4998 7.0043 9.93484 6.65142 7.74959C6.45741 6.54815 6.4024 5.48644 6.48904 4.68304C6.53239 4.28105 6.60918 3.96378 6.70871 3.7323C6.80734 3.50291 6.91298 3.39201 6.99682 3.34207L7.00489 3.33741C7.09006 3.28977 7.23893 3.25373 7.4869 3.28301C7.73713 3.31256 8.05028 3.40469 8.4201 3.56814C9.15918 3.89481 10.0511 4.47331 10.9946 5.24205C12.7107 6.64027 14.5326 8.61466 15.8422 10.6834C15.2965 10.8078 14.7185 10.9936 14.1757 11.1981C13.3705 11.5016 12.6072 11.8598 12.0917 12.1574C11.5763 12.455 10.8844 12.9369 10.219 13.4825Z",fill:"currentColor"}),o.createElement(C,{d:"M8.64453 2.57746C8.70377 2.60153 8.76329 2.62681 8.82304 2.65322C9.67297 3.02888 10.6423 3.66587 11.625 4.46652C13.3363 5.86092 15.1472 7.80048 16.5044 9.86694C17.2299 9.10008 18.3649 8.58726 19.8536 8.49792L21.4688 8.401L20.6598 6.99972C18.2066 2.75069 13.106 0.983073 8.64453 2.57746Z",fill:"currentColor"}),o.createElement(C,{d:"M13.0301 12.7871C12.8663 12.8699 12.7179 12.9496 12.5894 13.0238C12.4609 13.098 12.3176 13.1866 12.1641 13.2871L16.5655 20.9106L17.4315 20.4106L13.0301 12.7871Z",fill:"currentColor"}),o.createElement(C,{d:"M7.90221 14.8354C6.87535 15.0803 5.86373 15.8068 5.04195 17.0514L4.15043 18.4017L3.34142 17.0004C0.888233 12.7514 1.90772 7.45037 5.51928 4.38379C5.5105 4.44713 5.50264 4.51132 5.49563 4.57627C5.396 5.50016 5.46298 6.65813 5.66504 7.90946C6.01695 10.0887 6.7912 12.6268 7.90221 14.8354Z",fill:"currentColor"})),P=a;export{a as IconParasol,P 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.2151 13.4825C9.76654 13.8503 9.31663 14.258 8.93602 14.6684C7.79932 12.4998 7.00039 9.93484 6.64752 7.74959C6.45351 6.54815 6.39849 5.48644 6.48513 4.68304C6.52848 4.28105 6.60528 3.96378 6.7048 3.7323C6.80343 3.50291 6.90907 3.39201 6.99292 3.34207L7.00098 3.33741C7.08616 3.28977 7.23502 3.25373 7.48299 3.28301C7.73322 3.31256 8.04638 3.40469 8.41619 3.56814C9.15528 3.89481 10.0472 4.47331 10.9907 5.24205C12.7068 6.64027 14.5287 8.61466 15.8383 10.6834C15.2926 10.8078 14.7146 10.9936 14.1718 11.1981C13.3666 11.5016 12.6033 11.8598 12.0878 12.1574C11.5724 12.455 10.8805 12.9369 10.2151 13.4825Z",fill:"currentColor"}),o.createElement(C,{d:"M8.64844 2.57746C8.70768 2.60153 8.7672 2.62681 8.82694 2.65322C9.67687 3.02888 10.6462 3.66587 11.6289 4.46652C13.3402 5.86092 15.1511 7.80048 16.5083 9.86694C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792L21.4727 8.401L20.6637 6.99972C18.2105 2.75069 13.1099 0.983073 8.64844 2.57746Z",fill:"currentColor"}),o.createElement(C,{d:"M13.0301 12.7871C12.8663 12.8699 12.7179 12.9496 12.5894 13.0238C12.4609 13.098 12.3176 13.1866 12.1641 13.2871L16.5655 20.9106L17.4315 20.4106L13.0301 12.7871Z",fill:"currentColor"}),o.createElement(C,{d:"M7.90221 14.8354C6.87535 15.0803 5.86373 15.8068 5.04195 17.0514L4.15043 18.4017L3.34142 17.0004C0.888233 12.7514 1.90772 7.45037 5.51928 4.38379C5.5105 4.44713 5.50264 4.51132 5.49563 4.57627C5.396 5.50016 5.46298 6.65813 5.66504 7.90946C6.01695 10.0887 6.7912 12.6268 7.90221 14.8354Z",fill:"currentColor"})),P=a;export{a as IconParasol,P as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.219 13.4825C9.77045 13.8503 9.32054 14.258 8.93993 14.6684C7.80323 12.4998 7.0043 9.93484 6.65142 7.74959C6.45741 6.54815 6.4024 5.48644 6.48904 4.68304C6.53239 4.28105 6.60918 3.96378 6.70871 3.7323C6.80734 3.50291 6.91298 3.39201 6.99682 3.34207L7.00489 3.33741C7.09006 3.28977 7.23893 3.25373 7.4869 3.28301C7.73713 3.31256 8.05028 3.40469 8.4201 3.56814C9.15918 3.89481 10.0511 4.47331 10.9946 5.24205C12.7107 6.64027 14.5326 8.61466 15.8422 10.6834C15.2965 10.8078 14.7185 10.9936 14.1757 11.1981C13.3705 11.5016 12.6072 11.8598 12.0917 12.1574C11.5763 12.455 10.8844 12.9369 10.219 13.4825Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.64453 2.57746C8.70377 2.60153 8.76329 2.62681 8.82304 2.65322C9.67297 3.02888 10.6423 3.66587 11.625 4.46652C13.3363 5.86092 15.1472 7.80048 16.5044 9.86694C17.2299 9.10008 18.3649 8.58726 19.8536 8.49792L21.4688 8.401L20.6598 6.99972C18.2066 2.75069 13.106 0.983073 8.64453 2.57746Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.0301 12.7871C12.8663 12.8699 12.7179 12.9496 12.5894 13.0238C12.4609 13.098 12.3176 13.1866 12.1641 13.2871L16.5655 20.9106L17.4315 20.4106L13.0301 12.7871Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.90221 14.8354C6.87535 15.0803 5.86373 15.8068 5.04195 17.0514L4.15043 18.4017L3.34142 17.0004C0.888233 12.7514 1.90772 7.45037 5.51928 4.38379C5.5105 4.44713 5.50264 4.51132 5.49563 4.57627C5.396 5.50016 5.46298 6.65813 5.66504 7.90946C6.01695 10.0887 6.7912 12.6268 7.90221 14.8354Z\"\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,2lBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iSACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mKACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iSACF,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.2151 13.4825C9.76654 13.8503 9.31663 14.258 8.93602 14.6684C7.79932 12.4998 7.00039 9.93484 6.64752 7.74959C6.45351 6.54815 6.39849 5.48644 6.48513 4.68304C6.52848 4.28105 6.60528 3.96378 6.7048 3.7323C6.80343 3.50291 6.90907 3.39201 6.99292 3.34207L7.00098 3.33741C7.08616 3.28977 7.23502 3.25373 7.48299 3.28301C7.73322 3.31256 8.04638 3.40469 8.41619 3.56814C9.15528 3.89481 10.0472 4.47331 10.9907 5.24205C12.7068 6.64027 14.5287 8.61466 15.8383 10.6834C15.2926 10.8078 14.7146 10.9936 14.1718 11.1981C13.3666 11.5016 12.6033 11.8598 12.0878 12.1574C11.5724 12.455 10.8805 12.9369 10.2151 13.4825Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.64844 2.57746C8.70768 2.60153 8.7672 2.62681 8.82694 2.65322C9.67687 3.02888 10.6462 3.66587 11.6289 4.46652C13.3402 5.86092 15.1511 7.80048 16.5083 9.86694C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792L21.4727 8.401L20.6637 6.99972C18.2105 2.75069 13.1099 0.983073 8.64844 2.57746Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.0301 12.7871C12.8663 12.8699 12.7179 12.9496 12.5894 13.0238C12.4609 13.098 12.3176 13.1866 12.1641 13.2871L16.5655 20.9106L17.4315 20.4106L13.0301 12.7871Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.90221 14.8354C6.87535 15.0803 5.86373 15.8068 5.04195 17.0514L4.15043 18.4017L3.34142 17.0004C0.888233 12.7514 1.90772 7.45037 5.51928 4.38379C5.5105 4.44713 5.50264 4.51132 5.49563 4.57627C5.396 5.50016 5.46298 6.65813 5.66504 7.90946C6.01695 10.0887 6.7912 12.6268 7.90221 14.8354Z\"\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,gmBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kSACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mKACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iSACF,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,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of I(r))!v.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(C=B(r,n))||C.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(t({},"__esModule",{value:!0}),o);var L={};x(L,{IconUnblock:()=>i,default:()=>g});module.exports=P(L);var p=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:o,size:r=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>p.default.createElement(s,{...o},p.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.8678 16.4067 5.29297 17.999L9.64648 13.6465L10.3535 14.3535L6 18.7061C7.5924 20.1318 9.69439 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69439 20.1318 7.5924 18.7061 6L14.3535 10.3535L13.6465 9.64648L17.999 5.29297C16.4067 3.8678 14.3051 3 12 3Z",fill:"currentColor"})),g=i;0&&(module.exports={IconUnblock});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconUnblock/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconUnblock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.8678 16.4067 5.29297 17.999L9.64648 13.6465L10.3535 14.3535L6 18.7061C7.5924 20.1318 9.69439 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69439 20.1318 7.5924 18.7061 6L14.3535 10.3535L13.6465 9.64648L17.999 5.29297C16.4067 3.8678 14.3051 3 12 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnblock;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,iZACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconUnblock_exports","__export","IconUnblock","IconUnblock_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconUnblock","props","React","CentralIconBase","IconUnblock_default"]}
@@ -0,0 +1,2 @@
1
+ import n from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:r,size:o=24,...t})=>p.createElement(C,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>n.createElement(e,{...r},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.8678 16.4067 5.29297 17.999L9.64648 13.6465L10.3535 14.3535L6 18.7061C7.5924 20.1318 9.69439 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69439 20.1318 7.5924 18.7061 6L14.3535 10.3535L13.6465 9.64648L17.999 5.29297C16.4067 3.8678 14.3051 3 12 3Z",fill:"currentColor"})),v=a;export{a as IconUnblock,v as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconUnblock/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconUnblock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.8678 16.4067 5.29297 17.999L9.64648 13.6465L10.3535 14.3535L6 18.7061C7.5924 20.1318 9.69439 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69439 20.1318 7.5924 18.7061 6L14.3535 10.3535L13.6465 9.64648L17.999 5.29297C16.4067 3.8678 14.3051 3 12 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnblock;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,iZACF,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.5815 2 16.9346 2.9782 18.7087 4.58417L4.58417 18.7087C2.9782 16.9346 2 14.5815 2 12Z\" fill=\"currentColor\"/><path d=\"M5.29128 19.4158C7.06541 21.0218 9.41847 22 12 22C17.5228 22 22 17.5228 22 12C22 9.41847 21.0218 7.06541 19.4158 5.29128L5.29128 19.4158Z\" fill=\"currentColor\"/>",
6879
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C14.7613 2 17.2622 3.11961 19.0713 4.92871C20.8804 6.73781 22 9.23871 22 12C22 17.5228 17.5228 22 12 22C9.23871 22 6.73781 20.8804 4.92871 19.0713C3.11961 17.2622 2 14.7613 2 12C2 6.47715 6.47715 2 12 2ZM6 18.7061C7.5928 20.1322 9.69422 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69422 20.1322 7.5928 18.7061 6L6 18.7061ZM12 3C7.02944 3 3 7.02944 3 12C3 14.3053 3.86742 16.4063 5.29297 17.999L17.999 5.29297C16.4063 3.86742 14.3053 3 12 3Z\" fill=\"currentColor\"/>",
6880
6880
  "iconName": "circle-ban-sign, circle, block, ads",
6881
6881
  "variant": {
6882
6882
  "join": "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=\"M21.8555 6.14648L21.1484 6.85352L19.502 5.20703L17.209 7.5L20.8555 11.1465L20.1484 11.8535L18.502 10.207L9.50195 19.207L7.50195 17.207L3.35547 21.3535L2.64844 20.6465L6.79492 16.5L4.79492 14.5L13.7949 5.5L12.1484 3.85352L12.8555 3.14648L16.502 6.79297L18.7949 4.5L17.1484 2.85352L17.8555 2.14648L21.8555 6.14648Z\" fill=\"currentColor\"/>",
14594
14594
  "iconName": "injection",
14595
14595
  "variant": {
@@ -16549,7 +16549,7 @@
16549
16549
  "componentName": "IconMedicalCrossSquare"
16550
16550
  },
16551
16551
  {
16552
- "category": "Things",
16552
+ "category": "Health & Medical",
16553
16553
  "svg": "<path d=\"M9.97503 3.58104C12.0831 1.47299 15.5009 1.47299 17.609 3.58104C19.0387 5.0108 19.4985 7.04233 18.9893 8.85939C17.947 8.3106 16.7598 8 15.5 8C13.6089 8 11.8812 8.69993 10.562 9.85487L7.13159 6.42448L9.97503 3.58104Z\" fill=\"currentColor\"/><path d=\"M8 15.5C8 13.6089 8.69993 11.8812 9.85487 10.562L6.42448 7.13159L3.58104 9.97503C1.47299 12.0831 1.47299 15.5009 3.58104 17.609C5.01082 19.0387 7.04228 19.4983 8.85929 18.9891C8.31056 17.9468 8 16.7597 8 15.5Z\" fill=\"currentColor\"/><path d=\"M9 15.5C9 12.4691 11.0745 9.92267 13.8811 9.20322L16.1339 21.9695C15.9254 21.9897 15.7139 22 15.5 22C11.9101 22 9 19.0899 9 15.5Z\" fill=\"currentColor\"/><path d=\"M22 15.5C22 18.5309 19.9255 21.0773 17.1189 21.7968L14.8661 9.03052C15.0746 9.01033 15.2861 9 15.5 9C19.0899 9 22 11.9101 22 15.5Z\" fill=\"currentColor\"/>",
16554
16554
  "iconName": "medicine-pill",
16555
16555
  "variant": {
@@ -16563,7 +16563,7 @@
16563
16563
  "componentName": "IconMedicinePill"
16564
16564
  },
16565
16565
  {
16566
- "category": "Things",
16566
+ "category": "Health & Medical",
16567
16567
  "svg": "<path d=\"M19.8105 12.0963C21.1114 11.3022 22 10.2521 22 9C22 7.43805 20.6172 6.19048 18.7763 5.36206C16.8884 4.51251 14.3154 4 11.5 4C9.24011 4 7.1364 4.33022 5.41784 4.8999L19.8105 12.0963Z\" fill=\"currentColor\"/><path d=\"M18.7137 12.6659L4.16207 5.39005C2.35201 6.21847 1 7.45554 1 9C1 10.562 2.38281 11.8095 4.22375 12.6379C6.11163 13.4875 8.68462 14 11.5 14C14.2844 14 16.8317 13.4987 18.7137 12.6659Z\" fill=\"currentColor\"/><path d=\"M1 11.5643C1.73179 12.4244 2.77439 13.0823 3.81339 13.5499C5.85773 14.4698 8.57671 15 11.5 15C14.4233 15 17.1423 14.4698 19.1866 13.5499C20.2256 13.0823 21.2682 12.4244 22 11.5643V15C22 16.562 20.6172 17.8095 18.7763 18.6379C16.8884 19.4875 14.3154 20 11.5 20C8.68462 20 6.11163 19.4875 4.22375 18.6379C2.38281 17.8095 1 16.562 1 15V11.5643Z\" fill=\"currentColor\"/>",
16568
16568
  "iconName": "medicine-pill-2, tablett",
16569
16569
  "variant": {
@@ -16577,7 +16577,7 @@
16577
16577
  "componentName": "IconMedicinePill2"
16578
16578
  },
16579
16579
  {
16580
- "category": "Things",
16580
+ "category": "Health & Medical",
16581
16581
  "svg": "<path d=\"M11.8951 3.89701C14.1614 1.63069 17.8358 1.63068 20.1022 3.89701C22.3685 6.16334 22.3685 9.83779 20.1022 12.1041L16.4557 15.7506L8.24861 7.54346L11.8951 3.89701Z\" fill=\"currentColor\"/><path d=\"M7.54151 8.25057L3.89506 11.897C1.62873 14.1633 1.62873 17.8378 3.89506 20.1041C6.16139 22.3704 9.83584 22.3704 12.1022 20.1041L15.7486 16.4577L7.54151 8.25057Z\" fill=\"currentColor\"/>",
16582
16582
  "iconName": "medicine-tablett, pill",
16583
16583
  "variant": {
@@ -18748,7 +18748,7 @@
18748
18748
  },
18749
18749
  {
18750
18750
  "category": "Things",
18751
- "svg": "<path d=\"M10.219 13.4825C9.77045 13.8503 9.32054 14.258 8.93993 14.6684C7.80323 12.4998 7.0043 9.93484 6.65142 7.74959C6.45741 6.54815 6.4024 5.48644 6.48904 4.68304C6.53239 4.28105 6.60918 3.96378 6.70871 3.7323C6.80734 3.50291 6.91298 3.39201 6.99682 3.34207L7.00489 3.33741C7.09006 3.28977 7.23893 3.25373 7.4869 3.28301C7.73713 3.31256 8.05028 3.40469 8.4201 3.56814C9.15918 3.89481 10.0511 4.47331 10.9946 5.24205C12.7107 6.64027 14.5326 8.61466 15.8422 10.6834C15.2965 10.8078 14.7185 10.9936 14.1757 11.1981C13.3705 11.5016 12.6072 11.8598 12.0917 12.1574C11.5763 12.455 10.8844 12.9369 10.219 13.4825Z\" fill=\"currentColor\"/><path d=\"M8.64453 2.57746C8.70377 2.60153 8.76329 2.62681 8.82304 2.65322C9.67297 3.02888 10.6423 3.66587 11.625 4.46652C13.3363 5.86092 15.1472 7.80048 16.5044 9.86694C17.2299 9.10008 18.3649 8.58726 19.8536 8.49792L21.4688 8.401L20.6598 6.99972C18.2066 2.75069 13.106 0.983073 8.64453 2.57746Z\" fill=\"currentColor\"/><path d=\"M13.0301 12.7871C12.8663 12.8699 12.7179 12.9496 12.5894 13.0238C12.4609 13.098 12.3176 13.1866 12.1641 13.2871L16.5655 20.9106L17.4315 20.4106L13.0301 12.7871Z\" fill=\"currentColor\"/><path d=\"M7.90221 14.8354C6.87535 15.0803 5.86373 15.8068 5.04195 17.0514L4.15043 18.4017L3.34142 17.0004C0.888233 12.7514 1.90772 7.45037 5.51928 4.38379C5.5105 4.44713 5.50264 4.51132 5.49563 4.57627C5.396 5.50016 5.46298 6.65813 5.66504 7.90946C6.01695 10.0887 6.7912 12.6268 7.90221 14.8354Z\" fill=\"currentColor\"/>",
18751
+ "svg": "<path d=\"M10.2151 13.4825C9.76654 13.8503 9.31663 14.258 8.93602 14.6684C7.79932 12.4998 7.00039 9.93484 6.64752 7.74959C6.45351 6.54815 6.39849 5.48644 6.48513 4.68304C6.52848 4.28105 6.60528 3.96378 6.7048 3.7323C6.80343 3.50291 6.90907 3.39201 6.99292 3.34207L7.00098 3.33741C7.08616 3.28977 7.23502 3.25373 7.48299 3.28301C7.73322 3.31256 8.04638 3.40469 8.41619 3.56814C9.15528 3.89481 10.0472 4.47331 10.9907 5.24205C12.7068 6.64027 14.5287 8.61466 15.8383 10.6834C15.2926 10.8078 14.7146 10.9936 14.1718 11.1981C13.3666 11.5016 12.6033 11.8598 12.0878 12.1574C11.5724 12.455 10.8805 12.9369 10.2151 13.4825Z\" fill=\"currentColor\"/><path d=\"M8.64844 2.57746C8.70768 2.60153 8.7672 2.62681 8.82694 2.65322C9.67687 3.02888 10.6462 3.66587 11.6289 4.46652C13.3402 5.86092 15.1511 7.80048 16.5083 9.86694C17.2338 9.10008 18.3688 8.58726 19.8576 8.49792L21.4727 8.401L20.6637 6.99972C18.2105 2.75069 13.1099 0.983073 8.64844 2.57746Z\" fill=\"currentColor\"/><path d=\"M13.0301 12.7871C12.8663 12.8699 12.7179 12.9496 12.5894 13.0238C12.4609 13.098 12.3176 13.1866 12.1641 13.2871L16.5655 20.9106L17.4315 20.4106L13.0301 12.7871Z\" fill=\"currentColor\"/><path d=\"M7.90221 14.8354C6.87535 15.0803 5.86373 15.8068 5.04195 17.0514L4.15043 18.4017L3.34142 17.0004C0.888233 12.7514 1.90772 7.45037 5.51928 4.38379C5.5105 4.44713 5.50264 4.51132 5.49563 4.57627C5.396 5.50016 5.46298 6.65813 5.66504 7.90946C6.01695 10.0887 6.7912 12.6268 7.90221 14.8354Z\" fill=\"currentColor\"/>",
18752
18752
  "iconName": "parasol,umbrella,vacation",
18753
18753
  "variant": {
18754
18754
  "join": "square",
@@ -26306,6 +26306,20 @@
26306
26306
  "packageName": "square-filled-radius-0-stroke-1",
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 3C7.02944 3 3 7.02944 3 12C3 14.3051 3.8678 16.4067 5.29297 17.999L9.64648 13.6465L10.3535 14.3535L6 18.7061C7.5924 20.1318 9.69439 21 12 21C16.9706 21 21 16.9706 21 12C21 9.69439 20.1318 7.5924 18.7061 6L14.3535 10.3535L13.6465 9.64648L17.999 5.29297C16.4067 3.8678 14.3051 3 12 3Z\" fill=\"currentColor\"/>",
26312
+ "iconName": "unblock, unban",
26313
+ "variant": {
26314
+ "join": "square",
26315
+ "filled": "on",
26316
+ "radius": "0",
26317
+ "stroke": "1"
26318
+ },
26319
+ "createdAt": "2026-05-22T08:02:26.577334+00:00",
26320
+ "packageName": "square-filled-radius-0-stroke-1",
26321
+ "componentName": "IconUnblock"
26322
+ },
26309
26323
  {
26310
26324
  "category": "Photography & Video",
26311
26325
  "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 2H11.5V22H12C17.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/square-filled-radius-0-stroke-1",
3
- "version": "1.1.244",
3
+ "version": "1.1.245",
4
4
  "style": "square-filled-radius-0-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-filled-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": 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";