@central-icons-react-native/round-filled-radius-2-stroke-2 1.1.186 → 1.1.188
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/IconChatBubble7/index.d.ts +4 -0
- package/IconChatBubble7/index.js +2 -0
- package/IconChatBubble7/index.js.map +1 -0
- package/IconChatBubble7/index.mjs +2 -0
- package/IconChatBubble7/index.mjs.map +1 -0
- package/IconChatBubbles/index.d.ts +4 -0
- package/IconChatBubbles/index.js +2 -0
- package/IconChatBubbles/index.js.map +1 -0
- package/IconChatBubbles/index.mjs +2 -0
- package/IconChatBubbles/index.mjs.map +1 -0
- package/IconTestTube2/index.d.ts +4 -0
- package/IconTestTube2/index.js +2 -0
- package/IconTestTube2/index.js.map +1 -0
- package/IconTestTube2/index.mjs +2 -0
- package/IconTestTube2/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +43 -1
- package/icons/index.d.ts +3 -0
- package/icons-index.json +11 -5
- package/index.d.ts +3 -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/tsx-icons.json +22 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of i(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=I(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?u(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),b=r=>a(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconChatBubble7:()=>B,default:()=>h});module.exports=b(v);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(s.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 f=require("react-native-svg"),B=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M12 2.5C17.4682 2.5 22 6.70021 22 12C22 17.2998 17.4682 21.5 12 21.5C10.5449 21.5 9.15868 21.2046 7.90723 20.6709C7.60705 20.5429 7.29409 20.5127 7.01367 20.5771C6.05998 20.7966 5.08107 20.9352 4.06152 20.998C3.72192 21.019 3.39462 20.8661 3.19336 20.5918C2.99212 20.3174 2.94447 19.9592 3.06641 19.6416C3.30403 19.0228 3.51117 18.4132 3.67188 17.8018C3.72742 17.5904 3.68072 17.2897 3.45996 16.9463C2.53509 15.5077 2 13.8131 2 12C2 6.70021 6.53177 2.5 12 2.5Z",fill:"currentColor"})),h=B;0&&(module.exports={IconChatBubble7});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChatBubble7/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 IconChatBubble7: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2.5C17.4682 2.5 22 6.70021 22 12C22 17.2998 17.4682 21.5 12 21.5C10.5449 21.5 9.15868 21.2046 7.90723 20.6709C7.60705 20.5429 7.29409 20.5127 7.01367 20.5771C6.05998 20.7966 5.08107 20.9352 4.06152 20.998C3.72192 21.019 3.39462 20.8661 3.19336 20.5918C2.99212 20.3174 2.94447 19.9592 3.06641 19.6416C3.30403 19.0228 3.51117 18.4132 3.67188 17.8018C3.72742 17.5904 3.68072 17.2897 3.45996 16.9463C2.53509 15.5077 2 13.8131 2 12C2 6.70021 6.53177 2.5 12 2.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChatBubble7;\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,+cACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChatBubble7_exports","__export","IconChatBubble7","IconChatBubble7_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChatBubble7","props","React","CentralIconBase","IconChatBubble7_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.createElement(p,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var l=o=>e.createElement(t,{...o},e.createElement(a,{d:"M12 2.5C17.4682 2.5 22 6.70021 22 12C22 17.2998 17.4682 21.5 12 21.5C10.5449 21.5 9.15868 21.2046 7.90723 20.6709C7.60705 20.5429 7.29409 20.5127 7.01367 20.5771C6.05998 20.7966 5.08107 20.9352 4.06152 20.998C3.72192 21.019 3.39462 20.8661 3.19336 20.5918C2.99212 20.3174 2.94447 19.9592 3.06641 19.6416C3.30403 19.0228 3.51117 18.4132 3.67188 17.8018C3.72742 17.5904 3.68072 17.2897 3.45996 16.9463C2.53509 15.5077 2 13.8131 2 12C2 6.70021 6.53177 2.5 12 2.5Z",fill:"currentColor"})),P=l;export{l as IconChatBubble7,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChatBubble7/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 IconChatBubble7: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2.5C17.4682 2.5 22 6.70021 22 12C22 17.2998 17.4682 21.5 12 21.5C10.5449 21.5 9.15868 21.2046 7.90723 20.6709C7.60705 20.5429 7.29409 20.5127 7.01367 20.5771C6.05998 20.7966 5.08107 20.9352 4.06152 20.998C3.72192 21.019 3.39462 20.8661 3.19336 20.5918C2.99212 20.3174 2.94447 19.9592 3.06641 19.6416C3.30403 19.0228 3.51117 18.4132 3.67188 17.8018C3.72742 17.5904 3.68072 17.2897 3.45996 16.9463C2.53509 15.5077 2 13.8131 2 12C2 6.70021 6.53177 2.5 12 2.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChatBubble7;\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,+cACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChatBubble7","props","React","CentralIconBase","IconChatBubble7_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var e=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0})},a=(r,o,C,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==C&&e(r,t,{get:()=>o[t],enumerable:!(l=i(o,t))||l.enumerable});return r};var m=(r,o,C)=>(C=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C,r)),b=r=>a(e({},"__esModule",{value:!0}),r);var v={};g(v,{IconChatBubbles:()=>u,default:()=>h});module.exports=b(v);var n=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...C})=>s.default.createElement(f.Svg,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),u=r=>n.default.createElement(c,{...r},n.default.createElement(p.Path,{d:"M15.5 10C18.998 10 22 12.5987 22 16C22 16.9847 21.7425 17.9136 21.29 18.7305C21.0419 19.1784 21.0102 19.4717 21.0674 19.6484C21.1405 19.8744 21.2246 20.1024 21.3174 20.335C21.4441 20.6527 21.4003 21.0136 21.2002 21.291C21 21.5683 20.6715 21.7242 20.3301 21.7041C19.7976 21.6725 19.2808 21.6089 18.7754 21.5117C18.4864 21.4562 18.159 21.4865 17.8252 21.6045C17.1009 21.8605 16.3166 22 15.5 22C12.002 22 9 19.4013 9 16C9 12.5987 12.002 10 15.5 10Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M10 2C13.9356 2 17.3012 4.69619 17.9033 8.33105C17.1299 8.11459 16.3208 8 15.5 8C11.0811 8 7 11.3191 7 16C7 16.1538 7.00401 16.3062 7.0127 16.457C6.97963 16.4445 6.94594 16.4338 6.91309 16.4209C6.59719 16.297 6.27677 16.2668 5.99219 16.3271C5.2943 16.4754 4.57893 16.5713 3.83789 16.6162C3.49755 16.6367 3.17047 16.4817 2.96973 16.2061C2.76895 15.9303 2.72259 15.5716 2.84668 15.2539C3.00219 14.8558 3.13916 14.4647 3.25195 14.0752C3.30835 13.8804 3.26912 13.5805 3.03516 13.1934C2.37771 12.1054 2 10.8441 2 9.5C2 5.28937 5.6528 2 10 2Z",fill:"currentColor"})),h=u;0&&(module.exports={IconChatBubbles});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChatBubbles/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 IconChatBubbles: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.5 10C18.998 10 22 12.5987 22 16C22 16.9847 21.7425 17.9136 21.29 18.7305C21.0419 19.1784 21.0102 19.4717 21.0674 19.6484C21.1405 19.8744 21.2246 20.1024 21.3174 20.335C21.4441 20.6527 21.4003 21.0136 21.2002 21.291C21 21.5683 20.6715 21.7242 20.3301 21.7041C19.7976 21.6725 19.2808 21.6089 18.7754 21.5117C18.4864 21.4562 18.159 21.4865 17.8252 21.6045C17.1009 21.8605 16.3166 22 15.5 22C12.002 22 9 19.4013 9 16C9 12.5987 12.002 10 15.5 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10 2C13.9356 2 17.3012 4.69619 17.9033 8.33105C17.1299 8.11459 16.3208 8 15.5 8C11.0811 8 7 11.3191 7 16C7 16.1538 7.00401 16.3062 7.0127 16.457C6.97963 16.4445 6.94594 16.4338 6.91309 16.4209C6.59719 16.297 6.27677 16.2668 5.99219 16.3271C5.2943 16.4754 4.57893 16.5713 3.83789 16.6162C3.49755 16.6367 3.17047 16.4817 2.96973 16.2061C2.76895 15.9303 2.72259 15.5716 2.84668 15.2539C3.00219 14.8558 3.13916 14.4647 3.25195 14.0752C3.30835 13.8804 3.26912 13.5805 3.03516 13.1934C2.37771 12.1054 2 10.8441 2 9.5C2 5.28937 5.6528 2 10 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChatBubbles;\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,gcACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2hBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconChatBubbles_exports","__export","IconChatBubbles","IconChatBubbles_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconChatBubbles","props","React","CentralIconBase","IconChatBubbles_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import C 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{Path as e}from"react-native-svg";var a=o=>C.createElement(t,{...o},C.createElement(e,{d:"M15.5 10C18.998 10 22 12.5987 22 16C22 16.9847 21.7425 17.9136 21.29 18.7305C21.0419 19.1784 21.0102 19.4717 21.0674 19.6484C21.1405 19.8744 21.2246 20.1024 21.3174 20.335C21.4441 20.6527 21.4003 21.0136 21.2002 21.291C21 21.5683 20.6715 21.7242 20.3301 21.7041C19.7976 21.6725 19.2808 21.6089 18.7754 21.5117C18.4864 21.4562 18.159 21.4865 17.8252 21.6045C17.1009 21.8605 16.3166 22 15.5 22C12.002 22 9 19.4013 9 16C9 12.5987 12.002 10 15.5 10Z",fill:"currentColor"}),C.createElement(e,{d:"M10 2C13.9356 2 17.3012 4.69619 17.9033 8.33105C17.1299 8.11459 16.3208 8 15.5 8C11.0811 8 7 11.3191 7 16C7 16.1538 7.00401 16.3062 7.0127 16.457C6.97963 16.4445 6.94594 16.4338 6.91309 16.4209C6.59719 16.297 6.27677 16.2668 5.99219 16.3271C5.2943 16.4754 4.57893 16.5713 3.83789 16.6162C3.49755 16.6367 3.17047 16.4817 2.96973 16.2061C2.76895 15.9303 2.72259 15.5716 2.84668 15.2539C3.00219 14.8558 3.13916 14.4647 3.25195 14.0752C3.30835 13.8804 3.26912 13.5805 3.03516 13.1934C2.37771 12.1054 2 10.8441 2 9.5C2 5.28937 5.6528 2 10 2Z",fill:"currentColor"})),P=a;export{a as IconChatBubbles,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconChatBubbles/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 IconChatBubbles: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.5 10C18.998 10 22 12.5987 22 16C22 16.9847 21.7425 17.9136 21.29 18.7305C21.0419 19.1784 21.0102 19.4717 21.0674 19.6484C21.1405 19.8744 21.2246 20.1024 21.3174 20.335C21.4441 20.6527 21.4003 21.0136 21.2002 21.291C21 21.5683 20.6715 21.7242 20.3301 21.7041C19.7976 21.6725 19.2808 21.6089 18.7754 21.5117C18.4864 21.4562 18.159 21.4865 17.8252 21.6045C17.1009 21.8605 16.3166 22 15.5 22C12.002 22 9 19.4013 9 16C9 12.5987 12.002 10 15.5 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10 2C13.9356 2 17.3012 4.69619 17.9033 8.33105C17.1299 8.11459 16.3208 8 15.5 8C11.0811 8 7 11.3191 7 16C7 16.1538 7.00401 16.3062 7.0127 16.457C6.97963 16.4445 6.94594 16.4338 6.91309 16.4209C6.59719 16.297 6.27677 16.2668 5.99219 16.3271C5.2943 16.4754 4.57893 16.5713 3.83789 16.6162C3.49755 16.6367 3.17047 16.4817 2.96973 16.2061C2.76895 15.9303 2.72259 15.5716 2.84668 15.2539C3.00219 14.8558 3.13916 14.4647 3.25195 14.0752C3.30835 13.8804 3.26912 13.5805 3.03516 13.1934C2.37771 12.1054 2 10.8441 2 9.5C2 5.28937 5.6528 2 10 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChatBubbles;\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,gcACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2hBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconChatBubbles","props","React","CentralIconBase","IconChatBubbles_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var t=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of d(o))!I.call(r,C)&&C!==e&&t(r,C,{get:()=>o[C],enumerable:!(p=L(o,C))||p.enumerable});return r};var f=(r,o,e)=>(e=r!=null?i(B(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(t({},"__esModule",{value:!0}),r);var g={};v(g,{IconTestTube2:()=>c,default:()=>P});module.exports=x(g);var n=f(require("react"));var m=f(require("react")),s=require("react-native-svg"),u=({children:r,size:o=24,...e})=>m.default.createElement(s.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"),c=r=>n.default.createElement(u,{...r},n.default.createElement(l.Path,{d:"M20 13.9999C20.5523 13.9999 21 14.4476 21 14.9999V17.9999C21 19.6568 19.6569 20.9999 18 20.9999H14C13.4477 20.9999 13 20.5522 13 19.9999C13 19.4476 13.4477 18.9999 14 18.9999H18C18.5523 18.9999 19 18.5522 19 17.9999V14.9999C19 14.4476 19.4477 13.9999 20 13.9999Z",fill:"currentColor"}),n.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.043 2.54289C13.4335 2.15237 14.0665 2.15237 14.457 2.54289L21.457 9.54289C21.8475 9.93342 21.8476 10.5664 21.457 10.957C21.0665 11.3474 20.4335 11.3474 20.043 10.957L19.25 10.164L9.95703 19.457C8.462 20.9518 6.03803 20.9518 4.54297 19.457C3.04808 17.9619 3.04808 15.5379 4.54297 14.0429L13.8359 4.74992L13.043 3.95696C12.6525 3.56645 12.6525 2.93342 13.043 2.54289ZM5.95703 15.457C5.24319 16.171 5.24319 17.3289 5.95703 18.0429C6.67104 18.7567 7.82898 18.7567 8.54297 18.0429L13.8359 12.7499H8.66406L5.95703 15.457ZM10.6641 10.7499H15.8359L17.8359 8.74992L15.25 6.16399L10.6641 10.7499Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M9 2.99992C9.55228 2.99992 10 3.44764 10 3.99992C10 4.55221 9.55228 4.99992 9 4.99992H6C5.44772 4.99992 5 5.44764 5 5.99992V9.99992C5 10.5522 4.55228 10.9999 4 10.9999C3.44772 10.9999 3 10.5522 3 9.99992V5.99992C3 4.34307 4.34315 2.99992 6 2.99992H9Z",fill:"currentColor"})),P=c;0&&(module.exports={IconTestTube2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTestTube2/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 IconTestTube2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 13.9999C20.5523 13.9999 21 14.4476 21 14.9999V17.9999C21 19.6568 19.6569 20.9999 18 20.9999H14C13.4477 20.9999 13 20.5522 13 19.9999C13 19.4476 13.4477 18.9999 14 18.9999H18C18.5523 18.9999 19 18.5522 19 17.9999V14.9999C19 14.4476 19.4477 13.9999 20 13.9999Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.043 2.54289C13.4335 2.15237 14.0665 2.15237 14.457 2.54289L21.457 9.54289C21.8475 9.93342 21.8476 10.5664 21.457 10.957C21.0665 11.3474 20.4335 11.3474 20.043 10.957L19.25 10.164L9.95703 19.457C8.462 20.9518 6.03803 20.9518 4.54297 19.457C3.04808 17.9619 3.04808 15.5379 4.54297 14.0429L13.8359 4.74992L13.043 3.95696C12.6525 3.56645 12.6525 2.93342 13.043 2.54289ZM5.95703 15.457C5.24319 16.171 5.24319 17.3289 5.95703 18.0429C6.67104 18.7567 7.82898 18.7567 8.54297 18.0429L13.8359 12.7499H8.66406L5.95703 15.457ZM10.6641 10.7499H15.8359L17.8359 8.74992L15.25 6.16399L10.6641 10.7499Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9 2.99992C9.55228 2.99992 10 3.44764 10 3.99992C10 4.55221 9.55228 4.99992 9 4.99992H6C5.44772 4.99992 5 5.44764 5 5.99992V9.99992C5 10.5522 4.55228 10.9999 4 10.9999C3.44772 10.9999 3 10.5522 3 9.99992V5.99992C3 4.34307 4.34315 2.99992 6 2.99992H9Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTestTube2;\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,mBAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yQACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ilBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6PACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconTestTube2_exports","__export","IconTestTube2","IconTestTube2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconTestTube2","props","React","CentralIconBase","IconTestTube2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...t})=>l.createElement(p,{...t,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 C}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(C,{d:"M20 13.9999C20.5523 13.9999 21 14.4476 21 14.9999V17.9999C21 19.6568 19.6569 20.9999 18 20.9999H14C13.4477 20.9999 13 20.5522 13 19.9999C13 19.4476 13.4477 18.9999 14 18.9999H18C18.5523 18.9999 19 18.5522 19 17.9999V14.9999C19 14.4476 19.4477 13.9999 20 13.9999Z",fill:"currentColor"}),o.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.043 2.54289C13.4335 2.15237 14.0665 2.15237 14.457 2.54289L21.457 9.54289C21.8475 9.93342 21.8476 10.5664 21.457 10.957C21.0665 11.3474 20.4335 11.3474 20.043 10.957L19.25 10.164L9.95703 19.457C8.462 20.9518 6.03803 20.9518 4.54297 19.457C3.04808 17.9619 3.04808 15.5379 4.54297 14.0429L13.8359 4.74992L13.043 3.95696C12.6525 3.56645 12.6525 2.93342 13.043 2.54289ZM5.95703 15.457C5.24319 16.171 5.24319 17.3289 5.95703 18.0429C6.67104 18.7567 7.82898 18.7567 8.54297 18.0429L13.8359 12.7499H8.66406L5.95703 15.457ZM10.6641 10.7499H15.8359L17.8359 8.74992L15.25 6.16399L10.6641 10.7499Z",fill:"currentColor"}),o.createElement(C,{d:"M9 2.99992C9.55228 2.99992 10 3.44764 10 3.99992C10 4.55221 9.55228 4.99992 9 4.99992H6C5.44772 4.99992 5 5.44764 5 5.99992V9.99992C5 10.5522 4.55228 10.9999 4 10.9999C3.44772 10.9999 3 10.5522 3 9.99992V5.99992C3 4.34307 4.34315 2.99992 6 2.99992H9Z",fill:"currentColor"})),I=a;export{a as IconTestTube2,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTestTube2/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 IconTestTube2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 13.9999C20.5523 13.9999 21 14.4476 21 14.9999V17.9999C21 19.6568 19.6569 20.9999 18 20.9999H14C13.4477 20.9999 13 20.5522 13 19.9999C13 19.4476 13.4477 18.9999 14 18.9999H18C18.5523 18.9999 19 18.5522 19 17.9999V14.9999C19 14.4476 19.4477 13.9999 20 13.9999Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.043 2.54289C13.4335 2.15237 14.0665 2.15237 14.457 2.54289L21.457 9.54289C21.8475 9.93342 21.8476 10.5664 21.457 10.957C21.0665 11.3474 20.4335 11.3474 20.043 10.957L19.25 10.164L9.95703 19.457C8.462 20.9518 6.03803 20.9518 4.54297 19.457C3.04808 17.9619 3.04808 15.5379 4.54297 14.0429L13.8359 4.74992L13.043 3.95696C12.6525 3.56645 12.6525 2.93342 13.043 2.54289ZM5.95703 15.457C5.24319 16.171 5.24319 17.3289 5.95703 18.0429C6.67104 18.7567 7.82898 18.7567 8.54297 18.0429L13.8359 12.7499H8.66406L5.95703 15.457ZM10.6641 10.7499H15.8359L17.8359 8.74992L15.25 6.16399L10.6641 10.7499Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9 2.99992C9.55228 2.99992 10 3.44764 10 3.99992C10 4.55221 9.55228 4.99992 9 4.99992H6C5.44772 4.99992 5 5.44764 5 5.99992V9.99992C5 10.5522 4.55228 10.9999 4 10.9999C3.44772 10.9999 3 10.5522 3 9.99992V5.99992C3 4.34307 4.34315 2.99992 6 2.99992H9Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTestTube2;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yQACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,ilBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6PACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconTestTube2","props","React","CentralIconBase","IconTestTube2_default"]}
|
package/README.md
CHANGED
|
@@ -533,6 +533,8 @@ Below is a complete list of available icons:
|
|
|
533
533
|
- IconCallCancel
|
|
534
534
|
- IconCallIncoming
|
|
535
535
|
- IconCallOutgoing
|
|
536
|
+
- IconChatBubble7
|
|
537
|
+
- IconChatBubbles
|
|
536
538
|
- IconEmail1
|
|
537
539
|
- IconEmail2
|
|
538
540
|
- IconEmail3
|
|
@@ -1978,6 +1980,7 @@ Below is a complete list of available icons:
|
|
|
1978
1980
|
- IconTeddyBear
|
|
1979
1981
|
- IconTelescope
|
|
1980
1982
|
- IconTestTube
|
|
1983
|
+
- IconTestTube2
|
|
1981
1984
|
- IconThinkingBubble
|
|
1982
1985
|
- IconThinkingBubble1
|
|
1983
1986
|
- IconThread
|
package/filtered-icons.json
CHANGED
|
@@ -6034,6 +6034,34 @@
|
|
|
6034
6034
|
"packageName": "round-filled-radius-2-stroke-2",
|
|
6035
6035
|
"componentName": "IconChartWaterfallAxis"
|
|
6036
6036
|
},
|
|
6037
|
+
{
|
|
6038
|
+
"category": "Communication",
|
|
6039
|
+
"svg": "<path d=\"M12 2.5C17.4682 2.5 22 6.70021 22 12C22 17.2998 17.4682 21.5 12 21.5C10.5449 21.5 9.15868 21.2046 7.90723 20.6709C7.60705 20.5429 7.29409 20.5127 7.01367 20.5771C6.05998 20.7966 5.08107 20.9352 4.06152 20.998C3.72192 21.019 3.39462 20.8661 3.19336 20.5918C2.99212 20.3174 2.94447 19.9592 3.06641 19.6416C3.30403 19.0228 3.51117 18.4132 3.67188 17.8018C3.72742 17.5904 3.68072 17.2897 3.45996 16.9463C2.53509 15.5077 2 13.8131 2 12C2 6.70021 6.53177 2.5 12 2.5Z\" fill=\"currentColor\"/>",
|
|
6040
|
+
"iconName": "chat-bubble-7",
|
|
6041
|
+
"variant": {
|
|
6042
|
+
"join": "round",
|
|
6043
|
+
"filled": "on",
|
|
6044
|
+
"radius": "2",
|
|
6045
|
+
"stroke": "2"
|
|
6046
|
+
},
|
|
6047
|
+
"createdAt": "2026-04-14T11:02:24.032689+00:00",
|
|
6048
|
+
"packageName": "round-filled-radius-2-stroke-2",
|
|
6049
|
+
"componentName": "IconChatBubble7"
|
|
6050
|
+
},
|
|
6051
|
+
{
|
|
6052
|
+
"category": "Communication",
|
|
6053
|
+
"svg": "<path d=\"M15.5 10C18.998 10 22 12.5987 22 16C22 16.9847 21.7425 17.9136 21.29 18.7305C21.0419 19.1784 21.0102 19.4717 21.0674 19.6484C21.1405 19.8744 21.2246 20.1024 21.3174 20.335C21.4441 20.6527 21.4003 21.0136 21.2002 21.291C21 21.5683 20.6715 21.7242 20.3301 21.7041C19.7976 21.6725 19.2808 21.6089 18.7754 21.5117C18.4864 21.4562 18.159 21.4865 17.8252 21.6045C17.1009 21.8605 16.3166 22 15.5 22C12.002 22 9 19.4013 9 16C9 12.5987 12.002 10 15.5 10Z\" fill=\"currentColor\"/><path d=\"M10 2C13.9356 2 17.3012 4.69619 17.9033 8.33105C17.1299 8.11459 16.3208 8 15.5 8C11.0811 8 7 11.3191 7 16C7 16.1538 7.00401 16.3062 7.0127 16.457C6.97963 16.4445 6.94594 16.4338 6.91309 16.4209C6.59719 16.297 6.27677 16.2668 5.99219 16.3271C5.2943 16.4754 4.57893 16.5713 3.83789 16.6162C3.49755 16.6367 3.17047 16.4817 2.96973 16.2061C2.76895 15.9303 2.72259 15.5716 2.84668 15.2539C3.00219 14.8558 3.13916 14.4647 3.25195 14.0752C3.30835 13.8804 3.26912 13.5805 3.03516 13.1934C2.37771 12.1054 2 10.8441 2 9.5C2 5.28937 5.6528 2 10 2Z\" fill=\"currentColor\"/>",
|
|
6054
|
+
"iconName": "chat-bubbles",
|
|
6055
|
+
"variant": {
|
|
6056
|
+
"join": "round",
|
|
6057
|
+
"filled": "on",
|
|
6058
|
+
"radius": "2",
|
|
6059
|
+
"stroke": "2"
|
|
6060
|
+
},
|
|
6061
|
+
"createdAt": "2026-04-14T11:02:24.032689+00:00",
|
|
6062
|
+
"packageName": "round-filled-radius-2-stroke-2",
|
|
6063
|
+
"componentName": "IconChatBubbles"
|
|
6064
|
+
},
|
|
6037
6065
|
{
|
|
6038
6066
|
"category": "Interface General",
|
|
6039
6067
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.5586 8.1709C15.1005 7.8626 14.4794 7.98355 14.1709 8.44141L10.4727 13.9336L8.70703 12.168C8.31651 11.7774 7.68349 11.7774 7.29297 12.168C6.90244 12.5585 6.90244 13.1915 7.29297 13.582L9.91797 16.207C10.1293 16.4183 10.4243 16.5239 10.7217 16.4951C11.0188 16.4662 11.2873 16.3062 11.4541 16.0586L15.8291 9.55859C16.1374 9.10055 16.0165 8.47937 15.5586 8.1709Z\" fill=\"currentColor\"/>",
|
|
@@ -24290,6 +24318,20 @@
|
|
|
24290
24318
|
"packageName": "round-filled-radius-2-stroke-2",
|
|
24291
24319
|
"componentName": "IconTestTube"
|
|
24292
24320
|
},
|
|
24321
|
+
{
|
|
24322
|
+
"category": "Things",
|
|
24323
|
+
"svg": "<path d=\"M20 13.9999C20.5523 13.9999 21 14.4476 21 14.9999V17.9999C21 19.6568 19.6569 20.9999 18 20.9999H14C13.4477 20.9999 13 20.5522 13 19.9999C13 19.4476 13.4477 18.9999 14 18.9999H18C18.5523 18.9999 19 18.5522 19 17.9999V14.9999C19 14.4476 19.4477 13.9999 20 13.9999Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.043 2.54289C13.4335 2.15237 14.0665 2.15237 14.457 2.54289L21.457 9.54289C21.8475 9.93342 21.8476 10.5664 21.457 10.957C21.0665 11.3474 20.4335 11.3474 20.043 10.957L19.25 10.164L9.95703 19.457C8.462 20.9518 6.03803 20.9518 4.54297 19.457C3.04808 17.9619 3.04808 15.5379 4.54297 14.0429L13.8359 4.74992L13.043 3.95696C12.6525 3.56645 12.6525 2.93342 13.043 2.54289ZM5.95703 15.457C5.24319 16.171 5.24319 17.3289 5.95703 18.0429C6.67104 18.7567 7.82898 18.7567 8.54297 18.0429L13.8359 12.7499H8.66406L5.95703 15.457ZM10.6641 10.7499H15.8359L17.8359 8.74992L15.25 6.16399L10.6641 10.7499Z\" fill=\"currentColor\"/><path d=\"M9 2.99992C9.55228 2.99992 10 3.44764 10 3.99992C10 4.55221 9.55228 4.99992 9 4.99992H6C5.44772 4.99992 5 5.44764 5 5.99992V9.99992C5 10.5522 4.55228 10.9999 4 10.9999C3.44772 10.9999 3 10.5522 3 9.99992V5.99992C3 4.34307 4.34315 2.99992 6 2.99992H9Z\" fill=\"currentColor\"/>",
|
|
24324
|
+
"iconName": "test-tube 2, test, lab, filter",
|
|
24325
|
+
"variant": {
|
|
24326
|
+
"join": "round",
|
|
24327
|
+
"filled": "on",
|
|
24328
|
+
"radius": "2",
|
|
24329
|
+
"stroke": "2"
|
|
24330
|
+
},
|
|
24331
|
+
"createdAt": "2026-04-14T14:02:05.42191+00:00",
|
|
24332
|
+
"packageName": "round-filled-radius-2-stroke-2",
|
|
24333
|
+
"componentName": "IconTestTube2"
|
|
24334
|
+
},
|
|
24293
24335
|
{
|
|
24294
24336
|
"category": "Typography",
|
|
24295
24337
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V6C21 6.55228 20.5523 7 20 7C19.4477 7 19 6.55228 19 6V5H13V19H14C14.5523 19 15 19.4477 15 20C15 20.5523 14.5523 21 14 21H10C9.44772 21 9 20.5523 9 20C9 19.4477 9.44772 19 10 19H11V5H5V6C5 6.55228 4.55228 7 4 7C3.44772 7 3 6.55228 3 6V4Z\" fill=\"currentColor\"/>",
|
|
@@ -25063,7 +25105,7 @@
|
|
|
25063
25105
|
{
|
|
25064
25106
|
"category": "Statistics & Charts",
|
|
25065
25107
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 7C15 6.44772 15.4477 6 16 6H21C21.5523 6 22 6.44772 22 7V12C22 12.5523 21.5523 13 21 13C20.4477 13 20 12.5523 20 12V9.41421L15.1213 14.2929C13.9497 15.4645 12.0503 15.4645 10.8787 14.2929L9.70711 13.1213C9.31658 12.7308 8.68342 12.7308 8.29289 13.1213L3.70711 17.7071C3.31658 18.0976 2.68342 18.0976 2.29289 17.7071C1.90237 17.3166 1.90237 16.6834 2.29289 16.2929L6.87868 11.7071C8.05025 10.5355 9.94975 10.5355 11.1213 11.7071L12.2929 12.8787C12.6834 13.2692 13.3166 13.2692 13.7071 12.8787L18.5858 8H16C15.4477 8 15 7.55228 15 7Z\" fill=\"currentColor\"/>",
|
|
25066
|
-
"iconName": "trending-3, trends",
|
|
25108
|
+
"iconName": "trending-3, trends, upward",
|
|
25067
25109
|
"variant": {
|
|
25068
25110
|
"join": "round",
|
|
25069
25111
|
"filled": "on",
|
package/icons/index.d.ts
CHANGED
|
@@ -430,6 +430,8 @@ export type CentralIconName =
|
|
|
430
430
|
| "IconChartCompareHorizontal"
|
|
431
431
|
| "IconChartWaterfall"
|
|
432
432
|
| "IconChartWaterfallAxis"
|
|
433
|
+
| "IconChatBubble7"
|
|
434
|
+
| "IconChatBubbles"
|
|
433
435
|
| "IconCheckCircle2"
|
|
434
436
|
| "IconCheckCircle2Dashed"
|
|
435
437
|
| "IconCheckCircleDashed"
|
|
@@ -1734,6 +1736,7 @@ export type CentralIconName =
|
|
|
1734
1736
|
| "IconTennis"
|
|
1735
1737
|
| "IconTestflight"
|
|
1736
1738
|
| "IconTestTube"
|
|
1739
|
+
| "IconTestTube2"
|
|
1737
1740
|
| "IconText1"
|
|
1738
1741
|
| "IconText2"
|
|
1739
1742
|
| "IconTextareaDrag"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-2-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.188",
|
|
4
4
|
"style": "round-filled-radius-2-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-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":
|
|
14
|
+
"totalIcons": 1934,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 76,
|
|
@@ -383,7 +383,7 @@
|
|
|
383
383
|
]
|
|
384
384
|
},
|
|
385
385
|
"Communication": {
|
|
386
|
-
"count":
|
|
386
|
+
"count": 52,
|
|
387
387
|
"icons": [
|
|
388
388
|
"IconBook",
|
|
389
389
|
"IconBookSimple",
|
|
@@ -417,6 +417,8 @@
|
|
|
417
417
|
"IconCallCancel",
|
|
418
418
|
"IconCallIncoming",
|
|
419
419
|
"IconCallOutgoing",
|
|
420
|
+
"IconChatBubble7",
|
|
421
|
+
"IconChatBubbles",
|
|
420
422
|
"IconEmail1",
|
|
421
423
|
"IconEmail2",
|
|
422
424
|
"IconEmail3",
|
|
@@ -1789,7 +1791,7 @@
|
|
|
1789
1791
|
]
|
|
1790
1792
|
},
|
|
1791
1793
|
"Things": {
|
|
1792
|
-
"count":
|
|
1794
|
+
"count": 136,
|
|
1793
1795
|
"icons": [
|
|
1794
1796
|
"IconAnvil",
|
|
1795
1797
|
"IconApps",
|
|
@@ -1912,6 +1914,7 @@
|
|
|
1912
1914
|
"IconTeddyBear",
|
|
1913
1915
|
"IconTelescope",
|
|
1914
1916
|
"IconTestTube",
|
|
1917
|
+
"IconTestTube2",
|
|
1915
1918
|
"IconThinkingBubble",
|
|
1916
1919
|
"IconThinkingBubble1",
|
|
1917
1920
|
"IconThread",
|
|
@@ -2564,6 +2567,8 @@
|
|
|
2564
2567
|
"IconChartCompareHorizontal": "chart-compare-horizontal",
|
|
2565
2568
|
"IconChartWaterfall": "chart-waterfall",
|
|
2566
2569
|
"IconChartWaterfallAxis": "chart-waterfall-axis",
|
|
2570
|
+
"IconChatBubble7": "chat-bubble-7",
|
|
2571
|
+
"IconChatBubbles": "chat-bubbles",
|
|
2567
2572
|
"IconCheckCircle2": "check-circle-2, done, confirm, save, success",
|
|
2568
2573
|
"IconCheckCircle2Dashed": "check-circle-2-dashed, progress",
|
|
2569
2574
|
"IconCheckCircleDashed": "check-circle-dashed, done, confirm, save, success",
|
|
@@ -3868,6 +3873,7 @@
|
|
|
3868
3873
|
"IconTennis": "tennis",
|
|
3869
3874
|
"IconTestflight": "testflight, beta",
|
|
3870
3875
|
"IconTestTube": "test-tube",
|
|
3876
|
+
"IconTestTube2": "test-tube 2, test, lab, filter",
|
|
3871
3877
|
"IconText1": "text-1",
|
|
3872
3878
|
"IconText2": "text-2",
|
|
3873
3879
|
"IconTextareaDrag": "textarea-drag",
|
|
@@ -3923,7 +3929,7 @@
|
|
|
3923
3929
|
"IconTree": "tree",
|
|
3924
3930
|
"IconTrending1": "trending-1, trends",
|
|
3925
3931
|
"IconTrending2": "trending-2, trends",
|
|
3926
|
-
"IconTrending3": "trending-3, trends",
|
|
3932
|
+
"IconTrending3": "trending-3, trends, upward",
|
|
3927
3933
|
"IconTrending4": "trending-4, chart",
|
|
3928
3934
|
"IconTrending5": "trending-5, chart, analytics",
|
|
3929
3935
|
"IconTrending6": "trending-6, trends, downward",
|
package/index.d.ts
CHANGED
|
@@ -429,6 +429,8 @@ export { IconChartCompare, default as IconChartCompareDefault, } from "./IconCha
|
|
|
429
429
|
export { IconChartCompareHorizontal, default as IconChartCompareHorizontalDefault, } from "./IconChartCompareHorizontal";
|
|
430
430
|
export { IconChartWaterfall, default as IconChartWaterfallDefault, } from "./IconChartWaterfall";
|
|
431
431
|
export { IconChartWaterfallAxis, default as IconChartWaterfallAxisDefault, } from "./IconChartWaterfallAxis";
|
|
432
|
+
export { IconChatBubble7, default as IconChatBubble7Default, } from "./IconChatBubble7";
|
|
433
|
+
export { IconChatBubbles, default as IconChatBubblesDefault, } from "./IconChatBubbles";
|
|
432
434
|
export { IconCheckCircle2, default as IconCheckCircle2Default, } from "./IconCheckCircle2";
|
|
433
435
|
export { IconCheckCircle2Dashed, default as IconCheckCircle2DashedDefault, } from "./IconCheckCircle2Dashed";
|
|
434
436
|
export { IconCheckCircleDashed, default as IconCheckCircleDashedDefault, } from "./IconCheckCircleDashed";
|
|
@@ -1732,6 +1734,7 @@ export { IconTelevision, default as IconTelevisionDefault, } from "./IconTelevis
|
|
|
1732
1734
|
export { IconTelevisionOld, default as IconTelevisionOldDefault, } from "./IconTelevisionOld";
|
|
1733
1735
|
export { IconTennis, default as IconTennisDefault } from "./IconTennis";
|
|
1734
1736
|
export { IconTestTube, default as IconTestTubeDefault } from "./IconTestTube";
|
|
1737
|
+
export { IconTestTube2, default as IconTestTube2Default, } from "./IconTestTube2";
|
|
1735
1738
|
export { IconTestflight, default as IconTestflightDefault, } from "./IconTestflight";
|
|
1736
1739
|
export { IconText1, default as IconText1Default } from "./IconText1";
|
|
1737
1740
|
export { IconText2, default as IconText2Default } from "./IconText2";
|