@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.246 → 1.1.248
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/IconIcon/index.d.ts +4 -0
- package/IconIcon/index.js +2 -0
- package/IconIcon/index.js.map +1 -0
- package/IconIcon/index.mjs +2 -0
- package/IconIcon/index.mjs.map +1 -0
- package/IconStethoscope/index.d.ts +4 -0
- package/IconStethoscope/index.js +2 -0
- package/IconStethoscope/index.js.map +1 -0
- package/IconStethoscope/index.mjs +2 -0
- package/IconStethoscope/index.mjs.map +1 -0
- package/README.md +2 -0
- package/filtered-icons.json +28 -0
- package/icons/index.d.ts +2 -0
- package/icons-index.json +8 -4
- package/index.d.ts +2 -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 +3 -1
- package/tsx-icons.json +14 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var V=Object.create;var t=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var d=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of u(r))!B.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(p=i(r,n))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?V(I(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),v=o=>l(t({},"__esModule",{value:!0}),o);var P={};d(P,{IconIcon:()=>H,default:()=>x});module.exports=v(P);var C=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:o,size:r=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),H=o=>C.default.createElement(s,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.0039 2C16.5562 2 17.0039 2.44772 17.0039 3V6H21C21.5523 6 22 6.44772 22 7V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V7C2 6.44772 2.44772 6 3 6H7.00391V3C7.00391 2.44772 7.45162 2 8.00391 2H16.0039ZM12 10.5C11.4477 10.5 11 10.9477 11 11.5V12.5H10C9.44772 12.5 9 12.9477 9 13.5C9 14.0523 9.44772 14.5 10 14.5H11V15.5C11 16.0523 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0523 13 15.5V14.5H14C14.5523 14.5 15 14.0523 15 13.5C15 12.9477 14.5523 12.5 14 12.5H13V11.5C13 10.9477 12.5523 10.5 12 10.5ZM9.00391 6H15.0039V4H9.00391V6Z",fill:"currentColor"})),x=H;0&&(module.exports={IconIcon});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconIcon/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 IconIcon: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.0039 2C16.5562 2 17.0039 2.44772 17.0039 3V6H21C21.5523 6 22 6.44772 22 7V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V7C2 6.44772 2.44772 6 3 6H7.00391V3C7.00391 2.44772 7.45162 2 8.00391 2H16.0039ZM12 10.5C11.4477 10.5 11 10.9477 11 11.5V12.5H10C9.44772 12.5 9 12.9477 9 13.5C9 14.0523 9.44772 14.5 10 14.5H11V15.5C11 16.0523 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0523 13 15.5V14.5H14C14.5523 14.5 15 14.0523 15 13.5C15 12.9477 14.5523 12.5 14 12.5H13V11.5C13 10.9477 12.5523 10.5 12 10.5ZM9.00391 6H15.0039V4H9.00391V6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconIcon;\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,cAAAE,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,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,iiBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconIcon_exports","__export","IconIcon","IconIcon_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconIcon","props","React","CentralIconBase","IconIcon_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>C.createElement(p,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>n.createElement(e,{...r},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.0039 2C16.5562 2 17.0039 2.44772 17.0039 3V6H21C21.5523 6 22 6.44772 22 7V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V7C2 6.44772 2.44772 6 3 6H7.00391V3C7.00391 2.44772 7.45162 2 8.00391 2H16.0039ZM12 10.5C11.4477 10.5 11 10.9477 11 11.5V12.5H10C9.44772 12.5 9 12.9477 9 13.5C9 14.0523 9.44772 14.5 10 14.5H11V15.5C11 16.0523 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0523 13 15.5V14.5H14C14.5523 14.5 15 14.0523 15 13.5C15 12.9477 14.5523 12.5 14 12.5H13V11.5C13 10.9477 12.5523 10.5 12 10.5ZM9.00391 6H15.0039V4H9.00391V6Z",fill:"currentColor"})),B=a;export{a as IconIcon,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconIcon/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 IconIcon: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.0039 2C16.5562 2 17.0039 2.44772 17.0039 3V6H21C21.5523 6 22 6.44772 22 7V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V7C2 6.44772 2.44772 6 3 6H7.00391V3C7.00391 2.44772 7.45162 2 8.00391 2H16.0039ZM12 10.5C11.4477 10.5 11 10.9477 11 11.5V12.5H10C9.44772 12.5 9 12.9477 9 13.5C9 14.0523 9.44772 14.5 10 14.5H11V15.5C11 16.0523 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0523 13 15.5V14.5H14C14.5523 14.5 15 14.0523 15 13.5C15 12.9477 14.5523 12.5 14 12.5H13V11.5C13 10.9477 12.5523 10.5 12 10.5ZM9.00391 6H15.0039V4H9.00391V6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconIcon;\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,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,iiBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconIcon","props","React","CentralIconBase","IconIcon_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var e=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var V=Object.getOwnPropertyNames;var i=Object.getPrototypeOf,u=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var t in r)e(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let C of V(r))!u.call(o,C)&&C!==t&&e(o,C,{get:()=>r[C],enumerable:!(p=I(r,C))||p.enumerable});return o};var l=(o,r,t)=>(t=o!=null?B(i(o)):{},a(r||!o||!o.__esModule?e(t,"default",{value:o,enumerable:!0}):t,o)),P=o=>a(e({},"__esModule",{value:!0}),o);var h={};x(h,{IconStethoscope:()=>H,default:()=>g});module.exports=P(h);var n=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...t})=>m.default.createElement(s.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),H=o=>n.default.createElement(c,{...o},n.default.createElement(f.Path,{d:"M6 2C6.55228 2 7 2.44772 7 3C7 3.55228 6.55228 4 6 4H5V11C5 11.5523 5.44772 12 6 12H11C11.5523 12 12 11.5523 12 11V4H11C10.4477 4 10 3.55228 10 3C10 2.44772 10.4477 2 11 2H13C13.5523 2 14 2.44772 14 3V11C14 12.6569 12.6569 14 11 14H9.5V18.999C9.5 19.5516 9.94808 19.9999 10.5 20H16C16.5523 19.9999 17 19.5522 17 19V14.0752C15.8355 13.663 15 12.5557 15 11.25C15 9.59315 16.3431 8.25 18 8.25C19.6569 8.25 21 9.59315 21 11.25C21 12.5557 20.1645 13.663 19 14.0752V19C19 20.6569 17.6567 21.9999 16 22H10.5C8.84287 21.9999 7.5 20.6555 7.5 18.999V14H6C4.34315 14 3 12.6569 3 11V3C3 2.44772 3.44772 2 4 2H6Z",fill:"currentColor"})),g=H;0&&(module.exports={IconStethoscope});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStethoscope/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 IconStethoscope: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6 2C6.55228 2 7 2.44772 7 3C7 3.55228 6.55228 4 6 4H5V11C5 11.5523 5.44772 12 6 12H11C11.5523 12 12 11.5523 12 11V4H11C10.4477 4 10 3.55228 10 3C10 2.44772 10.4477 2 11 2H13C13.5523 2 14 2.44772 14 3V11C14 12.6569 12.6569 14 11 14H9.5V18.999C9.5 19.5516 9.94808 19.9999 10.5 20H16C16.5523 19.9999 17 19.5522 17 19V14.0752C15.8355 13.663 15 12.5557 15 11.25C15 9.59315 16.3431 8.25 18 8.25C19.6569 8.25 21 9.59315 21 11.25C21 12.5557 20.1645 13.663 19 14.0752V19C19 20.6569 17.6567 21.9999 16 22H10.5C8.84287 21.9999 7.5 20.6555 7.5 18.999V14H6C4.34315 14 3 12.6569 3 11V3C3 2.44772 3.44772 2 4 2H6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStethoscope;\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,qBAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,0lBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconStethoscope_exports","__export","IconStethoscope","IconStethoscope_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconStethoscope","props","React","CentralIconBase","IconStethoscope_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import C from"react";import n from"react";import{Svg as p}from"react-native-svg";var t=({children:r,size:o=24,...e})=>n.createElement(p,{...e,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 l=r=>C.createElement(t,{...r},C.createElement(a,{d:"M6 2C6.55228 2 7 2.44772 7 3C7 3.55228 6.55228 4 6 4H5V11C5 11.5523 5.44772 12 6 12H11C11.5523 12 12 11.5523 12 11V4H11C10.4477 4 10 3.55228 10 3C10 2.44772 10.4477 2 11 2H13C13.5523 2 14 2.44772 14 3V11C14 12.6569 12.6569 14 11 14H9.5V18.999C9.5 19.5516 9.94808 19.9999 10.5 20H16C16.5523 19.9999 17 19.5522 17 19V14.0752C15.8355 13.663 15 12.5557 15 11.25C15 9.59315 16.3431 8.25 18 8.25C19.6569 8.25 21 9.59315 21 11.25C21 12.5557 20.1645 13.663 19 14.0752V19C19 20.6569 17.6567 21.9999 16 22H10.5C8.84287 21.9999 7.5 20.6555 7.5 18.999V14H6C4.34315 14 3 12.6569 3 11V3C3 2.44772 3.44772 2 4 2H6Z",fill:"currentColor"})),u=l;export{l as IconStethoscope,u as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStethoscope/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 IconStethoscope: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6 2C6.55228 2 7 2.44772 7 3C7 3.55228 6.55228 4 6 4H5V11C5 11.5523 5.44772 12 6 12H11C11.5523 12 12 11.5523 12 11V4H11C10.4477 4 10 3.55228 10 3C10 2.44772 10.4477 2 11 2H13C13.5523 2 14 2.44772 14 3V11C14 12.6569 12.6569 14 11 14H9.5V18.999C9.5 19.5516 9.94808 19.9999 10.5 20H16C16.5523 19.9999 17 19.5522 17 19V14.0752C15.8355 13.663 15 12.5557 15 11.25C15 9.59315 16.3431 8.25 18 8.25C19.6569 8.25 21 9.59315 21 11.25C21 12.5557 20.1645 13.663 19 14.0752V19C19 20.6569 17.6567 21.9999 16 22H10.5C8.84287 21.9999 7.5 20.6555 7.5 18.999V14H6C4.34315 14 3 12.6569 3 11V3C3 2.44772 3.44772 2 4 2H6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStethoscope;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,0lBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconStethoscope","props","React","CentralIconBase","IconStethoscope_default"]}
|
package/README.md
CHANGED
|
@@ -1065,6 +1065,7 @@ Below is a complete list of available icons:
|
|
|
1065
1065
|
|
|
1066
1066
|
### Health & Medical
|
|
1067
1067
|
|
|
1068
|
+
- IconIcon
|
|
1068
1069
|
- IconInjection
|
|
1069
1070
|
- IconMask1
|
|
1070
1071
|
- IconMedicalCross
|
|
@@ -1073,6 +1074,7 @@ Below is a complete list of available icons:
|
|
|
1073
1074
|
- IconMedicinePill
|
|
1074
1075
|
- IconMedicinePill2
|
|
1075
1076
|
- IconMedicineTablett
|
|
1077
|
+
- IconStethoscope
|
|
1076
1078
|
|
|
1077
1079
|
### Interface General
|
|
1078
1080
|
|
package/filtered-icons.json
CHANGED
|
@@ -14210,6 +14210,20 @@
|
|
|
14210
14210
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
14211
14211
|
"componentName": "IconIceHockey"
|
|
14212
14212
|
},
|
|
14213
|
+
{
|
|
14214
|
+
"category": "Health & Medical",
|
|
14215
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.0039 2C16.5562 2 17.0039 2.44772 17.0039 3V6H21C21.5523 6 22 6.44772 22 7V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V7C2 6.44772 2.44772 6 3 6H7.00391V3C7.00391 2.44772 7.45162 2 8.00391 2H16.0039ZM12 10.5C11.4477 10.5 11 10.9477 11 11.5V12.5H10C9.44772 12.5 9 12.9477 9 13.5C9 14.0523 9.44772 14.5 10 14.5H11V15.5C11 16.0523 11.4477 16.5 12 16.5C12.5523 16.5 13 16.0523 13 15.5V14.5H14C14.5523 14.5 15 14.0523 15 13.5C15 12.9477 14.5523 12.5 14 12.5H13V11.5C13 10.9477 12.5523 10.5 12 10.5ZM9.00391 6H15.0039V4H9.00391V6Z\" fill=\"currentColor\"/>",
|
|
14216
|
+
"iconName": "icon",
|
|
14217
|
+
"variant": {
|
|
14218
|
+
"join": "round",
|
|
14219
|
+
"filled": "on",
|
|
14220
|
+
"radius": "0",
|
|
14221
|
+
"stroke": "2"
|
|
14222
|
+
},
|
|
14223
|
+
"createdAt": "2026-05-26T15:02:39.249787+00:00",
|
|
14224
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
14225
|
+
"componentName": "IconIcon"
|
|
14226
|
+
},
|
|
14213
14227
|
{
|
|
14214
14228
|
"category": "Social Media & Brands",
|
|
14215
14229
|
"svg": "<path d=\"M12 2V22L8 20V4L12 2Z\" fill=\"currentColor\"/><path opacity=\"0.35\" d=\"M16 4V20L12 22V2L16 4Z\" fill=\"currentColor\"/>",
|
|
@@ -24332,6 +24346,20 @@
|
|
|
24332
24346
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
24333
24347
|
"componentName": "IconStepForwards"
|
|
24334
24348
|
},
|
|
24349
|
+
{
|
|
24350
|
+
"category": "Health & Medical",
|
|
24351
|
+
"svg": "<path d=\"M6 2C6.55228 2 7 2.44772 7 3C7 3.55228 6.55228 4 6 4H5V11C5 11.5523 5.44772 12 6 12H11C11.5523 12 12 11.5523 12 11V4H11C10.4477 4 10 3.55228 10 3C10 2.44772 10.4477 2 11 2H13C13.5523 2 14 2.44772 14 3V11C14 12.6569 12.6569 14 11 14H9.5V18.999C9.5 19.5516 9.94808 19.9999 10.5 20H16C16.5523 19.9999 17 19.5522 17 19V14.0752C15.8355 13.663 15 12.5557 15 11.25C15 9.59315 16.3431 8.25 18 8.25C19.6569 8.25 21 9.59315 21 11.25C21 12.5557 20.1645 13.663 19 14.0752V19C19 20.6569 17.6567 21.9999 16 22H10.5C8.84287 21.9999 7.5 20.6555 7.5 18.999V14H6C4.34315 14 3 12.6569 3 11V3C3 2.44772 3.44772 2 4 2H6Z\" fill=\"currentColor\"/>",
|
|
24352
|
+
"iconName": "stethoscope, check, diagnostics, analyze",
|
|
24353
|
+
"variant": {
|
|
24354
|
+
"join": "round",
|
|
24355
|
+
"filled": "on",
|
|
24356
|
+
"radius": "0",
|
|
24357
|
+
"stroke": "2"
|
|
24358
|
+
},
|
|
24359
|
+
"createdAt": "2026-05-26T14:02:08.461337+00:00",
|
|
24360
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
24361
|
+
"componentName": "IconStethoscope"
|
|
24362
|
+
},
|
|
24335
24363
|
{
|
|
24336
24364
|
"category": "People",
|
|
24337
24365
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 1.75C9.32508 1.75 7.11729 2.7197 5.58177 4.34466C4.05413 5.96128 3.25 8.16402 3.25 10.5395C3.25 13.2635 3.58032 15.5784 5.42615 17.8638C5.63653 18.1243 5.83916 18.4003 6.04443 18.6911C6.4204 19.2237 7.11527 20.0956 8.09562 20.8419C9.07824 21.5901 10.3994 22.25 12 22.25C13.6006 22.25 14.9218 21.5901 15.9044 20.8419C16.8847 20.0956 17.5796 19.2237 17.9556 18.6911C18.1608 18.4003 18.3635 18.1243 18.5738 17.8638C20.4197 15.5784 20.75 13.2635 20.75 10.5395C20.75 8.16402 19.9459 5.96128 18.4182 4.34466C16.8827 2.7197 14.6749 1.75 12 1.75ZM5.25841 11.2204C5.31586 13.4008 5.68769 15.0045 6.98206 16.6071C7.05955 16.7031 7.13528 16.7997 7.2094 16.8967C7.64899 15.7858 8.73273 15 10 15H14C15.2673 15 16.351 15.7858 16.7906 16.8967C16.8647 16.7997 16.9405 16.7031 17.0179 16.6071C18.3123 15.0045 18.6841 13.4008 18.7416 11.2204L17.7425 11.4701C17.7312 11.473 17.7199 11.4756 17.7086 11.478C17.4824 12.7689 16.3557 13.75 15 13.75C13.4812 13.75 12.25 12.5188 12.25 11L12.2501 10.9759C12.0836 10.9631 11.9164 10.9631 11.7499 10.976L11.75 11C11.75 12.5188 10.5188 13.75 9 13.75C7.64425 13.75 6.51765 12.7689 6.2914 11.478C6.28008 11.4756 6.26877 11.473 6.25746 11.4701L5.25841 11.2204ZM9.30715 19.2507C9.20079 19.1697 9.09836 19.0864 8.99999 19.0019L9 19V18C9 17.4477 9.44772 17 10 17H14C14.5523 17 15 17.4477 15 18V19L15 19.0019C14.9016 19.0864 14.7992 19.1697 14.6929 19.2507C14.5846 19.3331 14.4733 19.4123 14.3591 19.4877C14.3078 19.4017 14.2427 19.322 14.1638 19.252C13.5653 18.7209 12.6938 18.5528 12 18.5527C11.3063 18.5527 10.4347 18.7208 9.83623 19.252C9.75735 19.322 9.69216 19.4017 9.64086 19.4877C9.52666 19.4123 9.4154 19.3331 9.30715 19.2507ZM6.68476 9.51541C7.17385 8.75425 8.02804 8.25 9 8.25C9.97217 8.25 10.8265 8.75446 11.3156 9.51589C11.7694 9.44979 12.2306 9.44978 12.6845 9.51586C13.1735 8.75445 14.0278 8.25 15 8.25C15.972 8.25 16.8261 8.75424 17.3152 9.5154L18.1347 9.31054C18.0912 9.23497 18.0494 9.1591 18.0093 9.08368C17.7902 8.67182 17.5885 8.21076 17.4081 7.75659C17.1042 6.9914 16.8402 6.19098 16.6486 5.61007L16.6482 5.60884C16.6143 5.50633 16.5828 5.41068 16.5537 5.32327C16.1117 4.93744 15.603 4.60907 15.0295 4.35371C14.0777 5.06814 13.0774 5.50005 12 5.50005C10.9227 5.50005 9.92238 5.06813 8.97061 4.35368C8.397 4.60904 7.88836 4.93743 7.44634 5.32327C7.41717 5.41081 7.38556 5.50663 7.35169 5.60932C7.16006 6.19023 6.89578 6.99138 6.59189 7.75659C6.41153 8.21076 6.20976 8.67182 5.99068 9.08368C5.95057 9.1591 5.90878 9.23497 5.86529 9.31054L6.68476 9.51541ZM13.75 11C13.75 10.3096 14.3096 9.75 15 9.75C15.6904 9.75 16.25 10.3096 16.25 11C16.25 11.6904 15.6904 12.25 15 12.25C14.3096 12.25 13.75 11.6904 13.75 11ZM9 9.75C8.30964 9.75 7.75 10.3096 7.75 11C7.75 11.6904 8.30964 12.25 9 12.25C9.69036 12.25 10.25 11.6904 10.25 11C10.25 10.3096 9.69036 9.75 9 9.75Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -1014,6 +1014,7 @@ export type CentralIconName =
|
|
|
1014
1014
|
| "IconHumanMashine"
|
|
1015
1015
|
| "IconIcebowl"
|
|
1016
1016
|
| "IconIceHockey"
|
|
1017
|
+
| "IconIcon"
|
|
1017
1018
|
| "IconIconists"
|
|
1018
1019
|
| "IconIllustration"
|
|
1019
1020
|
| "IconImac"
|
|
@@ -1737,6 +1738,7 @@ export type CentralIconName =
|
|
|
1737
1738
|
| "IconSteeringWheel1"
|
|
1738
1739
|
| "IconStepBack"
|
|
1739
1740
|
| "IconStepForwards"
|
|
1741
|
+
| "IconStethoscope"
|
|
1740
1742
|
| "IconSteveJobs"
|
|
1741
1743
|
| "IconSticker"
|
|
1742
1744
|
| "IconStocks"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.248",
|
|
4
4
|
"style": "round-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-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": 2016,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -970,8 +970,9 @@
|
|
|
970
970
|
]
|
|
971
971
|
},
|
|
972
972
|
"Health & Medical": {
|
|
973
|
-
"count":
|
|
973
|
+
"count": 10,
|
|
974
974
|
"icons": [
|
|
975
|
+
"IconIcon",
|
|
975
976
|
"IconInjection",
|
|
976
977
|
"IconMask1",
|
|
977
978
|
"IconMedicalCross",
|
|
@@ -979,7 +980,8 @@
|
|
|
979
980
|
"IconMedicalCrossSquare",
|
|
980
981
|
"IconMedicinePill",
|
|
981
982
|
"IconMedicinePill2",
|
|
982
|
-
"IconMedicineTablett"
|
|
983
|
+
"IconMedicineTablett",
|
|
984
|
+
"IconStethoscope"
|
|
983
985
|
]
|
|
984
986
|
},
|
|
985
987
|
"Interface General": {
|
|
@@ -3235,6 +3237,7 @@
|
|
|
3235
3237
|
"IconHumanMashine": "human-mashine, high-five, ai, hands",
|
|
3236
3238
|
"IconIcebowl": "icebowl, cooling, vibe",
|
|
3237
3239
|
"IconIceHockey": "ice-hockey",
|
|
3240
|
+
"IconIcon": "icon",
|
|
3238
3241
|
"IconIconists": "iconists",
|
|
3239
3242
|
"IconIllustration": "illustration, painting, art",
|
|
3240
3243
|
"IconImac": "imac, computer",
|
|
@@ -3958,6 +3961,7 @@
|
|
|
3958
3961
|
"IconSteeringWheel1": "steering-wheel, autopilot, drive",
|
|
3959
3962
|
"IconStepBack": "step-back, undo",
|
|
3960
3963
|
"IconStepForwards": "step-forwards, continue",
|
|
3964
|
+
"IconStethoscope": "stethoscope, check, diagnostics, analyze",
|
|
3961
3965
|
"IconSteveJobs": "steve-jobs, professor, innovation",
|
|
3962
3966
|
"IconSticker": "sticker, badge",
|
|
3963
3967
|
"IconStocks": "stocks",
|
package/index.d.ts
CHANGED
|
@@ -1013,6 +1013,7 @@ export { IconHourglass2, default as IconHourglass2Default, } from "./IconHourgla
|
|
|
1013
1013
|
export { IconHumanMashine, default as IconHumanMashineDefault, } from "./IconHumanMashine";
|
|
1014
1014
|
export { IconIceHockey, default as IconIceHockeyDefault, } from "./IconIceHockey";
|
|
1015
1015
|
export { IconIcebowl, default as IconIcebowlDefault } from "./IconIcebowl";
|
|
1016
|
+
export { IconIcon, default as IconIconDefault } from "./IconIcon";
|
|
1016
1017
|
export { IconIconists, default as IconIconistsDefault } from "./IconIconists";
|
|
1017
1018
|
export { IconIllustration, default as IconIllustrationDefault, } from "./IconIllustration";
|
|
1018
1019
|
export { IconImac, default as IconImacDefault } from "./IconImac";
|
|
@@ -1736,6 +1737,7 @@ export { IconSteeringWheel, default as IconSteeringWheelDefault, } from "./IconS
|
|
|
1736
1737
|
export { IconSteeringWheel1, default as IconSteeringWheel1Default, } from "./IconSteeringWheel1";
|
|
1737
1738
|
export { IconStepBack, default as IconStepBackDefault } from "./IconStepBack";
|
|
1738
1739
|
export { IconStepForwards, default as IconStepForwardsDefault, } from "./IconStepForwards";
|
|
1740
|
+
export { IconStethoscope, default as IconStethoscopeDefault, } from "./IconStethoscope";
|
|
1739
1741
|
export { IconSteveJobs, default as IconSteveJobsDefault, } from "./IconSteveJobs";
|
|
1740
1742
|
export { IconSticker, default as IconStickerDefault } from "./IconSticker";
|
|
1741
1743
|
export { IconStocks, default as IconStocksDefault } from "./IconStocks";
|