@central-icons-react-native/round-outlined-radius-2-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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconMask1: FC<CentralIconBaseProps>;
4
+ export default IconMask1;
@@ -0,0 +1,2 @@
1
+ "use strict";var l=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!h.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=L(o,s))||p.enumerable});return r};var d=(r,o,e)=>(e=r!=null?l(f(r)):{},C(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>C(i({},"__esModule",{value:!0}),r);var P={};B(P,{IconMask1:()=>c,default:()=>x});module.exports=I(P);var n=d(require("react"));var k=d(require("react")),u=require("react-native-svg"),a=({children:r,size:o=24,...e})=>k.default.createElement(u.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"),c=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M5 15.2639V7.5086C5 6.61564 5.59195 5.83087 6.45056 5.58555L11.4506 4.15698C11.8097 4.05438 12.1903 4.05438 12.5494 4.15698L17.5494 5.58555C18.408 5.83087 19 6.61564 19 7.5086V15.2639C19 16.0215 18.572 16.714 17.8944 17.0528L12.8944 19.5528C12.3314 19.8343 11.6686 19.8343 11.1056 19.5528L6.10557 17.0528C5.428 16.714 5 16.0215 5 15.2639Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9 10H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9 14H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M19.75 8.5H20.25C21.3546 8.5 22.25 9.39543 22.25 10.5V11C22.25 12.1046 21.3546 13 20.25 13H19.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M4.25 8.5H3.75C2.64543 8.5 1.75 9.39543 1.75 10.5V11C1.75 12.1046 2.64543 13 3.75 13H4.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),x=c;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.2639V7.5086C5 6.61564 5.59195 5.83087 6.45056 5.58555L11.4506 4.15698C11.8097 4.05438 12.1903 4.05438 12.5494 4.15698L17.5494 5.58555C18.408 5.83087 19 6.61564 19 7.5086V15.2639C19 16.0215 18.572 16.714 17.8944 17.0528L12.8944 19.5528C12.3314 19.8343 11.6686 19.8343 11.1056 19.5528L6.10557 17.0528C5.428 16.714 5 16.0215 5 15.2639Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 10H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 14H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.75 8.5H20.25C21.3546 8.5 22.25 9.39543 22.25 10.5V11C22.25 12.1046 21.3546 13 20.25 13H19.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.25 8.5H3.75C2.64543 8.5 1.75 9.39543 1.75 10.5V11C1.75 12.1046 2.64543 13 3.75 13H4.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\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,qVACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mGACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4FACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,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 i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...s})=>i.createElement(p,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var C=n=>o.createElement(t,{...n},o.createElement(e,{d:"M5 15.2639V7.5086C5 6.61564 5.59195 5.83087 6.45056 5.58555L11.4506 4.15698C11.8097 4.05438 12.1903 4.05438 12.5494 4.15698L17.5494 5.58555C18.408 5.83087 19 6.61564 19 7.5086V15.2639C19 16.0215 18.572 16.714 17.8944 17.0528L12.8944 19.5528C12.3314 19.8343 11.6686 19.8343 11.1056 19.5528L6.10557 17.0528C5.428 16.714 5 16.0215 5 15.2639Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M9 10H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M9 14H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M19.75 8.5H20.25C21.3546 8.5 22.25 9.39543 22.25 10.5V11C22.25 12.1046 21.3546 13 20.25 13H19.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M4.25 8.5H3.75C2.64543 8.5 1.75 9.39543 1.75 10.5V11C1.75 12.1046 2.64543 13 3.75 13H4.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),h=C;export{C as IconMask1,h 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.2639V7.5086C5 6.61564 5.59195 5.83087 6.45056 5.58555L11.4506 4.15698C11.8097 4.05438 12.1903 4.05438 12.5494 4.15698L17.5494 5.58555C18.408 5.83087 19 6.61564 19 7.5086V15.2639C19 16.0215 18.572 16.714 17.8944 17.0528L12.8944 19.5528C12.3314 19.8343 11.6686 19.8343 11.1056 19.5528L6.10557 17.0528C5.428 16.714 5 16.0215 5 15.2639Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 10H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 14H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.75 8.5H20.25C21.3546 8.5 22.25 9.39543 22.25 10.5V11C22.25 12.1046 21.3546 13 20.25 13H19.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.25 8.5H3.75C2.64543 8.5 1.75 9.39543 1.75 10.5V11C1.75 12.1046 2.64543 13 3.75 13H4.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\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,qVACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mGACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4FACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMask1","props","React","CentralIconBase","IconMask1_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconMedicalCross: FC<CentralIconBaseProps>;
4
+ export default IconMedicalCross;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},s=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of B(r))!v.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(p=f(r,t))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(I(o)):{},s(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),L=o=>s(n({},"__esModule",{value:!0}),o);var g={};x(g,{IconMedicalCross:()=>d,default:()=>P});module.exports=L(g);var C=a(require("react"));var l=a(require("react")),c=require("react-native-svg"),i=({children:o,size:r=24,...e})=>l.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 m=require("react-native-svg"),d=o=>C.default.createElement(i,{...o},C.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M11 3C9.89543 3 9 3.89543 9 5L9 7C9 8.10457 8.10457 9 7 9H5C3.89543 9 3 9.89543 3 11L3 13C3 14.1046 3.89543 15 5 15L7 15C8.10457 15 9 15.8954 9 17V19C9 20.1046 9.89543 21 11 21H13C14.1046 21 15 20.1046 15 19V17C15 15.8954 15.8954 15 17 15L19 15C20.1046 15 21 14.1046 21 13V11C21 9.89543 20.1046 9 19 9H17C15.8954 9 15 8.10457 15 7V5C15 3.89543 14.1046 3 13 3L11 3Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),P=d;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=\"M11 3C9.89543 3 9 3.89543 9 5L9 7C9 8.10457 8.10457 9 7 9H5C3.89543 9 3 9.89543 3 11L3 13C3 14.1046 3.89543 15 5 15L7 15C8.10457 15 9 15.8954 9 17V19C9 20.1046 9.89543 21 11 21H13C14.1046 21 15 20.1046 15 19V17C15 15.8954 15.8954 15 17 15L19 15C20.1046 15 21 14.1046 21 13V11C21 9.89543 20.1046 9 19 9H17C15.8954 9 15 8.10457 15 7V5C15 3.89543 14.1046 3 13 3L11 3Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,+WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,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 C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>C.createElement(p,{...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 s}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(s,{fillRule:"evenodd",clipRule:"evenodd",d:"M11 3C9.89543 3 9 3.89543 9 5L9 7C9 8.10457 8.10457 9 7 9H5C3.89543 9 3 9.89543 3 11L3 13C3 14.1046 3.89543 15 5 15L7 15C8.10457 15 9 15.8954 9 17V19C9 20.1046 9.89543 21 11 21H13C14.1046 21 15 20.1046 15 19V17C15 15.8954 15.8954 15 17 15L19 15C20.1046 15 21 14.1046 21 13V11C21 9.89543 20.1046 9 19 9H17C15.8954 9 15 8.10457 15 7V5C15 3.89543 14.1046 3 13 3L11 3Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),v=a;export{a as IconMedicalCross,v 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=\"M11 3C9.89543 3 9 3.89543 9 5L9 7C9 8.10457 8.10457 9 7 9H5C3.89543 9 3 9.89543 3 11L3 13C3 14.1046 3.89543 15 5 15L7 15C8.10457 15 9 15.8954 9 17V19C9 20.1046 9.89543 21 11 21H13C14.1046 21 15 20.1046 15 19V17C15 15.8954 15.8954 15 17 15L19 15C20.1046 15 21 14.1046 21 13V11C21 9.89543 20.1046 9 19 9H17C15.8954 9 15 8.10457 15 7V5C15 3.89543 14.1046 3 13 3L11 3Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,+WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMedicalCross","props","React","CentralIconBase","IconMedicalCross_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconMedicalCrossCircle: FC<CentralIconBaseProps>;
4
+ export default IconMedicalCrossCircle;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var f=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=f(o,t))||s.enumerable});return r};var C=(r,o,e)=>(e=r!=null?u(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",strokeLinejoin:"round"})),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 strokeLinejoin=\"round\"\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,IACZ,eAAe,QACjB,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",strokeLinejoin:"round"})),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 strokeLinejoin=\"round\"\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,IACZ,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconMedicalCrossCircle","props","React","CentralIconBase","IconMedicalCrossCircle_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconMedicalCrossSquare: FC<CentralIconBaseProps>;
4
+ export default IconMedicalCrossSquare;
@@ -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})},C=(r,o,e,l)=>{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:!(l=f(o,t))||l.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(H(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>C(n({},"__esModule",{value:!0}),r);var P={};V(P,{IconMedicalCrossSquare:()=>d,default:()=>x});module.exports=v(P);var p=a(require("react"));var i=a(require("react")),m=require("react-native-svg"),c=({children:r,size:o=24,...e})=>i.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"),d=r=>p.default.createElement(c,{...r},p.default.createElement(s.Path,{d:"M18 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V6C20 4.89543 19.1046 4 18 4Z",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(s.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.5 10.5V8H10.5V10.5H8V13.5H10.5V16H13.5V13.5H16V10.5H13.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),x=d;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\n d=\"M18 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V6C20 4.89543 19.1046 4 18 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\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 strokeLinejoin=\"round\"\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,QACC,EAAE,2HACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,gEACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,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 s from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...p})=>s.createElement(l,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var C=o=>e.createElement(t,{...o},e.createElement(n,{d:"M18 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V6C20 4.89543 19.1046 4 18 4Z",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",strokeLinejoin:"round"})),I=C;export{C 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\n d=\"M18 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V6C20 4.89543 19.1046 4 18 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\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 strokeLinejoin=\"round\"\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,CACC,EAAE,2HACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,gEACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,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
@@ -16324,6 +16324,20 @@
16324
16324
  "packageName": "round-outlined-radius-2-stroke-2",
16325
16325
  "componentName": "IconMask"
16326
16326
  },
