@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.243 → 1.1.244
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/IconMask1/index.d.ts +4 -0
- package/IconMask1/index.js +2 -0
- package/IconMask1/index.js.map +1 -0
- package/IconMask1/index.mjs +2 -0
- package/IconMask1/index.mjs.map +1 -0
- package/IconMedicalCross/index.d.ts +4 -0
- package/IconMedicalCross/index.js +2 -0
- package/IconMedicalCross/index.js.map +1 -0
- package/IconMedicalCross/index.mjs +2 -0
- package/IconMedicalCross/index.mjs.map +1 -0
- package/IconMedicalCrossCircle/index.d.ts +4 -0
- package/IconMedicalCrossCircle/index.js +2 -0
- package/IconMedicalCrossCircle/index.js.map +1 -0
- package/IconMedicalCrossCircle/index.mjs +2 -0
- package/IconMedicalCrossCircle/index.mjs.map +1 -0
- package/IconMedicalCrossSquare/index.d.ts +4 -0
- package/IconMedicalCrossSquare/index.js +2 -0
- package/IconMedicalCrossSquare/index.js.map +1 -0
- package/IconMedicalCrossSquare/index.mjs +2 -0
- package/IconMedicalCrossSquare/index.mjs.map +1 -0
- package/README.md +7 -0
- package/filtered-icons.json +56 -0
- package/icons/index.d.ts +4 -0
- package/icons-index.json +15 -2
- package/index.d.ts +4 -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 +8 -1
- package/tsx-icons.json +28 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of f(o))!B.call(r,s)&&s!==t&&p(r,s,{get:()=>o[s],enumerable:!(C=c(o,s))||C.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(h(r)):{},l(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>l(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconMask1:()=>k,default:()=>P});module.exports=x(g);var e=m(require("react"));var a=m(require("react")),d=require("react-native-svg"),i=({children:r,size:o=24,...t})=>a.default.createElement(d.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 n=require("react-native-svg"),k=r=>e.default.createElement(i,{...r},e.default.createElement(n.Path,{d:"M5 15.2639V6L12 4L19 6V15.2639C19 16.0215 18.572 16.714 17.8944 17.0528L12 20L6.10557 17.0528C5.428 16.714 5 16.0215 5 15.2639Z",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M9 10H15",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M9 14H15",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M19.5 8.5H22V13H19.5",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M4.5 8.5H2V13H4.5",stroke:"currentColor",strokeWidth:"2"})),P=k;0&&(module.exports={IconMask1});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMask1/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 IconMask1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5 15.2639V6L12 4L19 6V15.2639C19 16.0215 18.572 16.714 17.8944 17.0528L12 20L6.10557 17.0528C5.428 16.714 5 16.0215 5 15.2639Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path d=\"M9 10H15\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M9 14H15\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M19.5 8.5H22V13H19.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M4.5 8.5H2V13H4.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconMask1;\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,eAAAE,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,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kIACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,EACzD,EAAAA,QAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,EACzD,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,YAAY,IAAI,EACrE,EAAAA,QAAA,cAAC,QAAK,EAAE,oBAAoB,OAAO,eAAe,YAAY,IAAI,CACpE,EAIGE,EAAQJ","names":["IconMask1_exports","__export","IconMask1","IconMask1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMask1","props","React","CentralIconBase","IconMask1_default"]}
|
|
@@ -0,0 +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 l=e=>o.createElement(n,{...e},o.createElement(t,{d:"M5 15.2639V6L12 4L19 6V15.2639C19 16.0215 18.572 16.714 17.8944 17.0528L12 20L6.10557 17.0528C5.428 16.714 5 16.0215 5 15.2639Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M9 10H15",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M9 14H15",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M19.5 8.5H22V13H19.5",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M4.5 8.5H2V13H4.5",stroke:"currentColor",strokeWidth:"2"})),B=l;export{l as IconMask1,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMask1/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 IconMask1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5 15.2639V6L12 4L19 6V15.2639C19 16.0215 18.572 16.714 17.8944 17.0528L12 20L6.10557 17.0528C5.428 16.714 5 16.0215 5 15.2639Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path d=\"M9 10H15\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M9 14H15\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M19.5 8.5H22V13H19.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M4.5 8.5H2V13H4.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconMask1;\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,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kIACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,EACzDG,EAAA,cAACH,EAAA,CAAK,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,EACzDG,EAAA,cAACH,EAAA,CAAK,EAAE,uBAAuB,OAAO,eAAe,YAAY,IAAI,EACrEG,EAAA,cAACH,EAAA,CAAK,EAAE,oBAAoB,OAAO,eAAe,YAAY,IAAI,CACpE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMask1","props","React","CentralIconBase","IconMask1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var n=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var v=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},a=(o,r,e,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of u(r))!I.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(l=d(r,t))||l.enumerable});return o};var s=(o,r,e)=>(e=o!=null?i(B(o)):{},a(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),x=o=>a(n({},"__esModule",{value:!0}),o);var g={};v(g,{IconMedicalCross:()=>f,default:()=>P});module.exports=x(g);var p=s(require("react"));var m=s(require("react")),C=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(C.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var L=require("react-native-svg"),f=o=>p.default.createElement(c,{...o},p.default.createElement(L.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M9 3L9 9H3L3 15L9 15L9 21L15 21L15 15L21 15L21 9L15 9L15 3L9 3Z",stroke:"currentColor",strokeWidth:"2"})),P=f;0&&(module.exports={IconMedicalCross});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMedicalCross/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 IconMedicalCross: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M9 3L9 9H3L3 15L9 15L9 21L15 21L15 15L21 15L21 9L15 9L15 3L9 3Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMedicalCross;\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,sBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kEACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconMedicalCross_exports","__export","IconMedicalCross","IconMedicalCross_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMedicalCross","props","React","CentralIconBase","IconMedicalCross_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:r,size:o=24,...n})=>p.createElement(l,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as a}from"react-native-svg";var s=r=>t.createElement(e,{...r},t.createElement(a,{fillRule:"evenodd",clipRule:"evenodd",d:"M9 3L9 9H3L3 15L9 15L9 21L15 21L15 15L21 15L21 9L15 9L15 3L9 3Z",stroke:"currentColor",strokeWidth:"2"})),I=s;export{s as IconMedicalCross,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMedicalCross/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 IconMedicalCross: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M9 3L9 9H3L3 15L9 15L9 21L15 21L15 15L21 15L21 9L15 9L15 3L9 3Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMedicalCross;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,kEACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMedicalCross","props","React","CentralIconBase","IconMedicalCross_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},c=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of x(o))!I.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=u(o,t))||s.enumerable});return r};var C=(r,o,e)=>(e=r!=null?f(B(r)):{},c(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>c(n({},"__esModule",{value:!0}),r);var h={};v(h,{IconMedicalCrossCircle:()=>d,default:()=>g});module.exports=P(h);var p=C(require("react"));var a=C(require("react")),i=require("react-native-svg"),m=({children:r,size:o=24,...e})=>a.default.createElement(i.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 l=require("react-native-svg"),d=r=>p.default.createElement(m,{...r},p.default.createElement(l.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.5 10.5V8H10.5V10.5H8V13.5H10.5V16H13.5V13.5H16V10.5H13.5Z",stroke:"currentColor",strokeWidth:"2"})),g=d;0&&(module.exports={IconMedicalCrossCircle});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMedicalCrossCircle/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 IconMedicalCrossCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.5 10.5V8H10.5V10.5H8V13.5H10.5V16H13.5V13.5H16V10.5H13.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMedicalCrossCircle;\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,4BAAAE,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,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,gEACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconMedicalCrossCircle_exports","__export","IconMedicalCrossCircle","IconMedicalCrossCircle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMedicalCrossCircle","props","React","CentralIconBase","IconMedicalCrossCircle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(l,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as s,Path as c}from"react-native-svg";var C=o=>e.createElement(t,{...o},e.createElement(s,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),e.createElement(c,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.5 10.5V8H10.5V10.5H8V13.5H10.5V16H13.5V13.5H16V10.5H13.5Z",stroke:"currentColor",strokeWidth:"2"})),v=C;export{C as IconMedicalCrossCircle,v as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMedicalCrossCircle/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 IconMedicalCrossCircle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.5 10.5V8H10.5V10.5H8V13.5H10.5V16H13.5V13.5H16V10.5H13.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMedicalCrossCircle;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEI,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,gEACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconMedicalCrossCircle","props","React","CentralIconBase","IconMedicalCrossCircle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var H=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var V=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!I.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=f(o,t))||s.enumerable});return r};var C=(r,o,e)=>(e=r!=null?u(H(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var P={};V(P,{IconMedicalCrossSquare:()=>i,default:()=>x});module.exports=v(P);var p=C(require("react"));var m=C(require("react")),c=require("react-native-svg"),d=({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 l=require("react-native-svg"),i=r=>p.default.createElement(d,{...r},p.default.createElement(l.Path,{d:"M20 4H4V20H20V4Z",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.5 10.5V8H10.5V10.5H8V13.5H10.5V16H13.5V13.5H16V10.5H13.5Z",stroke:"currentColor",strokeWidth:"2"})),x=i;0&&(module.exports={IconMedicalCrossSquare});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMedicalCrossSquare/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 IconMedicalCrossSquare: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M20 4H4V20H20V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.5 10.5V8H10.5V10.5H8V13.5H10.5V16H13.5V13.5H16V10.5H13.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMedicalCrossSquare;\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,4BAAAE,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,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,EACjE,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,gEACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconMedicalCrossSquare_exports","__export","IconMedicalCrossSquare","IconMedicalCrossSquare_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMedicalCrossSquare","props","React","CentralIconBase","IconMedicalCrossSquare_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import l from"react";import{Svg as s}from"react-native-svg";var t=({children:o,size:r=24,...p})=>l.createElement(s,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(n,{d:"M20 4H4V20H20V4Z",stroke:"currentColor",strokeWidth:"2"}),e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.5 10.5V8H10.5V10.5H8V13.5H10.5V16H13.5V13.5H16V10.5H13.5Z",stroke:"currentColor",strokeWidth:"2"})),I=a;export{a as IconMedicalCrossSquare,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMedicalCrossSquare/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 IconMedicalCrossSquare: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M20 4H4V20H20V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.5 10.5V8H10.5V10.5H8V13.5H10.5V16H13.5V13.5H16V10.5H13.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMedicalCrossSquare;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,EACjEG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,gEACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMedicalCrossSquare","props","React","CentralIconBase","IconMedicalCrossSquare_default"]}
|
package/README.md
CHANGED
|
@@ -1063,6 +1063,13 @@ Below is a complete list of available icons:
|
|
|
1063
1063
|
- IconTouch
|
|
1064
1064
|
- IconTouchGrass
|
|
1065
1065
|
|
|
1066
|
+
### Health & Medical
|
|
1067
|
+
|
|
1068
|
+
- IconMask1
|
|
1069
|
+
- IconMedicalCross
|
|
1070
|
+
- IconMedicalCrossCircle
|
|
1071
|
+
- IconMedicalCrossSquare
|
|
1072
|
+
|
|
1066
1073
|
### Interface General
|
|
1067
1074
|
|
|
1068
1075
|
- IconAnchor1
|
package/filtered-icons.json
CHANGED
|
@@ -16324,6 +16324,20 @@
|
|
|
16324
16324
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
16325
16325
|
"componentName": "IconMask"
|
|
16326
16326
|
},
|
|
16327
|
+
{
|
|
16328
|
+
"category": "Health & Medical",
|
|
16329
|
+
"svg": "<path d=\"M5 15.2639V6L12 4L19 6V15.2639C19 16.0215 18.572 16.714 17.8944 17.0528L12 20L6.10557 17.0528C5.428 16.714 5 16.0215 5 15.2639Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M9 10H15\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M9 14H15\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M19.5 8.5H22V13H19.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M4.5 8.5H2V13H4.5\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
16330
|
+
"iconName": "mask, medical-mask, covid",
|
|
16331
|
+
"variant": {
|
|
16332
|
+
"join": "square",
|
|
16333
|
+
"filled": "off",
|
|
16334
|
+
"radius": "0",
|
|
16335
|
+
"stroke": "2"
|
|
16336
|
+
},
|
|
16337
|
+
"createdAt": "2026-05-21T13:02:28.502392+00:00",
|
|
16338
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
16339
|
+
"componentName": "IconMask1"
|
|
16340
|
+
},
|
|
16327
16341
|
{
|
|
16328
16342
|
"category": "Social Media & Brands",
|
|
16329
16343
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.9683 17.2439C18.4742 16.9446 20.6561 15.4006 20.9304 13.9898C21.3625 11.7674 21.3268 8.56632 21.3268 8.56632C21.3268 4.22771 18.4842 2.95599 18.4842 2.95599C17.051 2.29772 14.5899 2.0209 12.033 2H11.9702C9.41328 2.0209 6.95379 2.29772 5.52045 2.95599C5.52045 2.95599 2.67779 4.22771 2.67779 8.56632C2.67779 8.82934 2.67643 9.10599 2.67501 9.39399C2.67108 10.1938 2.66672 11.0812 2.68986 12.0074C2.79308 16.2504 3.46773 20.432 7.39063 21.4703C9.19939 21.9491 10.7523 22.0493 12.003 21.9805C14.2712 21.8548 15.5444 21.1711 15.5444 21.1711L15.4696 19.5254C15.4696 19.5254 13.8488 20.0365 12.0285 19.9742C10.225 19.9124 8.32108 19.7797 8.02939 17.5655C8.00246 17.371 7.98899 17.163 7.98899 16.9446C7.98899 16.9446 9.75939 17.3774 12.003 17.4802C13.375 17.5431 14.6616 17.3998 15.9683 17.2439ZM17.9739 14.1562V8.90285C17.9739 7.82919 17.7006 6.97599 17.1516 6.34477C16.5852 5.71354 15.8436 5.38996 14.9232 5.38996C13.858 5.38996 13.0515 5.79931 12.5183 6.61814L11.9998 7.48717L11.4814 6.61814C10.9481 5.79931 10.1416 5.38996 9.07657 5.38996C8.15602 5.38996 7.41446 5.71354 6.84821 6.34477C6.2991 6.97599 6.02572 7.82919 6.02572 8.90285V14.1562H8.107V9.05726C8.107 7.98241 8.55924 7.43685 9.46383 7.43685C10.464 7.43685 10.9654 8.08402 10.9654 9.36371V12.1547H13.0344V9.36371C13.0344 8.08402 13.5356 7.43685 14.5358 7.43685C15.4404 7.43685 15.8927 7.98241 15.8927 9.05726V14.1562H17.9739Z\" fill=\"currentColor\"/>",
|
|
@@ -16492,6 +16506,48 @@
|
|
|
16492
16506
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
16493
16507
|
"componentName": "IconMedal"
|
|
16494
16508
|
},
|
|
16509
|
+
{
|
|
16510
|
+
"category": "Health & Medical",
|
|
16511
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 3L9 9H3L3 15L9 15L9 21L15 21L15 15L21 15L21 9L15 9L15 3L9 3Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
16512
|
+
"iconName": "medical-cross, first-aid, emergency",
|
|
16513
|
+
"variant": {
|
|
16514
|
+
"join": "square",
|
|
16515
|
+
"filled": "off",
|
|
16516
|
+
"radius": "0",
|
|
16517
|
+
"stroke": "2"
|
|
16518
|
+
},
|
|
16519
|
+
"createdAt": "2026-05-21T13:02:28.502392+00:00",
|
|
16520
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
16521
|
+
"componentName": "IconMedicalCross"
|
|
16522
|
+
},
|
|
16523
|
+
{
|
|
16524
|
+
"category": "Health & Medical",
|
|
16525
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-width=\"2\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.5 10.5V8H10.5V10.5H8V13.5H10.5V16H13.5V13.5H16V10.5H13.5Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
16526
|
+
"iconName": "medical-cross-circle, first-aid, emergency",
|
|
16527
|
+
"variant": {
|
|
16528
|
+
"join": "square",
|
|
16529
|
+
"filled": "off",
|
|
16530
|
+
"radius": "0",
|
|
16531
|
+
"stroke": "2"
|
|
16532
|
+
},
|
|
16533
|
+
"createdAt": "2026-05-21T13:02:28.502392+00:00",
|
|
16534
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
16535
|
+
"componentName": "IconMedicalCrossCircle"
|
|
16536
|
+
},
|
|
16537
|
+
{
|
|
16538
|
+
"category": "Health & Medical",
|
|
16539
|
+
"svg": "<path d=\"M20 4H4V20H20V4Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.5 10.5V8H10.5V10.5H8V13.5H10.5V16H13.5V13.5H16V10.5H13.5Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
16540
|
+
"iconName": "medical-cross-square, first-aid, emergency",
|
|
16541
|
+
"variant": {
|
|
16542
|
+
"join": "square",
|
|
16543
|
+
"filled": "off",
|
|
16544
|
+
"radius": "0",
|
|
16545
|
+
"stroke": "2"
|
|
16546
|
+
},
|
|
16547
|
+
"createdAt": "2026-05-21T13:02:28.502392+00:00",
|
|
16548
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
16549
|
+
"componentName": "IconMedicalCrossSquare"
|
|
16550
|
+
},
|
|
16495
16551
|
{
|
|
16496
16552
|
"category": "Things",
|
|
16497
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\"/><path d=\"M7 7L11 11\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"15.5\" cy=\"15.5\" r=\"5.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M16.5 21L14.5 10\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -1165,6 +1165,7 @@ export type CentralIconName =
|
|
|
1165
1165
|
| "IconMarkerCircle"
|
|
1166
1166
|
| "IconMarkup"
|
|
1167
1167
|
| "IconMask"
|
|
1168
|
+
| "IconMask1"
|
|
1168
1169
|
| "IconMastadon"
|
|
1169
1170
|
| "IconMathBasic"
|
|
1170
1171
|
| "IconMathEquals"
|
|
@@ -1177,6 +1178,9 @@ export type CentralIconName =
|
|
|
1177
1178
|
| "IconMathNotes"
|
|
1178
1179
|
| "IconMathScientific"
|
|
1179
1180
|
| "IconMedal"
|
|
1181
|
+
| "IconMedicalCross"
|
|
1182
|
+
| "IconMedicalCrossCircle"
|
|
1183
|
+
| "IconMedicalCrossSquare"
|
|
1180
1184
|
| "IconMedicinePill"
|
|
1181
1185
|
| "IconMedicinePill2"
|
|
1182
1186
|
| "IconMedicineTablett"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-outlined-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.244",
|
|
4
4
|
"style": "square-outlined-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-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": 2012,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -969,6 +969,15 @@
|
|
|
969
969
|
"IconTouchGrass"
|
|
970
970
|
]
|
|
971
971
|
},
|
|
972
|
+
"Health & Medical": {
|
|
973
|
+
"count": 4,
|
|
974
|
+
"icons": [
|
|
975
|
+
"IconMask1",
|
|
976
|
+
"IconMedicalCross",
|
|
977
|
+
"IconMedicalCrossCircle",
|
|
978
|
+
"IconMedicalCrossSquare"
|
|
979
|
+
]
|
|
980
|
+
},
|
|
972
981
|
"Interface General": {
|
|
973
982
|
"count": 199,
|
|
974
983
|
"icons": [
|
|
@@ -3375,6 +3384,7 @@
|
|
|
3375
3384
|
"IconMarkerCircle": "marker-circle, highlight",
|
|
3376
3385
|
"IconMarkup": "markup, marker, highlight",
|
|
3377
3386
|
"IconMask": "mask, theatre",
|
|
3387
|
+
"IconMask1": "mask, medical-mask, covid",
|
|
3378
3388
|
"IconMastadon": "mastadon",
|
|
3379
3389
|
"IconMathBasic": "math-basic, calc",
|
|
3380
3390
|
"IconMathEquals": "math-equals, =",
|
|
@@ -3387,6 +3397,9 @@
|
|
|
3387
3397
|
"IconMathNotes": "math-notes, function",
|
|
3388
3398
|
"IconMathScientific": "math-scientific, function",
|
|
3389
3399
|
"IconMedal": "medal, trophy, badge, winner, win",
|
|
3400
|
+
"IconMedicalCross": "medical-cross, first-aid, emergency",
|
|
3401
|
+
"IconMedicalCrossCircle": "medical-cross-circle, first-aid, emergency",
|
|
3402
|
+
"IconMedicalCrossSquare": "medical-cross-square, first-aid, emergency",
|
|
3390
3403
|
"IconMedicinePill": "medicine-pill",
|
|
3391
3404
|
"IconMedicinePill2": "medicine-pill-2, tablett",
|
|
3392
3405
|
"IconMedicineTablett": "medicine-tablett, pill",
|
package/index.d.ts
CHANGED
|
@@ -1164,6 +1164,7 @@ export { IconMarker2, default as IconMarker2Default } from "./IconMarker2";
|
|
|
1164
1164
|
export { IconMarkerCircle, default as IconMarkerCircleDefault, } from "./IconMarkerCircle";
|
|
1165
1165
|
export { IconMarkup, default as IconMarkupDefault } from "./IconMarkup";
|
|
1166
1166
|
export { IconMask, default as IconMaskDefault } from "./IconMask";
|
|
1167
|
+
export { IconMask1, default as IconMask1Default } from "./IconMask1";
|
|
1167
1168
|
export { IconMastadon, default as IconMastadonDefault } from "./IconMastadon";
|
|
1168
1169
|
export { IconMathBasic, default as IconMathBasicDefault, } from "./IconMathBasic";
|
|
1169
1170
|
export { IconMathEquals, default as IconMathEqualsDefault, } from "./IconMathEquals";
|
|
@@ -1176,6 +1177,9 @@ export { IconMathMultiplication, default as IconMathMultiplicationDefault, } fro
|
|
|
1176
1177
|
export { IconMathNotes, default as IconMathNotesDefault, } from "./IconMathNotes";
|
|
1177
1178
|
export { IconMathScientific, default as IconMathScientificDefault, } from "./IconMathScientific";
|
|
1178
1179
|
export { IconMedal, default as IconMedalDefault } from "./IconMedal";
|
|
1180
|
+
export { IconMedicalCross, default as IconMedicalCrossDefault, } from "./IconMedicalCross";
|
|
1181
|
+
export { IconMedicalCrossCircle, default as IconMedicalCrossCircleDefault, } from "./IconMedicalCrossCircle";
|
|
1182
|
+
export { IconMedicalCrossSquare, default as IconMedicalCrossSquareDefault, } from "./IconMedicalCrossSquare";
|
|
1179
1183
|
export { IconMedicinePill, default as IconMedicinePillDefault, } from "./IconMedicinePill";
|
|
1180
1184
|
export { IconMedicinePill2, default as IconMedicinePill2Default, } from "./IconMedicinePill2";
|
|
1181
1185
|
export { IconMedicineTablett, default as IconMedicineTablettDefault, } from "./IconMedicineTablett";
|