@central-icons-react-native/round-filled-radius-1-stroke-1 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.497 2.5 22 6.72817 22 12C22 17.2718 17.497 21.5 12 21.5C10.3706 21.5 8.83027 21.1292 7.46875 20.4707C7.33732 20.4072 7.19188 20.3925 7.05957 20.4268C5.94381 20.7157 4.79475 20.895 3.58594 20.9697C3.41637 20.98 3.25292 20.9035 3.15234 20.7666C3.05174 20.6296 3.0281 20.4508 3.08887 20.292C3.40615 19.4632 3.67642 18.6384 3.86426 17.7998C3.89199 17.676 3.86207 17.5245 3.76074 17.3848C2.65169 15.8559 2 14.0005 2 12C2 6.72817 6.50297 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.497 2.5 22 6.72817 22 12C22 17.2718 17.497 21.5 12 21.5C10.3706 21.5 8.83027 21.1292 7.46875 20.4707C7.33732 20.4072 7.19188 20.3925 7.05957 20.4268C5.94381 20.7157 4.79475 20.895 3.58594 20.9697C3.41637 20.98 3.25292 20.9035 3.15234 20.7666C3.05174 20.6296 3.0281 20.4508 3.08887 20.292C3.40615 19.4632 3.67642 18.6384 3.86426 17.7998C3.89199 17.676 3.86207 17.5245 3.76074 17.3848C2.65169 15.8559 2 14.0005 2 12C2 6.72817 6.50297 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,ycACF,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.497 2.5 22 6.72817 22 12C22 17.2718 17.497 21.5 12 21.5C10.3706 21.5 8.83027 21.1292 7.46875 20.4707C7.33732 20.4072 7.19188 20.3925 7.05957 20.4268C5.94381 20.7157 4.79475 20.895 3.58594 20.9697C3.41637 20.98 3.25292 20.9035 3.15234 20.7666C3.05174 20.6296 3.0281 20.4508 3.08887 20.292C3.40615 19.4632 3.67642 18.6384 3.86426 17.7998C3.89199 17.676 3.86207 17.5245 3.76074 17.3848C2.65169 15.8559 2 14.0005 2 12C2 6.72817 6.50297 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.497 2.5 22 6.72817 22 12C22 17.2718 17.497 21.5 12 21.5C10.3706 21.5 8.83027 21.1292 7.46875 20.4707C7.33732 20.4072 7.19188 20.3925 7.05957 20.4268C5.94381 20.7157 4.79475 20.895 3.58594 20.9697C3.41637 20.98 3.25292 20.9035 3.15234 20.7666C3.05174 20.6296 3.0281 20.4508 3.08887 20.292C3.40615 19.4632 3.67642 18.6384 3.86426 17.7998C3.89199 17.676 3.86207 17.5245 3.76074 17.3848C2.65169 15.8559 2 14.0005 2 12C2 6.72817 6.50297 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,ycACF,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 10C19.048 10 22 12.6462 22 16C22 17.1971 21.6203 18.3111 20.9697 19.2441C20.8579 19.4045 20.831 19.559 20.8604 19.6738C20.9729 20.1138 21.1231 20.5505 21.2979 20.9922C21.3607 21.1511 21.3385 21.3313 21.2383 21.4697C21.1381 21.608 20.9742 21.6859 20.8037 21.6758C20.0803 21.6325 19.389 21.5326 18.7168 21.373C18.5844 21.3417 18.4382 21.3555 18.3008 21.416C17.4513 21.7908 16.5008 22 15.5 22C11.952 22 9 19.3538 9 16C9 12.6462 11.952 10 15.5 10Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M10 2.5C14.1705 2.5 17.6405 5.50851 17.9707 9.39355C17.1904 9.13865 16.3576 9 15.5 9C11.4834 9 8 12.0138 8 16C8 16.4438 8.04564 16.8751 8.12793 17.292C7.54386 17.1607 6.98399 16.9709 6.45703 16.7266C6.32266 16.6643 6.17644 16.6496 6.04395 16.6826C5.1818 16.8971 4.29444 17.0302 3.36328 17.0869C3.19332 17.0971 3.03008 17.0204 2.92969 16.8828C2.82925 16.7452 2.80552 16.566 2.86719 16.4072C3.10345 15.7992 3.30581 15.1957 3.45117 14.585C3.47952 14.4652 3.45071 14.3127 3.34473 14.1641C2.49662 12.9748 2 11.5421 2 10C2 5.82593 5.61477 2.5 10 2.5Z",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 10C19.048 10 22 12.6462 22 16C22 17.1971 21.6203 18.3111 20.9697 19.2441C20.8579 19.4045 20.831 19.559 20.8604 19.6738C20.9729 20.1138 21.1231 20.5505 21.2979 20.9922C21.3607 21.1511 21.3385 21.3313 21.2383 21.4697C21.1381 21.608 20.9742 21.6859 20.8037 21.6758C20.0803 21.6325 19.389 21.5326 18.7168 21.373C18.5844 21.3417 18.4382 21.3555 18.3008 21.416C17.4513 21.7908 16.5008 22 15.5 22C11.952 22 9 19.3538 9 16C9 12.6462 11.952 10 15.5 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10 2.5C14.1705 2.5 17.6405 5.50851 17.9707 9.39355C17.1904 9.13865 16.3576 9 15.5 9C11.4834 9 8 12.0138 8 16C8 16.4438 8.04564 16.8751 8.12793 17.292C7.54386 17.1607 6.98399 16.9709 6.45703 16.7266C6.32266 16.6643 6.17644 16.6496 6.04395 16.6826C5.1818 16.8971 4.29444 17.0302 3.36328 17.0869C3.19332 17.0971 3.03008 17.0204 2.92969 16.8828C2.82925 16.7452 2.80552 16.566 2.86719 16.4072C3.10345 15.7992 3.30581 15.1957 3.45117 14.585C3.47952 14.4652 3.45071 14.3127 3.34473 14.1641C2.49662 12.9748 2 11.5421 2 10C2 5.82593 5.61477 2.5 10 2.5Z\"\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,ocACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,miBACF,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 10C19.048 10 22 12.6462 22 16C22 17.1971 21.6203 18.3111 20.9697 19.2441C20.8579 19.4045 20.831 19.559 20.8604 19.6738C20.9729 20.1138 21.1231 20.5505 21.2979 20.9922C21.3607 21.1511 21.3385 21.3313 21.2383 21.4697C21.1381 21.608 20.9742 21.6859 20.8037 21.6758C20.0803 21.6325 19.389 21.5326 18.7168 21.373C18.5844 21.3417 18.4382 21.3555 18.3008 21.416C17.4513 21.7908 16.5008 22 15.5 22C11.952 22 9 19.3538 9 16C9 12.6462 11.952 10 15.5 10Z",fill:"currentColor"}),C.createElement(e,{d:"M10 2.5C14.1705 2.5 17.6405 5.50851 17.9707 9.39355C17.1904 9.13865 16.3576 9 15.5 9C11.4834 9 8 12.0138 8 16C8 16.4438 8.04564 16.8751 8.12793 17.292C7.54386 17.1607 6.98399 16.9709 6.45703 16.7266C6.32266 16.6643 6.17644 16.6496 6.04395 16.6826C5.1818 16.8971 4.29444 17.0302 3.36328 17.0869C3.19332 17.0971 3.03008 17.0204 2.92969 16.8828C2.82925 16.7452 2.80552 16.566 2.86719 16.4072C3.10345 15.7992 3.30581 15.1957 3.45117 14.585C3.47952 14.4652 3.45071 14.3127 3.34473 14.1641C2.49662 12.9748 2 11.5421 2 10C2 5.82593 5.61477 2.5 10 2.5Z",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 10C19.048 10 22 12.6462 22 16C22 17.1971 21.6203 18.3111 20.9697 19.2441C20.8579 19.4045 20.831 19.559 20.8604 19.6738C20.9729 20.1138 21.1231 20.5505 21.2979 20.9922C21.3607 21.1511 21.3385 21.3313 21.2383 21.4697C21.1381 21.608 20.9742 21.6859 20.8037 21.6758C20.0803 21.6325 19.389 21.5326 18.7168 21.373C18.5844 21.3417 18.4382 21.3555 18.3008 21.416C17.4513 21.7908 16.5008 22 15.5 22C11.952 22 9 19.3538 9 16C9 12.6462 11.952 10 15.5 10Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10 2.5C14.1705 2.5 17.6405 5.50851 17.9707 9.39355C17.1904 9.13865 16.3576 9 15.5 9C11.4834 9 8 12.0138 8 16C8 16.4438 8.04564 16.8751 8.12793 17.292C7.54386 17.1607 6.98399 16.9709 6.45703 16.7266C6.32266 16.6643 6.17644 16.6496 6.04395 16.6826C5.1818 16.8971 4.29444 17.0302 3.36328 17.0869C3.19332 17.0971 3.03008 17.0204 2.92969 16.8828C2.82925 16.7452 2.80552 16.566 2.86719 16.4072C3.10345 15.7992 3.30581 15.1957 3.45117 14.585C3.47952 14.4652 3.45071 14.3127 3.34473 14.1641C2.49662 12.9748 2 11.5421 2 10C2 5.82593 5.61477 2.5 10 2.5Z\"\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,ocACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,miBACF,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 C in o)t(r,C,{get:o[C],enumerable:!0})},a=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!I.call(r,e)&&e!==C&&t(r,e,{get:()=>o[e],enumerable:!(p=L(o,e))||p.enumerable});return r};var f=(r,o,C)=>(C=r!=null?i(B(r)):{},a(o||!r||!r.__esModule?t(C,"default",{value:r,enumerable:!0}):C,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,...C})=>m.default.createElement(s.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 l=require("react-native-svg"),c=r=>n.default.createElement(u,{...r},n.default.createElement(l.Path,{d:"M20.5 14C20.7761 14 21 14.2238 21 14.5V19.5C21 20.3284 20.3284 21 19.5 21H13.5C13.2239 21 13 20.7761 13 20.5C13 20.2238 13.2239 20 13.5 20H19.5C19.7761 20 20 19.7761 20 19.5V14.5C20 14.2238 20.2239 14 20.5 14Z",fill:"currentColor"}),n.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.3965 2.89645C13.5917 2.70118 13.9083 2.70118 14.1035 2.89645L21.1035 9.89645C21.2987 10.0917 21.2988 10.4082 21.1035 10.6035C20.9083 10.7987 20.5917 10.7987 20.3965 10.6035L19.25 9.45699L9.60352 19.1035C8.30376 20.4031 6.19629 20.403 4.89648 19.1035C3.59685 17.8037 3.59685 15.6962 4.89648 14.3964L14.543 4.74996L13.3965 3.60348C13.2012 3.40822 13.2012 3.09171 13.3965 2.89645ZM5.60352 15.1035C4.69441 16.0127 4.69441 17.4872 5.60352 18.3964C6.51279 19.3054 7.98725 19.3055 8.89648 18.3964L15.043 12.25H8.5C8.48646 12.25 8.47323 12.2471 8.45996 12.2461L5.60352 15.1035ZM9.45703 11.25H16C16.0131 11.25 16.0262 11.2519 16.0391 11.2529L18.543 8.74996L15.25 5.45699L9.45703 11.25Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M9.5 2.99996C9.77614 2.99996 10 3.22382 10 3.49996C9.99998 3.77609 9.77613 3.99996 9.5 3.99996H4.5C4.22386 3.99996 4 4.22382 4 4.49996V10.5C3.99998 10.7761 3.77613 11 3.5 11C3.22387 11 3.00002 10.7761 3 10.5V4.49996C3 3.67154 3.67157 2.99996 4.5 2.99996H9.5Z",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.5 14C20.7761 14 21 14.2238 21 14.5V19.5C21 20.3284 20.3284 21 19.5 21H13.5C13.2239 21 13 20.7761 13 20.5C13 20.2238 13.2239 20 13.5 20H19.5C19.7761 20 20 19.7761 20 19.5V14.5C20 14.2238 20.2239 14 20.5 14Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.3965 2.89645C13.5917 2.70118 13.9083 2.70118 14.1035 2.89645L21.1035 9.89645C21.2987 10.0917 21.2988 10.4082 21.1035 10.6035C20.9083 10.7987 20.5917 10.7987 20.3965 10.6035L19.25 9.45699L9.60352 19.1035C8.30376 20.4031 6.19629 20.403 4.89648 19.1035C3.59685 17.8037 3.59685 15.6962 4.89648 14.3964L14.543 4.74996L13.3965 3.60348C13.2012 3.40822 13.2012 3.09171 13.3965 2.89645ZM5.60352 15.1035C4.69441 16.0127 4.69441 17.4872 5.60352 18.3964C6.51279 19.3054 7.98725 19.3055 8.89648 18.3964L15.043 12.25H8.5C8.48646 12.25 8.47323 12.2471 8.45996 12.2461L5.60352 15.1035ZM9.45703 11.25H16C16.0131 11.25 16.0262 11.2519 16.0391 11.2529L18.543 8.74996L15.25 5.45699L9.45703 11.25Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.5 2.99996C9.77614 2.99996 10 3.22382 10 3.49996C9.99998 3.77609 9.77613 3.99996 9.5 3.99996H4.5C4.22386 3.99996 4 4.22382 4 4.49996V10.5C3.99998 10.7761 3.77613 11 3.5 11C3.22387 11 3.00002 10.7761 3 10.5V4.49996C3 3.67154 3.67157 2.99996 4.5 2.99996H9.5Z\"\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,oNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2qBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qQACF,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:C,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"},C);import{Path as e}from"react-native-svg";var a=C=>o.createElement(n,{...C},o.createElement(e,{d:"M20.5 14C20.7761 14 21 14.2238 21 14.5V19.5C21 20.3284 20.3284 21 19.5 21H13.5C13.2239 21 13 20.7761 13 20.5C13 20.2238 13.2239 20 13.5 20H19.5C19.7761 20 20 19.7761 20 19.5V14.5C20 14.2238 20.2239 14 20.5 14Z",fill:"currentColor"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M13.3965 2.89645C13.5917 2.70118 13.9083 2.70118 14.1035 2.89645L21.1035 9.89645C21.2987 10.0917 21.2988 10.4082 21.1035 10.6035C20.9083 10.7987 20.5917 10.7987 20.3965 10.6035L19.25 9.45699L9.60352 19.1035C8.30376 20.4031 6.19629 20.403 4.89648 19.1035C3.59685 17.8037 3.59685 15.6962 4.89648 14.3964L14.543 4.74996L13.3965 3.60348C13.2012 3.40822 13.2012 3.09171 13.3965 2.89645ZM5.60352 15.1035C4.69441 16.0127 4.69441 17.4872 5.60352 18.3964C6.51279 19.3054 7.98725 19.3055 8.89648 18.3964L15.043 12.25H8.5C8.48646 12.25 8.47323 12.2471 8.45996 12.2461L5.60352 15.1035ZM9.45703 11.25H16C16.0131 11.25 16.0262 11.2519 16.0391 11.2529L18.543 8.74996L15.25 5.45699L9.45703 11.25Z",fill:"currentColor"}),o.createElement(e,{d:"M9.5 2.99996C9.77614 2.99996 10 3.22382 10 3.49996C9.99998 3.77609 9.77613 3.99996 9.5 3.99996H4.5C4.22386 3.99996 4 4.22382 4 4.49996V10.5C3.99998 10.7761 3.77613 11 3.5 11C3.22387 11 3.00002 10.7761 3 10.5V4.49996C3 3.67154 3.67157 2.99996 4.5 2.99996H9.5Z",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.5 14C20.7761 14 21 14.2238 21 14.5V19.5C21 20.3284 20.3284 21 19.5 21H13.5C13.2239 21 13 20.7761 13 20.5C13 20.2238 13.2239 20 13.5 20H19.5C19.7761 20 20 19.7761 20 19.5V14.5C20 14.2238 20.2239 14 20.5 14Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13.3965 2.89645C13.5917 2.70118 13.9083 2.70118 14.1035 2.89645L21.1035 9.89645C21.2987 10.0917 21.2988 10.4082 21.1035 10.6035C20.9083 10.7987 20.5917 10.7987 20.3965 10.6035L19.25 9.45699L9.60352 19.1035C8.30376 20.4031 6.19629 20.403 4.89648 19.1035C3.59685 17.8037 3.59685 15.6962 4.89648 14.3964L14.543 4.74996L13.3965 3.60348C13.2012 3.40822 13.2012 3.09171 13.3965 2.89645ZM5.60352 15.1035C4.69441 16.0127 4.69441 17.4872 5.60352 18.3964C6.51279 19.3054 7.98725 19.3055 8.89648 18.3964L15.043 12.25H8.5C8.48646 12.25 8.47323 12.2471 8.45996 12.2461L5.60352 15.1035ZM9.45703 11.25H16C16.0131 11.25 16.0262 11.2519 16.0391 11.2529L18.543 8.74996L15.25 5.45699L9.45703 11.25Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.5 2.99996C9.77614 2.99996 10 3.22382 10 3.49996C9.99998 3.77609 9.77613 3.99996 9.5 3.99996H4.5C4.22386 3.99996 4 4.22382 4 4.49996V10.5C3.99998 10.7761 3.77613 11 3.5 11C3.22387 11 3.00002 10.7761 3 10.5V4.49996C3 3.67154 3.67157 2.99996 4.5 2.99996H9.5Z\"\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,oNACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,2qBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qQACF,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-1-stroke-1",
|
|
6035
6035
|
"componentName": "IconChartWaterfallAxis"
|
|
6036
6036
|
},
|
|
6037
|
+
{
|
|
6038
|
+
"category": "Communication",
|
|
6039
|
+
"svg": "<path d=\"M12 2.5C17.497 2.5 22 6.72817 22 12C22 17.2718 17.497 21.5 12 21.5C10.3706 21.5 8.83027 21.1292 7.46875 20.4707C7.33732 20.4072 7.19188 20.3925 7.05957 20.4268C5.94381 20.7157 4.79475 20.895 3.58594 20.9697C3.41637 20.98 3.25292 20.9035 3.15234 20.7666C3.05174 20.6296 3.0281 20.4508 3.08887 20.292C3.40615 19.4632 3.67642 18.6384 3.86426 17.7998C3.89199 17.676 3.86207 17.5245 3.76074 17.3848C2.65169 15.8559 2 14.0005 2 12C2 6.72817 6.50297 2.5 12 2.5Z\" fill=\"currentColor\"/>",
|
|
6040
|
+
"iconName": "chat-bubble-7",
|
|
6041
|
+
"variant": {
|
|
6042
|
+
"join": "round",
|
|
6043
|
+
"filled": "on",
|
|
6044
|
+
"radius": "1",
|
|
6045
|
+
"stroke": "1"
|
|
6046
|
+
},
|
|
6047
|
+
"createdAt": "2026-04-14T11:02:24.032689+00:00",
|
|
6048
|
+
"packageName": "round-filled-radius-1-stroke-1",
|
|
6049
|
+
"componentName": "IconChatBubble7"
|
|
6050
|
+
},
|
|
6051
|
+
{
|
|
6052
|
+
"category": "Communication",
|
|
6053
|
+
"svg": "<path d=\"M15.5 10C19.048 10 22 12.6462 22 16C22 17.1971 21.6203 18.3111 20.9697 19.2441C20.8579 19.4045 20.831 19.559 20.8604 19.6738C20.9729 20.1138 21.1231 20.5505 21.2979 20.9922C21.3607 21.1511 21.3385 21.3313 21.2383 21.4697C21.1381 21.608 20.9742 21.6859 20.8037 21.6758C20.0803 21.6325 19.389 21.5326 18.7168 21.373C18.5844 21.3417 18.4382 21.3555 18.3008 21.416C17.4513 21.7908 16.5008 22 15.5 22C11.952 22 9 19.3538 9 16C9 12.6462 11.952 10 15.5 10Z\" fill=\"currentColor\"/><path d=\"M10 2.5C14.1705 2.5 17.6405 5.50851 17.9707 9.39355C17.1904 9.13865 16.3576 9 15.5 9C11.4834 9 8 12.0138 8 16C8 16.4438 8.04564 16.8751 8.12793 17.292C7.54386 17.1607 6.98399 16.9709 6.45703 16.7266C6.32266 16.6643 6.17644 16.6496 6.04395 16.6826C5.1818 16.8971 4.29444 17.0302 3.36328 17.0869C3.19332 17.0971 3.03008 17.0204 2.92969 16.8828C2.82925 16.7452 2.80552 16.566 2.86719 16.4072C3.10345 15.7992 3.30581 15.1957 3.45117 14.585C3.47952 14.4652 3.45071 14.3127 3.34473 14.1641C2.49662 12.9748 2 11.5421 2 10C2 5.82593 5.61477 2.5 10 2.5Z\" fill=\"currentColor\"/>",
|
|
6054
|
+
"iconName": "chat-bubbles",
|
|
6055
|
+
"variant": {
|
|
6056
|
+
"join": "round",
|
|
6057
|
+
"filled": "on",
|
|
6058
|
+
"radius": "1",
|
|
6059
|
+
"stroke": "1"
|
|
6060
|
+
},
|
|
6061
|
+
"createdAt": "2026-04-14T11:02:24.032689+00:00",
|
|
6062
|
+
"packageName": "round-filled-radius-1-stroke-1",
|
|
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.7646 8.07617C15.5305 7.92996 15.2225 8.00124 15.0762 8.23535L10.4219 15.6816L7.86621 12.9287C7.67828 12.7266 7.36243 12.7155 7.16016 12.9033C6.95784 13.0912 6.9459 13.407 7.13379 13.6094L10.1338 16.8398C10.2397 16.9539 10.3929 17.0128 10.5479 16.998C10.7026 16.9832 10.8414 16.8965 10.9238 16.7646L15.9238 8.76465C16.07 8.5305 15.9988 8.22249 15.7646 8.07617Z\" fill=\"currentColor\"/>",
|
|
@@ -24290,6 +24318,20 @@
|
|
|
24290
24318
|
"packageName": "round-filled-radius-1-stroke-1",
|
|
24291
24319
|
"componentName": "IconTestTube"
|
|
24292
24320
|
},
|
|
24321
|
+
{
|
|
24322
|
+
"category": "Things",
|
|
24323
|
+
"svg": "<path d=\"M20.5 14C20.7761 14 21 14.2238 21 14.5V19.5C21 20.3284 20.3284 21 19.5 21H13.5C13.2239 21 13 20.7761 13 20.5C13 20.2238 13.2239 20 13.5 20H19.5C19.7761 20 20 19.7761 20 19.5V14.5C20 14.2238 20.2239 14 20.5 14Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.3965 2.89645C13.5917 2.70118 13.9083 2.70118 14.1035 2.89645L21.1035 9.89645C21.2987 10.0917 21.2988 10.4082 21.1035 10.6035C20.9083 10.7987 20.5917 10.7987 20.3965 10.6035L19.25 9.45699L9.60352 19.1035C8.30376 20.4031 6.19629 20.403 4.89648 19.1035C3.59685 17.8037 3.59685 15.6962 4.89648 14.3964L14.543 4.74996L13.3965 3.60348C13.2012 3.40822 13.2012 3.09171 13.3965 2.89645ZM5.60352 15.1035C4.69441 16.0127 4.69441 17.4872 5.60352 18.3964C6.51279 19.3054 7.98725 19.3055 8.89648 18.3964L15.043 12.25H8.5C8.48646 12.25 8.47323 12.2471 8.45996 12.2461L5.60352 15.1035ZM9.45703 11.25H16C16.0131 11.25 16.0262 11.2519 16.0391 11.2529L18.543 8.74996L15.25 5.45699L9.45703 11.25Z\" fill=\"currentColor\"/><path d=\"M9.5 2.99996C9.77614 2.99996 10 3.22382 10 3.49996C9.99998 3.77609 9.77613 3.99996 9.5 3.99996H4.5C4.22386 3.99996 4 4.22382 4 4.49996V10.5C3.99998 10.7761 3.77613 11 3.5 11C3.22387 11 3.00002 10.7761 3 10.5V4.49996C3 3.67154 3.67157 2.99996 4.5 2.99996H9.5Z\" fill=\"currentColor\"/>",
|
|
24324
|
+
"iconName": "test-tube 2, test, lab, filter",
|
|
24325
|
+
"variant": {
|
|
24326
|
+
"join": "round",
|
|
24327
|
+
"filled": "on",
|
|
24328
|
+
"radius": "1",
|
|
24329
|
+
"stroke": "1"
|
|
24330
|
+
},
|
|
24331
|
+
"createdAt": "2026-04-14T14:02:05.42191+00:00",
|
|
24332
|
+
"packageName": "round-filled-radius-1-stroke-1",
|
|
24333
|
+
"componentName": "IconTestTube2"
|
|
24334
|
+
},
|
|
24293
24335
|
{
|
|
24294
24336
|
"category": "Typography",
|
|
24295
24337
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5V5.5C21 5.77614 20.7761 6 20.5 6C20.2239 6 20 5.77614 20 5.5V4H12.5V20H14.5C14.7761 20 15 20.2239 15 20.5C15 20.7761 14.7761 21 14.5 21H9.5C9.22386 21 9 20.7761 9 20.5C9 20.2239 9.22386 20 9.5 20H11.5V4H4V5.5C4 5.77614 3.77614 6 3.5 6C3.22386 6 3 5.77614 3 5.5V3.5Z\" fill=\"currentColor\"/>",
|
|
@@ -25063,7 +25105,7 @@
|
|
|
25063
25105
|
{
|
|
25064
25106
|
"category": "Statistics & Charts",
|
|
25065
25107
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16 6.5C16 6.22386 16.2239 6 16.5 6H21.5C21.7761 6 22 6.22386 22 6.5V11.5C22 11.7761 21.7761 12 21.5 12C21.2239 12 21 11.7761 21 11.5V7.72842L14.0602 14.6489C13.4741 15.2333 12.5255 15.2326 11.9403 14.6474L9.35355 12.0607C9.15829 11.8654 8.84171 11.8654 8.64645 12.0607L2.85355 17.8536C2.65829 18.0488 2.34171 18.0488 2.14645 17.8536C1.95118 17.6583 1.95118 17.3417 2.14645 17.1464L7.93934 11.3536C8.52513 10.7678 9.47487 10.7678 10.0607 11.3536L12.6474 13.9403C12.8425 14.1354 13.1587 14.1356 13.354 13.9408L20.3143 7H16.5C16.2239 7 16 6.77614 16 6.5Z\" 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-1-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.188",
|
|
4
4
|
"style": "round-filled-radius-1-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-1-stroke-1/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";
|