16327
+ {
16328
+ "category": "Health & Medical",
16329
+ "svg": "<path d=\"M5 15.2639V7.5086C5 6.61564 5.59195 5.83087 6.45056 5.58555L11.4506 4.15698C11.8097 4.05438 12.1903 4.05438 12.5494 4.15698L17.5494 5.58555C18.408 5.83087 19 6.61564 19 7.5086V15.2639C19 16.0215 18.572 16.714 17.8944 17.0528L12.8944 19.5528C12.3314 19.8343 11.6686 19.8343 11.1056 19.5528L6.10557 17.0528C5.428 16.714 5 16.0215 5 15.2639Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 10H15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 14H15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.75 8.5H20.25C21.3546 8.5 22.25 9.39543 22.25 10.5V11C22.25 12.1046 21.3546 13 20.25 13H19.75\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.25 8.5H3.75C2.64543 8.5 1.75 9.39543 1.75 10.5V11C1.75 12.1046 2.64543 13 3.75 13H4.25\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
16330
+ "iconName": "mask, medical-mask, covid",
16331
+ "variant": {
16332
+ "join": "round",
16333
+ "filled": "off",
16334
+ "radius": "2",
16335
+ "stroke": "2"
16336
+ },
16337
+ "createdAt": "2026-05-21T13:02:28.502392+00:00",
16338
+ "packageName": "round-outlined-radius-2-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": "round-outlined-radius-2-stroke-2",
16493
16507
  "componentName": "IconMedal"
16494
16508
  },
