@central-icons-react-native/round-outlined-radius-1-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 n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=u(o,t))||C.enumerable});return r};var s=(r,o,e)=>(e=r!=null?B(g(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconCircleBanSign:()=>i,default:()=>S});module.exports=v(d);var p=s(require("react"));var m=s(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>p.default.createElement(l,{...r},p.default.createElement(f.Path,{d:"M18.7175 5.28249C16.9984 3.56332 14.6234 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 14.6234 3.56332 16.9984 5.28249 18.7175M18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175M18.7175 5.28249L5.28249 18.7175",stroke:"currentColor",strokeLinecap:"round"})),S=i;0&&(module.exports={IconCircleBanSign});
1
+ "use strict";var f=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!x.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(a=B(o,n))||a.enumerable});return r};var c=(r,o,e)=>(e=r!=null?f(g(r)):{},s(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>s(t({},"__esModule",{value:!0}),r);var S={};P(S,{IconCircleBanSign:()=>u,default:()=>v});module.exports=d(S);var p=c(require("react"));var l=c(require("react")),m=require("react-native-svg"),i=({children:r,size:o=24,...e})=>l.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),u=r=>p.default.createElement(i,{...r},p.default.createElement(C.Path,{d:"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z",stroke:"currentColor",strokeLinecap:"round"}),p.default.createElement(C.Path,{d:"M18.4413 5.55859L5.46924 18.5307",stroke:"currentColor",strokeLinecap:"round"})),v=u;0&&(module.exports={IconCircleBanSign});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.7175 5.28249C16.9984 3.56332 14.6234 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 14.6234 3.56332 16.9984 5.28249 18.7175M18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175M18.7175 5.28249L5.28249 18.7175\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,qSACF,OAAO,eACP,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconCircleBanSign_exports","__export","IconCircleBanSign","IconCircleBanSign_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
1
+ {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M18.4413 5.55859L5.46924 18.5307\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8OACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconCircleBanSign_exports","__export","IconCircleBanSign","IconCircleBanSign_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
@@ -1,2 +1,2 @@
1
- import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var s=o=>t.createElement(e,{...o},t.createElement(a,{d:"M18.7175 5.28249C16.9984 3.56332 14.6234 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 14.6234 3.56332 16.9984 5.28249 18.7175M18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175M18.7175 5.28249L5.28249 18.7175",stroke:"currentColor",strokeLinecap:"round"})),x=s;export{s as IconCircleBanSign,x as default};
1
+ import e from"react";import C from"react";import{Svg as a}from"react-native-svg";var n=({children:o,size:r=24,...p})=>C.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as t}from"react-native-svg";var s=o=>e.createElement(n,{...o},e.createElement(t,{d:"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z",stroke:"currentColor",strokeLinecap:"round"}),e.createElement(t,{d:"M18.4413 5.55859L5.46924 18.5307",stroke:"currentColor",strokeLinecap:"round"})),x=s;export{s as IconCircleBanSign,x as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.7175 5.28249C16.9984 3.56332 14.6234 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 14.6234 3.56332 16.9984 5.28249 18.7175M18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175M18.7175 5.28249L5.28249 18.7175\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,qSACF,OAAO,eACP,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
1
+ {"version":3,"sources":["../src/IconCircleBanSign/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCircleBanSign: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M18.4413 5.55859L5.46924 18.5307\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCircleBanSign;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8OACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mCACF,OAAO,eACP,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var d=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of k(o))!I.call(r,n)&&n!==e&&p(r,n,{get:()=>o[n],enumerable:!(C=f(o,n))||C.enumerable});return r};var i=(r,o,e)=>(e=r!=null?d(B(r)):{},a(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(p({},"__esModule",{value:!0}),r);var v={};x(v,{IconDevices2:()=>m,default:()=>g});module.exports=P(v);var t=i(require("react"));var u=i(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...e})=>u.default.createElement(c.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),m=r=>t.default.createElement(l,{...r},t.default.createElement(s.Path,{d:"M15.5 10.5C15.5 9.94771 15.9477 9.5 16.5 9.5H21.5C22.0523 9.5 22.5 9.94772 22.5 10.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H16.5C15.9477 20.5 15.5 20.0523 15.5 19.5V10.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M13 19.5H2.5C1.94772 19.5 1.5 19.0523 1.5 18.5V17.5H13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M20.5 7V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),g=m;0&&(module.exports={IconDevices2});
1
+ "use strict";var d=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of k(o))!I.call(r,n)&&n!==e&&p(r,n,{get:()=>o[n],enumerable:!(C=f(o,n))||C.enumerable});return r};var i=(r,o,e)=>(e=r!=null?d(B(r)):{},a(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(p({},"__esModule",{value:!0}),r);var v={};x(v,{IconDevices2:()=>m,default:()=>g});module.exports=P(v);var t=i(require("react"));var u=i(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...e})=>u.default.createElement(c.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),m=r=>t.default.createElement(l,{...r},t.default.createElement(s.Path,{d:"M15.5 10.5C15.5 9.94771 15.9477 9.5 16.5 9.5H21.5C22.0523 9.5 22.5 9.94772 22.5 10.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H16.5C15.9477 20.5 15.5 20.0523 15.5 19.5V10.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M13 19.5H2.5C1.94772 19.5 1.5 19.0523 1.5 18.5V17.5H13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M20.5 7V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),g=m;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=\"M15.5 10.5C15.5 9.94771 15.9477 9.5 16.5 9.5H21.5C22.0523 9.5 22.5 9.94772 22.5 10.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H16.5C15.9477 20.5 15.5 20.0523 15.5 19.5V10.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 19.5H2.5C1.94772 19.5 1.5 19.0523 1.5 18.5V17.5H13\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 7V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,+KACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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=\"M15.5 10.5C15.5 9.94771 15.9477 9.5 16.5 9.5H21.5C22.0523 9.5 22.5 9.94772 22.5 10.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H16.5C15.9477 20.5 15.5 20.0523 15.5 19.5V10.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 19.5H2.5C1.94772 19.5 1.5 19.0523 1.5 18.5V17.5H13\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 7V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,+KACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 s from"react";import{Svg as C}from"react-native-svg";var t=({children:e,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var a=e=>o.createElement(t,{...e},o.createElement(n,{d:"M15.5 10.5C15.5 9.94771 15.9477 9.5 16.5 9.5H21.5C22.0523 9.5 22.5 9.94772 22.5 10.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H16.5C15.9477 20.5 15.5 20.0523 15.5 19.5V10.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M13 19.5H2.5C1.94772 19.5 1.5 19.0523 1.5 18.5V17.5H13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M20.5 7V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;export{a as IconDevices2,I as default};
1
+ import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var t=({children:e,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var a=e=>o.createElement(t,{...e},o.createElement(n,{d:"M15.5 10.5C15.5 9.94771 15.9477 9.5 16.5 9.5H21.5C22.0523 9.5 22.5 9.94772 22.5 10.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H16.5C15.9477 20.5 15.5 20.0523 15.5 19.5V10.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M13 19.5H2.5C1.94772 19.5 1.5 19.0523 1.5 18.5V17.5H13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M20.5 7V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;export{a as IconDevices2,I 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=\"M15.5 10.5C15.5 9.94771 15.9477 9.5 16.5 9.5H21.5C22.0523 9.5 22.5 9.94772 22.5 10.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H16.5C15.9477 20.5 15.5 20.0523 15.5 19.5V10.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 19.5H2.5C1.94772 19.5 1.5 19.0523 1.5 18.5V17.5H13\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 7V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,+KACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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=\"M15.5 10.5C15.5 9.94771 15.9477 9.5 16.5 9.5H21.5C22.0523 9.5 22.5 9.94772 22.5 10.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H16.5C15.9477 20.5 15.5 20.0523 15.5 19.5V10.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 19.5H2.5C1.94772 19.5 1.5 19.0523 1.5 18.5V17.5H13\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 7V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,+KACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 c=Object.create;var i=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of f(o))!k.call(r,p)&&p!==e&&i(r,p,{get:()=>o[p],enumerable:!(s=d(o,p))||s.enumerable});return r};var l=(r,o,e)=>(e=r!=null?c(P(r)):{},C(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>C(i({},"__esModule",{value:!0}),r);var x={};B(x,{IconParasol:()=>u,default:()=>g});module.exports=I(x);var n=l(require("react"));var a=l(require("react")),h=require("react-native-svg"),m=({children:r,size:o=24,...e})=>a.default.createElement(h.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),u=r=>n.default.createElement(m,{...r},n.default.createElement(t.G,{"clip-Path":"url(#clip0_9082_25732)"},n.default.createElement(t.Path,{d:"M15.8177 19.6119L10.9427 11.1681C9.96839 11.7306 9.11911 12.5097 8.28658 13.5677C6.48754 13.4516 4.75549 14.4516 3.52344 16.3177C1.03816 12.013 2.51303 6.50872 6.81767 4.02344C11.1223 1.53816 16.6266 3.01303 19.1119 7.31767C16.8798 7.45161 15.1478 8.45165 14.3488 10.0677",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8.28516 13.5677C5.79987 9.26303 5.14222 4.98994 6.81625 4.02344C8.49027 3.05694 11.8621 5.76303 14.3473 10.0677C13.0148 10.2597 11.9155 10.6056 10.9412 11.1681",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),n.default.createElement(t.Defs,null,n.default.createElement(t.ClipPath,{id:"clip0_9082_25732"},n.default.createElement(t.Rect,{width:"24",height:"24",fill:"white"})))),g=u;0&&(module.exports={IconParasol});
1
+ "use strict";var f=Object.create;var C=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var P=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of P(o))!B.call(r,p)&&p!==t&&C(r,p,{get:()=>o[p],enumerable:!(i=h(o,p))||i.enumerable});return r};var s=(r,o,t)=>(t=r!=null?f(d(r)):{},l(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>l(C({},"__esModule",{value:!0}),r);var k={};I(k,{IconParasol:()=>c,default:()=>x});module.exports=g(k);var n=s(require("react"));var a=s(require("react")),m=require("react-native-svg"),u=({children:r,size:o=24,...t})=>a.default.createElement(m.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var e=require("react-native-svg"),c=r=>n.default.createElement(u,{...r},n.default.createElement(e.G,{"clip-Path":"url(#clip0_15261_28220)"},n.default.createElement(e.Path,{d:"M15.8177 19.6119L10.9427 11.1681C9.96839 11.7306 9.11911 12.5097 8.28658 13.5677C6.48754 13.4516 4.75549 14.4516 3.52344 16.3177C1.03816 12.013 2.51303 6.50872 6.81767 4.02344C11.1223 1.53816 16.6266 3.01303 19.1119 7.31767C16.8798 7.45161 15.1478 8.45165 14.3488 10.0677",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(e.Path,{d:"M8.28906 13.5677C5.80378 9.26303 5.14613 4.98994 6.82015 4.02344C8.49418 3.05694 11.866 5.76303 14.3512 10.0677C13.0187 10.2597 11.9194 10.6056 10.9451 11.1681",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),n.default.createElement(e.Defs,null,n.default.createElement(e.ClipPath,{id:"clip0_15261_28220"},n.default.createElement(e.Rect,{width:"24",height:"24",fill:"white"})))),x=c;0&&(module.exports={IconParasol});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_9082_25732)\">\n <Path\n d=\"M15.8177 19.6119L10.9427 11.1681C9.96839 11.7306 9.11911 12.5097 8.28658 13.5677C6.48754 13.4516 4.75549 14.4516 3.52344 16.3177C1.03816 12.013 2.51303 6.50872 6.81767 4.02344C11.1223 1.53816 16.6266 3.01303 19.1119 7.31767C16.8798 7.45161 15.1478 8.45165 14.3488 10.0677\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.28516 13.5677C5.79987 9.26303 5.14222 4.98994 6.81625 4.02344C8.49027 3.05694 11.8621 5.76303 14.3473 10.0677C13.0148 10.2597 11.9155 10.6056 10.9412 11.1681\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_9082_25732\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA8C,4BAEjCC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,KAAE,YAAU,0BACX,EAAAA,QAAA,cAAC,QACC,EAAE,kRACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mKACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconParasol_exports","__export","IconParasol","IconParasol_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
1
+ {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_15261_28220)\">\n <Path\n d=\"M15.8177 19.6119L10.9427 11.1681C9.96839 11.7306 9.11911 12.5097 8.28658 13.5677C6.48754 13.4516 4.75549 14.4516 3.52344 16.3177C1.03816 12.013 2.51303 6.50872 6.81767 4.02344C11.1223 1.53816 16.6266 3.01303 19.1119 7.31767C16.8798 7.45161 15.1478 8.45165 14.3488 10.0677\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.28906 13.5677C5.80378 9.26303 5.14613 4.98994 6.82015 4.02344C8.49418 3.05694 11.866 5.76303 14.3512 10.0677C13.0187 10.2597 11.9194 10.6056 10.9451 11.1681\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_15261_28220\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA8C,4BAEjCC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,KAAE,YAAU,2BACX,EAAAA,QAAA,cAAC,QACC,EAAE,kRACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,qBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconParasol_exports","__export","IconParasol","IconParasol_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
@@ -1,2 +1,2 @@
1
- import r from"react";import i from"react";import{Svg as s}from"react-native-svg";var e=({children:t,size:o=24,...p})=>i.createElement(s,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{ClipPath as C,Defs as l,G as a,Path as n,Rect as h}from"react-native-svg";var m=t=>r.createElement(e,{...t},r.createElement(a,{"clip-Path":"url(#clip0_9082_25732)"},r.createElement(n,{d:"M15.8177 19.6119L10.9427 11.1681C9.96839 11.7306 9.11911 12.5097 8.28658 13.5677C6.48754 13.4516 4.75549 14.4516 3.52344 16.3177C1.03816 12.013 2.51303 6.50872 6.81767 4.02344C11.1223 1.53816 16.6266 3.01303 19.1119 7.31767C16.8798 7.45161 15.1478 8.45165 14.3488 10.0677",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M8.28516 13.5677C5.79987 9.26303 5.14222 4.98994 6.81625 4.02344C8.49027 3.05694 11.8621 5.76303 14.3473 10.0677C13.0148 10.2597 11.9155 10.6056 10.9412 11.1681",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),r.createElement(l,null,r.createElement(C,{id:"clip0_9082_25732"},r.createElement(h,{width:"24",height:"24",fill:"white"})))),x=m;export{m as IconParasol,x as default};
1
+ import r from"react";import C from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:o=24,...p})=>C.createElement(i,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{ClipPath as l,Defs as s,G as a,Path as n,Rect as m}from"react-native-svg";var u=e=>r.createElement(t,{...e},r.createElement(a,{"clip-Path":"url(#clip0_15261_28220)"},r.createElement(n,{d:"M15.8177 19.6119L10.9427 11.1681C9.96839 11.7306 9.11911 12.5097 8.28658 13.5677C6.48754 13.4516 4.75549 14.4516 3.52344 16.3177C1.03816 12.013 2.51303 6.50872 6.81767 4.02344C11.1223 1.53816 16.6266 3.01303 19.1119 7.31767C16.8798 7.45161 15.1478 8.45165 14.3488 10.0677",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M8.28906 13.5677C5.80378 9.26303 5.14613 4.98994 6.82015 4.02344C8.49418 3.05694 11.866 5.76303 14.3512 10.0677C13.0187 10.2597 11.9194 10.6056 10.9451 11.1681",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),r.createElement(s,null,r.createElement(l,{id:"clip0_15261_28220"},r.createElement(m,{width:"24",height:"24",fill:"white"})))),k=u;export{u as IconParasol,k as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_9082_25732)\">\n <Path\n d=\"M15.8177 19.6119L10.9427 11.1681C9.96839 11.7306 9.11911 12.5097 8.28658 13.5677C6.48754 13.4516 4.75549 14.4516 3.52344 16.3177C1.03816 12.013 2.51303 6.50872 6.81767 4.02344C11.1223 1.53816 16.6266 3.01303 19.1119 7.31767C16.8798 7.45161 15.1478 8.45165 14.3488 10.0677\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.28516 13.5677C5.79987 9.26303 5.14222 4.98994 6.81625 4.02344C8.49027 3.05694 11.8621 5.76303 14.3473 10.0677C13.0148 10.2597 11.9155 10.6056 10.9412 11.1681\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_9082_25732\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,YAAAG,EAAU,QAAAC,EAAM,KAAAC,EAAG,QAAAC,EAAM,QAAAC,MAAY,mBAEvC,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACL,EAAA,CAAE,YAAU,0BACXK,EAAA,cAACJ,EAAA,CACC,EAAE,kRACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,mKACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EACAI,EAAA,cAACN,EAAA,KACCM,EAAA,cAACP,EAAA,CAAS,GAAG,oBACXO,EAAA,cAACH,EAAA,CAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","ClipPath","Defs","G","Path","Rect","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
1
+ {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconParasol: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_15261_28220)\">\n <Path\n d=\"M15.8177 19.6119L10.9427 11.1681C9.96839 11.7306 9.11911 12.5097 8.28658 13.5677C6.48754 13.4516 4.75549 14.4516 3.52344 16.3177C1.03816 12.013 2.51303 6.50872 6.81767 4.02344C11.1223 1.53816 16.6266 3.01303 19.1119 7.31767C16.8798 7.45161 15.1478 8.45165 14.3488 10.0677\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.28906 13.5677C5.80378 9.26303 5.14613 4.98994 6.82015 4.02344C8.49418 3.05694 11.866 5.76303 14.3512 10.0677C13.0187 10.2597 11.9194 10.6056 10.9451 11.1681\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_15261_28220\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,YAAAG,EAAU,QAAAC,EAAM,KAAAC,EAAG,QAAAC,EAAM,QAAAC,MAAY,mBAEvC,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACL,EAAA,CAAE,YAAU,2BACXK,EAAA,cAACJ,EAAA,CACC,EAAE,kRACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,kKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EACAI,EAAA,cAACN,EAAA,KACCM,EAAA,cAACP,EAAA,CAAS,GAAG,qBACXO,EAAA,cAACH,EAAA,CAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","ClipPath","Defs","G","Path","Rect","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconUnblock: FC<CentralIconBaseProps>;
4
+ export default IconUnblock;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var s=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var k=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,c)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!d.call(r,n)&&n!==e&&s(r,n,{get:()=>o[n],enumerable:!(c=x(o,n))||c.enumerable});return r};var l=(r,o,e)=>(e=r!=null?f(I(r)):{},a(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(s({},"__esModule",{value:!0}),r);var v={};k(v,{IconUnblock:()=>i,default:()=>g});module.exports=P(v);var t=l(require("react"));var C=l(require("react")),m=require("react-native-svg"),u=({children:r,size:o=24,...e})=>C.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>t.default.createElement(u,{...r},t.default.createElement(p.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round"}),t.default.createElement(p.Path,{d:"M5.5 18.5L9.75 14.25",stroke:"currentColor",strokeLinecap:"round"}),t.default.createElement(p.Path,{d:"M14.25 9.75L18.5 5.5",stroke:"currentColor",strokeLinecap:"round"})),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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconUnblock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"12\"\n cy=\"12\"\n r=\"9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M5.5 18.5L9.75 14.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M14.25 9.75L18.5 5.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\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,EAA6B,4BAEhBC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UACC,GAAG,KACH,GAAG,KACH,EAAE,MACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,QAChB,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 o from"react";import s from"react";import{Svg as c}from"react-native-svg";var n=({children:e,size:r=24,...p})=>s.createElement(c,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as a,Path as t}from"react-native-svg";var l=e=>o.createElement(n,{...e},o.createElement(a,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor",strokeLinecap:"round"}),o.createElement(t,{d:"M5.5 18.5L9.75 14.25",stroke:"currentColor",strokeLinecap:"round"}),o.createElement(t,{d:"M14.25 9.75L18.5 5.5",stroke:"currentColor",strokeLinecap:"round"})),k=l;export{l as IconUnblock,k as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconUnblock/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconUnblock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"12\"\n cy=\"12\"\n r=\"9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M5.5 18.5L9.75 14.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M14.25 9.75L18.5 5.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,KACH,EAAE,MACF,OAAO,eACP,cAAc,QAChB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,uBACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uBACF,OAAO,eACP,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconUnblock","props","React","CentralIconBase","IconUnblock_default"]}
package/README.md CHANGED
@@ -1065,10 +1065,14 @@ Below is a complete list of available icons:
1065
1065
 
1066
1066
  ### Health & Medical
1067
1067
 
1068
+ - IconInjection
1068
1069
  - IconMask1
1069
1070
  - IconMedicalCross
1070
1071
  - IconMedicalCrossCircle
1071
1072
  - IconMedicalCrossSquare
1073
+ - IconMedicinePill
1074
+ - IconMedicinePill2
1075
+ - IconMedicineTablett
1072
1076
 
1073
1077
  ### Interface General
1074
1078
 
@@ -1262,6 +1266,7 @@ Below is a complete list of available icons:
1262
1266
  - IconTrashRounded
1263
1267
  - IconTrial
1264
1268
  - IconUnarchiv
1269
+ - IconUnblock
1265
1270
  - IconUnpin
1266
1271
  - IconUnpin2
1267
1272
  - IconUntrash
@@ -1992,7 +1997,6 @@ Below is a complete list of available icons:
1992
1997
  - IconGraduateCap2
1993
1998
  - IconHermesHelmet
1994
1999
  - IconInfinity
1995
- - IconInjection
1996
2000
  - IconJudgeGavel
1997
2001
  - IconLab
1998
2002
  - IconLifeVest
@@ -2001,9 +2005,6 @@ Below is a complete list of available icons:
2001
2005
  - IconMagicLamp
2002
2006
  - IconMakeItPop
2003
2007
  - IconMedal
2004
- - IconMedicinePill
2005
- - IconMedicinePill2
2006
- - IconMedicineTablett
2007
2008
  - IconMouth
2008
2009
  - IconNailedIt
2009
2010
  - IconOrganisation
@@ -6876,7 +6876,7 @@
6876
6876
  },
6877
6877
  {
6878
6878
  "category": "Interface General",
6879
- "svg": "<path d=\"M18.7175 5.28249C16.9984 3.56332 14.6234 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 14.6234 3.56332 16.9984 5.28249 18.7175M18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175M18.7175 5.28249L5.28249 18.7175\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
6879
+ "svg": "<path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C9.37665 21.5 7.00165 20.4367 5.28249 18.7175C3.56332 16.9984 2.5 14.6234 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C14.6234 2.5 16.9984 3.56332 18.7175 5.28249C20.4367 7.00165 21.5 9.37665 21.5 12Z\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M18.4413 5.55859L5.46924 18.5307\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
6880
6880
  "iconName": "circle-ban-sign, circle, block, ads",
6881
6881
  "variant": {
6882
6882
  "join": "round",
@@ -9256,7 +9256,7 @@
9256
9256
  },
9257
9257
  {
9258
9258
  "category": "Devices & Signals",
9259
- "svg": "<path d=\"M15.5 10.5C15.5 9.94771 15.9477 9.5 16.5 9.5H21.5C22.0523 9.5 22.5 9.94772 22.5 10.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H16.5C15.9477 20.5 15.5 20.0523 15.5 19.5V10.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 19.5H2.5C1.94772 19.5 1.5 19.0523 1.5 18.5V17.5H13\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 7V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
9259
+ "svg": "<path d=\"M15.5 10.5C15.5 9.94771 15.9477 9.5 16.5 9.5H21.5C22.0523 9.5 22.5 9.94772 22.5 10.5V19.5C22.5 20.0523 22.0523 20.5 21.5 20.5H16.5C15.9477 20.5 15.5 20.0523 15.5 19.5V10.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 19.5H2.5C1.94772 19.5 1.5 19.0523 1.5 18.5V17.5H13\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 7V4.5C20.5 3.94772 20.0523 3.5 19.5 3.5H4.5C3.94772 3.5 3.5 3.94772 3.5 4.5V17.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
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.5 2.5L21.5 6.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 4.5L16.5 7.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.5 3.5L20.5 11.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.4998 5.5L6.20696 13.7929C5.81643 14.1834 5.81643 14.8166 6.20696 15.2071L8.79274 17.7929C9.18327 18.1834 9.81643 18.1834 10.207 17.7929L18.4998 9.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.5 20.5L7.5 16.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
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=\"M7.25 7.25L11 11\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"15.5\" cy=\"15.5\" r=\"6\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 21L14.5 10\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 9.90692C19.1233 8.02609 18.8751 5.55427 17.2554 3.93459C15.3426 2.0218 12.2414 2.0218 10.3286 3.93459L3.93459 10.3286C2.0218 12.2414 2.0218 15.3426 3.93459 17.2554C5.55417 18.875 8.02564 19.123 9.90643 18\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
16554
16554
  "iconName": "medicine-pill",
16555
16555
  "variant": {
@@ -16563,7 +16563,7 @@
16563
16563
  "componentName": "IconMedicinePill"
16564
16564
  },
16565
16565
  {
16566
- "category": "Things",
16566
+ "category": "Health & Medical",
16567
16567
  "svg": "<path d=\"M5.5 5.5L18.5 12\" stroke=\"currentColor\"/><ellipse cx=\"11.5\" cy=\"9\" rx=\"10\" ry=\"4.5\" stroke=\"currentColor\"/><path d=\"M1.5 9V15C1.5 17.4853 5.97715 19.5 11.5 19.5C17.0228 19.5 21.5 17.4853 21.5 15V9\" stroke=\"currentColor\"/>",
16568
16568
  "iconName": "medicine-pill-2, tablett",
16569
16569
  "variant": {
@@ -16577,7 +16577,7 @@
16577
16577
  "componentName": "IconMedicinePill2"
16578
16578
  },
16579
16579
  {
16580
- "category": "Things",
16580
+ "category": "Health & Medical",
16581
16581
  "svg": "<path d=\"M12.2486 4.25057L4.24861 12.2506C2.17755 14.3216 2.17755 17.6795 4.24861 19.7506C6.31968 21.8216 9.67755 21.8216 11.7486 19.7506L19.7486 11.7506C21.8197 9.6795 21.8197 6.32163 19.7486 4.25056C17.6775 2.1795 14.3197 2.1795 12.2486 4.25057Z\" stroke=\"currentColor\"/><path d=\"M8.5 8.5L15.5 15.5\" stroke=\"currentColor\"/>",
16582
16582
  "iconName": "medicine-tablett, pill",
16583
16583
  "variant": {
@@ -18748,7 +18748,7 @@
18748
18748
  },
18749
18749
  {
18750
18750
  "category": "Things",
18751
- "svg": "<g clip-path=\"url(#clip0_9082_25732)\"><path d=\"M15.8177 19.6119L10.9427 11.1681C9.96839 11.7306 9.11911 12.5097 8.28658 13.5677C6.48754 13.4516 4.75549 14.4516 3.52344 16.3177C1.03816 12.013 2.51303 6.50872 6.81767 4.02344C11.1223 1.53816 16.6266 3.01303 19.1119 7.31767C16.8798 7.45161 15.1478 8.45165 14.3488 10.0677\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.28516 13.5677C5.79987 9.26303 5.14222 4.98994 6.81625 4.02344C8.49027 3.05694 11.8621 5.76303 14.3473 10.0677C13.0148 10.2597 11.9155 10.6056 10.9412 11.1681\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"clip0_9082_25732\"><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs>",
18751
+ "svg": "<g clip-path=\"url(#clip0_15261_28220)\"><path d=\"M15.8177 19.6119L10.9427 11.1681C9.96839 11.7306 9.11911 12.5097 8.28658 13.5677C6.48754 13.4516 4.75549 14.4516 3.52344 16.3177C1.03816 12.013 2.51303 6.50872 6.81767 4.02344C11.1223 1.53816 16.6266 3.01303 19.1119 7.31767C16.8798 7.45161 15.1478 8.45165 14.3488 10.0677\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.28906 13.5677C5.80378 9.26303 5.14613 4.98994 6.82015 4.02344C8.49418 3.05694 11.866 5.76303 14.3512 10.0677C13.0187 10.2597 11.9194 10.6056 10.9451 11.1681\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"clip0_15261_28220\"><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs>",
18752
18752
  "iconName": "parasol,umbrella,vacation",
18753
18753
  "variant": {
18754
18754
  "join": "round",
@@ -26306,6 +26306,20 @@
26306
26306
  "packageName": "round-outlined-radius-1-stroke-1",
26307
26307
  "componentName": "IconUnarchiv"
26308
26308
  },
26309
+ {
26310
+ "category": "Interface General",
26311
+ "svg": "<circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M5.5 18.5L9.75 14.25\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M14.25 9.75L18.5 5.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
26312
+ "iconName": "unblock, unban",
26313
+ "variant": {
26314
+ "join": "round",
26315
+ "filled": "off",
26316
+ "radius": "1",
26317
+ "stroke": "1"
26318
+ },
26319
+ "createdAt": "2026-05-22T08:02:26.577334+00:00",
26320
+ "packageName": "round-outlined-radius-1-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 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5V21.5Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/>",
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-outlined-radius-1-stroke-1",
3
- "version": "1.1.244",
3
+ "version": "1.1.245",
4
4
  "style": "round-outlined-radius-1-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-1-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";