@central-icons-react-native/round-outlined-radius-1-stroke-2 1.1.244 → 1.1.245
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconCircleBanSign/index.js +1 -1
- package/IconCircleBanSign/index.js.map +1 -1
- package/IconCircleBanSign/index.mjs +1 -1
- package/IconCircleBanSign/index.mjs.map +1 -1
- package/IconDevices2/index.js +1 -1
- package/IconDevices2/index.js.map +1 -1
- package/IconDevices2/index.mjs +1 -1
- package/IconDevices2/index.mjs.map +1 -1
- package/IconParasol/index.js +1 -1
- package/IconParasol/index.js.map +1 -1
- package/IconParasol/index.mjs +1 -1
- package/IconParasol/index.mjs.map +1 -1
- package/IconUnblock/index.d.ts +4 -0
- package/IconUnblock/index.js +2 -0
- package/IconUnblock/index.js.map +1 -0
- package/IconUnblock/index.mjs +2 -0
- package/IconUnblock/index.mjs.map +1 -0
- package/README.md +5 -4
- package/filtered-icons.json +21 -7
- package/icons/index.d.ts +1 -0
- package/icons-index.json +12 -10
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +6 -5
- package/tsx-icons.json +10 -3
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var f=Object.create;var n=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)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=B(o,t))||C.enumerable});return r};var c=(r,o,e)=>(e=r!=null?f(g(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>a(n({},"__esModule",{value:!0}),r);var k={};P(k,{IconCircleBanSign:()=>u,default:()=>h});module.exports=d(k);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 s=require("react-native-svg"),u=r=>p.default.createElement(i,{...r},p.default.createElement(s.Path,{d:"M21 12C21 16.9706 16.9706 21 12 21C9.51472 21 7.26472 19.9926 5.63604 18.364C4.00736 16.7353 3 14.4853 3 12C3 7.02944 7.02944 3 12 3C14.4853 3 16.7353 4.00736 18.364 5.63604C19.9926 7.26472 21 9.51472 21 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),p.default.createElement(s.Path,{d:"M18 6L6 18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),h=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=\"
|
|
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 12C21 16.9706 16.9706 21 12 21C9.51472 21 7.26472 19.9926 5.63604 18.364C4.00736 16.7353 3 14.4853 3 12C3 7.02944 7.02944 3 12 3C14.4853 3 16.7353 4.00736 18.364 5.63604C19.9926 7.26472 21 9.51472 21 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M18 6L6 18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\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,kNACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,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 e from"react";import
|
|
1
|
+
import e from"react";import s from"react";import{Svg as C}from"react-native-svg";var t=({children:o,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"},o);import{Path as n}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(n,{d:"M21 12C21 16.9706 16.9706 21 12 21C9.51472 21 7.26472 19.9926 5.63604 18.364C4.00736 16.7353 3 14.4853 3 12C3 7.02944 7.02944 3 12 3C14.4853 3 16.7353 4.00736 18.364 5.63604C19.9926 7.26472 21 9.51472 21 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.createElement(n,{d:"M18 6L6 18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),x=a;export{a 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=\"
|
|
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 12C21 16.9706 16.9706 21 12 21C9.51472 21 7.26472 19.9926 5.63604 18.364C4.00736 16.7353 3 14.4853 3 12C3 7.02944 7.02944 3 12 3C14.4853 3 16.7353 4.00736 18.364 5.63604C19.9926 7.26472 21 9.51472 21 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M18 6L6 18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\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,kNACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCircleBanSign","props","React","CentralIconBase","IconCircleBanSign_default"]}
|
package/IconDevices2/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var m=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!I.call(r,t)&&t!==e&&s(r,t,{get:()=>o[t],enumerable:!(C=k(o,t))||C.enumerable});return r};var a=(r,o,e)=>(e=r!=null?m(B(r)):{},i(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>i(s({},"__esModule",{value:!0}),r);var P={};h(P,{IconDevices2:()=>l,default:()=>L});module.exports=x(P);var n=a(require("react"));var u=a(require("react")),c=require("react-native-svg"),d=({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 p=require("react-native-svg"),l=r=>n.default.createElement(d,{...r},n.default.createElement(p.Path,{d:"M16 11C16 10.4477 16.4477 10 17 10L21 10C21.5523 10 22 10.4477 22 11V19C22 19.5523 21.5523 20 21 20H17C16.4477 20 16 19.5523 16 19V11Z",stroke:"currentColor",strokeWidth:"1.9",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M12.5 19.5H3C2.44772 19.5 2 19.0523 2 18.5V16H12.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M20 6V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4
|
|
1
|
+
"use strict";var m=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!I.call(r,t)&&t!==e&&s(r,t,{get:()=>o[t],enumerable:!(C=k(o,t))||C.enumerable});return r};var a=(r,o,e)=>(e=r!=null?m(B(r)):{},i(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>i(s({},"__esModule",{value:!0}),r);var P={};h(P,{IconDevices2:()=>l,default:()=>L});module.exports=x(P);var n=a(require("react"));var u=a(require("react")),c=require("react-native-svg"),d=({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 p=require("react-native-svg"),l=r=>n.default.createElement(d,{...r},n.default.createElement(p.Path,{d:"M16 11C16 10.4477 16.4477 10 17 10L21 10C21.5523 10 22 10.4477 22 11V19C22 19.5523 21.5523 20 21 20H17C16.4477 20 16 19.5523 16 19V11Z",stroke:"currentColor",strokeWidth:"1.9",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M12.5 19.5H3C2.44772 19.5 2 19.0523 2 18.5V16H12.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M20 6V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4 5V15.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),L=l;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=\"M16 11C16 10.4477 16.4477 10 17 10L21 10C21.5523 10 22 10.4477 22 11V19C22 19.5523 21.5523 20 21 20H17C16.4477 20 16 19.5523 16 19V11Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.9\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 19.5H3C2.44772 19.5 2 19.0523 2 18.5V16H12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20 6V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4
|
|
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=\"M16 11C16 10.4477 16.4477 10 17 10L21 10C21.5523 10 22 10.4477 22 11V19C22 19.5523 21.5523 20 21 20H17C16.4477 20 16 19.5523 16 19V11Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.9\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 19.5H3C2.44772 19.5 2 19.0523 2 18.5V16H12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20 6V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4 5V15.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,yIACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qDACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oEACF,OAAO,eACP,YAAY,IACZ,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"]}
|
package/IconDevices2/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import p from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:r=24,...s})=>p.createElement(C,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var i=e=>o.createElement(n,{...e},o.createElement(t,{d:"M16 11C16 10.4477 16.4477 10 17 10L21 10C21.5523 10 22 10.4477 22 11V19C22 19.5523 21.5523 20 21 20H17C16.4477 20 16 19.5523 16 19V11Z",stroke:"currentColor",strokeWidth:"1.9",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M12.5 19.5H3C2.44772 19.5 2 19.0523 2 18.5V16H12.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M20 6V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4
|
|
1
|
+
import o from"react";import p from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:r=24,...s})=>p.createElement(C,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var i=e=>o.createElement(n,{...e},o.createElement(t,{d:"M16 11C16 10.4477 16.4477 10 17 10L21 10C21.5523 10 22 10.4477 22 11V19C22 19.5523 21.5523 20 21 20H17C16.4477 20 16 19.5523 16 19V11Z",stroke:"currentColor",strokeWidth:"1.9",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M12.5 19.5H3C2.44772 19.5 2 19.0523 2 18.5V16H12.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M20 6V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4 5V15.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=i;export{i 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=\"M16 11C16 10.4477 16.4477 10 17 10L21 10C21.5523 10 22 10.4477 22 11V19C22 19.5523 21.5523 20 21 20H17C16.4477 20 16 19.5523 16 19V11Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.9\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 19.5H3C2.44772 19.5 2 19.0523 2 18.5V16H12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20 6V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4
|
|
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=\"M16 11C16 10.4477 16.4477 10 17 10L21 10C21.5523 10 22 10.4477 22 11V19C22 19.5523 21.5523 20 21 20H17C16.4477 20 16 19.5523 16 19V11Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.9\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.5 19.5H3C2.44772 19.5 2 19.0523 2 18.5V16H12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20 6V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4 5V15.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,yIACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qDACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDevices2","props","React","CentralIconBase","IconDevices2_default"]}
|
package/IconParasol/index.js
CHANGED
|
@@ -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_25684)"},n.default.createElement(t.Path,{d:"M16.
|
|
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_25684)"},n.default.createElement(t.Path,{d:"M16.4974 19.7945L11.6224 11.3508C10.6481 11.9133 9.7988 12.6923 8.96626 13.7503C7.16722 13.6343 5.43517 14.6343 4.20312 16.5003C1.71784 12.1956 3.19272 6.69134 7.49735 4.20605C11.802 1.72077 17.3063 3.19565 19.7916 7.50028C17.5595 7.63423 15.8275 8.63426 15.0284 10.2503",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8.96875 13.7503C6.48347 9.44565 5.82581 5.17255 7.49984 4.20605C9.17386 3.23956 12.5456 5.94565 15.0309 10.2503C13.6984 10.4423 12.5991 10.7883 11.6248 11.3508",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),n.default.createElement(t.Defs,null,n.default.createElement(t.ClipPath,{id:"clip0_9082_25684"},n.default.createElement(t.Rect,{width:"24",height:"24",fill:"white"})))),g=u;0&&(module.exports={IconParasol});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconParasol/index.js.map
CHANGED
|
@@ -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_25684)\">\n <Path\n d=\"M16.
|
|
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_25684)\">\n <Path\n d=\"M16.4974 19.7945L11.6224 11.3508C10.6481 11.9133 9.7988 12.6923 8.96626 13.7503C7.16722 13.6343 5.43517 14.6343 4.20312 16.5003C1.71784 12.1956 3.19272 6.69134 7.49735 4.20605C11.802 1.72077 17.3063 3.19565 19.7916 7.50028C17.5595 7.63423 15.8275 8.63426 15.0284 10.2503\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.96875 13.7503C6.48347 9.44565 5.82581 5.17255 7.49984 4.20605C9.17386 3.23956 12.5456 5.94565 15.0309 10.2503C13.6984 10.4423 12.5991 10.7883 11.6248 11.3508\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_9082_25684\">\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,iRACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mKACF,OAAO,eACP,YAAY,IACZ,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"]}
|
package/IconParasol/index.mjs
CHANGED
|
@@ -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_25684)"},r.createElement(n,{d:"M16.
|
|
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_25684)"},r.createElement(n,{d:"M16.4974 19.7945L11.6224 11.3508C10.6481 11.9133 9.7988 12.6923 8.96626 13.7503C7.16722 13.6343 5.43517 14.6343 4.20312 16.5003C1.71784 12.1956 3.19272 6.69134 7.49735 4.20605C11.802 1.72077 17.3063 3.19565 19.7916 7.50028C17.5595 7.63423 15.8275 8.63426 15.0284 10.2503",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M8.96875 13.7503C6.48347 9.44565 5.82581 5.17255 7.49984 4.20605C9.17386 3.23956 12.5456 5.94565 15.0309 10.2503C13.6984 10.4423 12.5991 10.7883 11.6248 11.3508",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),r.createElement(l,null,r.createElement(C,{id:"clip0_9082_25684"},r.createElement(h,{width:"24",height:"24",fill:"white"})))),x=m;export{m as IconParasol,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { 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_25684)\">\n <Path\n d=\"M16.
|
|
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_25684)\">\n <Path\n d=\"M16.4974 19.7945L11.6224 11.3508C10.6481 11.9133 9.7988 12.6923 8.96626 13.7503C7.16722 13.6343 5.43517 14.6343 4.20312 16.5003C1.71784 12.1956 3.19272 6.69134 7.49735 4.20605C11.802 1.72077 17.3063 3.19565 19.7916 7.50028C17.5595 7.63423 15.8275 8.63426 15.0284 10.2503\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.96875 13.7503C6.48347 9.44565 5.82581 5.17255 7.49984 4.20605C9.17386 3.23956 12.5456 5.94565 15.0309 10.2503C13.6984 10.4423 12.5991 10.7883 11.6248 11.3508\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_9082_25684\">\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,iRACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,mKACF,OAAO,eACP,YAAY,IACZ,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"]}
|
|
@@ -0,0 +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 h=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of k(o))!I.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(C=f(o,e))||C.enumerable});return r};var l=(r,o,t)=>(t=r!=null?d(B(r)):{},a(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>a(p({},"__esModule",{value:!0}),r);var g={};h(g,{IconUnblock:()=>u,default:()=>P});module.exports=x(g);var n=l(require("react"));var c=l(require("react")),m=require("react-native-svg"),i=({children:r,size:o=24,...t})=>c.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 s=require("react-native-svg"),u=r=>n.default.createElement(i,{...r},n.default.createElement(s.Path,{d:"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(s.Path,{d:"M6 18L9.5 14.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),n.default.createElement(s.Path,{d:"M14.5 9.5L18 6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),P=u;0&&(module.exports={IconUnblock});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconUnblock/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconUnblock: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M6 18L9.5 14.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M14.5 9.5L18 6\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,EAAqB,4BAERC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oHACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,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:t,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"},t);import{Path as e}from"react-native-svg";var a=t=>o.createElement(n,{...t},o.createElement(e,{d:"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M6 18L9.5 14.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M14.5 9.5L18 6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),I=a;export{a as IconUnblock,I 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 d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M6 18L9.5 14.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M14.5 9.5L18 6\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,QAAAG,MAAY,mBAEd,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oHACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,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
|
package/filtered-icons.json
CHANGED
|
@@ -6876,7 +6876,7 @@
|
|
|
6876
6876
|
},
|
|
6877
6877
|
{
|
|
6878
6878
|
"category": "Interface General",
|
|
6879
|
-
"svg": "<path d=\"
|
|
6879
|
+
"svg": "<path d=\"M21 12C21 16.9706 16.9706 21 12 21C9.51472 21 7.26472 19.9926 5.63604 18.364C4.00736 16.7353 3 14.4853 3 12C3 7.02944 7.02944 3 12 3C14.4853 3 16.7353 4.00736 18.364 5.63604C19.9926 7.26472 21 9.51472 21 12Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M18 6L6 18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
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=\"M16 11C16 10.4477 16.4477 10 17 10L21 10C21.5523 10 22 10.4477 22 11V19C22 19.5523 21.5523 20 21 20H17C16.4477 20 16 19.5523 16 19V11Z\" stroke=\"currentColor\" stroke-width=\"1.9\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.5 19.5H3C2.44772 19.5 2 19.0523 2 18.5V16H12.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20 6V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4
|
|
9259
|
+
"svg": "<path d=\"M16 11C16 10.4477 16.4477 10 17 10L21 10C21.5523 10 22 10.4477 22 11V19C22 19.5523 21.5523 20 21 20H17C16.4477 20 16 19.5523 16 19V11Z\" stroke=\"currentColor\" stroke-width=\"1.9\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.5 19.5H3C2.44772 19.5 2 19.0523 2 18.5V16H12.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20 6V5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4 5V15.75\" stroke=\"currentColor\" stroke-width=\"2\" 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": "
|
|
14592
|
+
"category": "Health & Medical",
|
|
14593
14593
|
"svg": "<path d=\"M18 3L21 6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 4.5L17 7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 4L20 11\" stroke=\"currentColor\" stroke-width=\"2\" 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-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3 21L7.5 16.5\" stroke=\"currentColor\" stroke-width=\"2\" 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": "
|
|
16552
|
+
"category": "Health & Medical",
|
|
16553
16553
|
"svg": "<path d=\"M17.4541 10.0962C18.6109 8.31497 18.4083 5.90826 16.8462 4.34619C15.0513 2.55127 12.1411 2.55127 10.3462 4.34619L4.34619 10.3462C2.55127 12.1411 2.55127 15.0513 4.34619 16.8462C5.90826 18.4083 8.31497 18.6109 10.0962 17.4541\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 7.5L11 11\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"15.5\" cy=\"15.5\" r=\"5.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 20.5L14.5 10.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
16554
16554
|
"iconName": "medicine-pill",
|
|
16555
16555
|
"variant": {
|
|
@@ -16563,7 +16563,7 @@
|
|
|
16563
16563
|
"componentName": "IconMedicinePill"
|
|
16564
16564
|
},
|
|
16565
16565
|
{
|
|
16566
|
-
"category": "
|
|
16566
|
+
"category": "Health & Medical",
|
|
16567
16567
|
"svg": "<ellipse cx=\"11.5\" cy=\"9\" rx=\"9.5\" ry=\"4\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M2 9V15C2 17.2091 6.25329 19 11.5 19C16.7467 19 21 17.2091 21 15V9\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M6 6L18 12\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
16568
16568
|
"iconName": "medicine-pill-2, tablett",
|
|
16569
16569
|
"variant": {
|
|
@@ -16577,7 +16577,7 @@
|
|
|
16577
16577
|
"componentName": "IconMedicinePill2"
|
|
16578
16578
|
},
|
|
16579
16579
|
{
|
|
16580
|
-
"category": "
|
|
16580
|
+
"category": "Health & Medical",
|
|
16581
16581
|
"svg": "<path d=\"M11.7486 4.75057L4.74861 11.7506C2.67755 13.8216 2.67755 17.1795 4.74861 19.2506C6.81968 21.3216 10.1775 21.3216 12.2486 19.2506L19.2486 12.2506C21.3197 10.1795 21.3197 6.82163 19.2486 4.75057C17.1775 2.6795 13.8197 2.6795 11.7486 4.75057Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M8.5 8.5L15.5 15.5\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
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_25684)\"><path d=\"M16.
|
|
18751
|
+
"svg": "<g clip-path=\"url(#clip0_9082_25684)\"><path d=\"M16.4974 19.7945L11.6224 11.3508C10.6481 11.9133 9.7988 12.6923 8.96626 13.7503C7.16722 13.6343 5.43517 14.6343 4.20312 16.5003C1.71784 12.1956 3.19272 6.69134 7.49735 4.20605C11.802 1.72077 17.3063 3.19565 19.7916 7.50028C17.5595 7.63423 15.8275 8.63426 15.0284 10.2503\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.96875 13.7503C6.48347 9.44565 5.82581 5.17255 7.49984 4.20605C9.17386 3.23956 12.5456 5.94565 15.0309 10.2503C13.6984 10.4423 12.5991 10.7883 11.6248 11.3508\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"clip0_9082_25684\"><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-2",
|
|
26307
26307
|
"componentName": "IconUnarchiv"
|
|
26308
26308
|
},
|
|
26309
|
+
{
|
|
26310
|
+
"category": "Interface General",
|
|
26311
|
+
"svg": "<path d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M6 18L9.5 14.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M14.5 9.5L18 6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
26312
|
+
"iconName": "unblock, unban",
|
|
26313
|
+
"variant": {
|
|
26314
|
+
"join": "round",
|
|
26315
|
+
"filled": "off",
|
|
26316
|
+
"radius": "1",
|
|
26317
|
+
"stroke": "2"
|
|
26318
|
+
},
|
|
26319
|
+
"createdAt": "2026-05-22T08:02:26.577334+00:00",
|
|
26320
|
+
"packageName": "round-outlined-radius-1-stroke-2",
|
|
26321
|
+
"componentName": "IconUnblock"
|
|
26322
|
+
},
|
|
26309
26323
|
{
|
|
26310
26324
|
"category": "Photography & Video",
|
|
26311
26325
|
"svg": "<path d=\"M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V21Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M9.5 6.25C9.5 6.80228 9.05228 7.25 8.5 7.25C7.94772 7.25 7.5 6.80228 7.5 6.25C7.5 5.69772 7.94772 5.25 8.5 5.25C9.05228 5.25 9.5 5.69772 9.5 6.25Z\" fill=\"currentColor\"/><path d=\"M6 6.25C6 6.80228 5.55228 7.25 5 7.25C4.44772 7.25 4 6.80228 4 6.25C4 5.69772 4.44772 5.25 5 5.25C5.55228 5.25 6 5.69772 6 6.25Z\" fill=\"currentColor\"/><path d=\"M9.5 17.75C9.5 18.3023 9.05228 18.75 8.5 18.75C7.94772 18.75 7.5 18.3023 7.5 17.75C7.5 17.1977 7.94772 16.75 8.5 16.75C9.05228 16.75 9.5 17.1977 9.5 17.75Z\" fill=\"currentColor\"/><path d=\"M9.25 3.25C9.25 3.66421 8.91421 4 8.5 4C8.08579 4 7.75 3.66421 7.75 3.25C7.75 2.83579 8.08579 2.5 8.5 2.5C8.91421 2.5 9.25 2.83579 9.25 3.25Z\" fill=\"currentColor\"/><path d=\"M3 10C3 10.4142 2.66421 10.75 2.25 10.75C1.83579 10.75 1.5 10.4142 1.5 10C1.5 9.58579 1.83579 9.25 2.25 9.25C2.66421 9.25 3 9.58579 3 10Z\" fill=\"currentColor\"/><path d=\"M3 14C3 14.4142 2.66421 14.75 2.25 14.75C1.83579 14.75 1.5 14.4142 1.5 14C1.5 13.5858 1.83579 13.25 2.25 13.25C2.66421 13.25 3 13.5858 3 14Z\" fill=\"currentColor\"/><path d=\"M9.25 20.75C9.25 21.1642 8.91421 21.5 8.5 21.5C8.08579 21.5 7.75 21.1642 7.75 20.75C7.75 20.3358 8.08579 20 8.5 20C8.91421 20 9.25 20.3358 9.25 20.75Z\" fill=\"currentColor\"/><path d=\"M10 10C10 10.8284 9.32843 11.5 8.5 11.5C7.67157 11.5 7 10.8284 7 10C7 9.17157 7.67157 8.5 8.5 8.5C9.32843 8.5 10 9.17157 10 10Z\" fill=\"currentColor\"/><path d=\"M10 14C10 14.8284 9.32843 15.5 8.5 15.5C7.67157 15.5 7 14.8284 7 14C7 13.1716 7.67157 12.5 8.5 12.5C9.32843 12.5 10 13.1716 10 14Z\" fill=\"currentColor\"/><path d=\"M6 10C6 10.5523 5.55228 11 5 11C4.44772 11 4 10.5523 4 10C4 9.44772 4.44772 9 5 9C5.55228 9 6 9.44772 6 10Z\" fill=\"currentColor\"/><path d=\"M6 14C6 14.5523 5.55228 15 5 15C4.44772 15 4 14.5523 4 14C4 13.4477 4.44772 13 5 13C5.55228 13 6 13.4477 6 14Z\" fill=\"currentColor\"/><path d=\"M6 17.75C6 18.3023 5.55228 18.75 5 18.75C4.44772 18.75 4 18.3023 4 17.75C4 17.1977 4.44772 16.75 5 16.75C5.55228 16.75 6 17.1977 6 17.75Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-1-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.245",
|
|
4
4
|
"style": "round-outlined-radius-1-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-1-stroke-2/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
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":
|
|
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":
|
|
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":
|
|
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";
|