16509
+ {
16510
+ "category": "Health & Medical",
16511
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 3C9.89543 3 9 3.89543 9 5L9 7C9 8.10457 8.10457 9 7 9H5C3.89543 9 3 9.89543 3 11L3 13C3 14.1046 3.89543 15 5 15L7 15C8.10457 15 9 15.8954 9 17V19C9 20.1046 9.89543 21 11 21H13C14.1046 21 15 20.1046 15 19V17C15 15.8954 15.8954 15 17 15L19 15C20.1046 15 21 14.1046 21 13V11C21 9.89543 20.1046 9 19 9H17C15.8954 9 15 8.10457 15 7V5C15 3.89543 14.1046 3 13 3L11 3Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
16512
+ "iconName": "medical-cross, first-aid, emergency",
16513
+ "variant": {
16514
+ "join": "round",
16515
+ "filled": "off",
16516
+ "radius": "2",
16517
+ "stroke": "2"
16518
+ },
16519
+ "createdAt": "2026-05-21T13:02:28.502392+00:00",
16520
+ "packageName": "round-outlined-radius-2-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\" stroke-linejoin=\"round\"/>",
16526
+ "iconName": "medical-cross-circle, first-aid, emergency",
16527
+ "variant": {
16528
+ "join": "round",
16529
+ "filled": "off",
16530
+ "radius": "2",
16531
+ "stroke": "2"
16532
+ },
16533
+ "createdAt": "2026-05-21T13:02:28.502392+00:00",
16534
+ "packageName": "round-outlined-radius-2-stroke-2",
16535
+ "componentName": "IconMedicalCrossCircle"
16536
+ },
16537
+ {
16538
+ "category": "Health & Medical",
16539
+ "svg": "<path d=\"M18 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V6C20 4.89543 19.1046 4 18 4Z\" 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\" stroke-linejoin=\"round\"/>",
16540
+ "iconName": "medical-cross-square, first-aid, emergency",
16541
+ "variant": {
16542
+ "join": "round",
16543
+ "filled": "off",
16544
+ "radius": "2",
16545
+ "stroke": "2"
16546
+ },
16547
+ "createdAt": "2026-05-21T13:02:28.502392+00:00",
16548
+ "packageName": "round-outlined-radius-2-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\" 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\"/>",
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/round-outlined-radius-2-stroke-2",
3
- "version": "1.1.243",
3
+ "version": "1.1.244",
4
4
  "style": "round-outlined-radius-2-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-2/IconHome';",
@@ -11,7 +11,7 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 2008,
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";