@central-icons-react-native/round-filled-radius-3-stroke-1 1.1.185 → 1.1.187
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/IconTrending6/index.d.ts +4 -0
- package/IconTrending6/index.js +2 -0
- package/IconTrending6/index.js.map +1 -0
- package/IconTrending6/index.mjs +2 -0
- package/IconTrending6/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +44 -2
- package/icons/index.d.ts +3 -0
- package/icons-index.json +12 -6
- 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 +23 -2
|
@@ -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.6753 21.5 9.40893 21.2551 8.25 20.8096C7.59894 20.5593 6.90316 20.4804 6.24707 20.6172C5.38669 20.7965 4.50325 20.913 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.29673 19.749 3.48387 19.2072 3.6416 18.6621C3.83132 18.0062 3.63785 17.2727 3.23047 16.5684C2.44682 15.2134 2 13.6561 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.6753 21.5 9.40893 21.2551 8.25 20.8096C7.59894 20.5593 6.90316 20.4804 6.24707 20.6172C5.38669 20.7965 4.50325 20.913 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.29673 19.749 3.48387 19.2072 3.6416 18.6621C3.83132 18.0062 3.63785 17.2727 3.23047 16.5684C2.44682 15.2134 2 13.6561 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,qcACF,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.6753 21.5 9.40893 21.2551 8.25 20.8096C7.59894 20.5593 6.90316 20.4804 6.24707 20.6172C5.38669 20.7965 4.50325 20.913 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.29673 19.749 3.48387 19.2072 3.6416 18.6621C3.83132 18.0062 3.63785 17.2727 3.23047 16.5684C2.44682 15.2134 2 13.6561 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.6753 21.5 9.40893 21.2551 8.25 20.8096C7.59894 20.5593 6.90316 20.4804 6.24707 20.6172C5.38669 20.7965 4.50325 20.913 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.29673 19.749 3.48387 19.2072 3.6416 18.6621C3.83132 18.0062 3.63785 17.2727 3.23047 16.5684C2.44682 15.2134 2 13.6561 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,qcACF,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 16.8319 21.8166 17.6247 21.4854 18.3447C21.111 19.1583 20.8969 19.8924 21.126 20.5361C21.18 20.6877 21.2376 20.84 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.3654 21.6495 19.9383 21.6026 19.5205 21.5342C18.8677 21.4273 18.179 21.5076 17.5059 21.709C16.8732 21.8982 16.1989 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.82691 17.2244 7.532 17.1426 7.24512 17.0439C6.58291 16.8163 5.8904 16.7358 5.23535 16.8584C4.6281 16.9721 4.00588 17.0478 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.4072C2.9916 16.0871 3.10662 15.768 3.20898 15.4482C3.41684 14.799 3.21549 14.0635 2.82031 13.3115C2.29567 12.3133 2 11.1887 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 16.8319 21.8166 17.6247 21.4854 18.3447C21.111 19.1583 20.8969 19.8924 21.126 20.5361C21.18 20.6877 21.2376 20.84 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.3654 21.6495 19.9383 21.6026 19.5205 21.5342C18.8677 21.4273 18.179 21.5076 17.5059 21.709C16.8732 21.8982 16.1989 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.82691 17.2244 7.532 17.1426 7.24512 17.0439C6.58291 16.8163 5.8904 16.7358 5.23535 16.8584C4.6281 16.9721 4.00588 17.0478 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.4072C2.9916 16.0871 3.10662 15.768 3.20898 15.4482C3.41684 14.799 3.21549 14.0635 2.82031 13.3115C2.29567 12.3133 2 11.1887 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,icACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8hBACF,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 16.8319 21.8166 17.6247 21.4854 18.3447C21.111 19.1583 20.8969 19.8924 21.126 20.5361C21.18 20.6877 21.2376 20.84 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.3654 21.6495 19.9383 21.6026 19.5205 21.5342C18.8677 21.4273 18.179 21.5076 17.5059 21.709C16.8732 21.8982 16.1989 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.82691 17.2244 7.532 17.1426 7.24512 17.0439C6.58291 16.8163 5.8904 16.7358 5.23535 16.8584C4.6281 16.9721 4.00588 17.0478 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.4072C2.9916 16.0871 3.10662 15.768 3.20898 15.4482C3.41684 14.799 3.21549 14.0635 2.82031 13.3115C2.29567 12.3133 2 11.1887 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 16.8319 21.8166 17.6247 21.4854 18.3447C21.111 19.1583 20.8969 19.8924 21.126 20.5361C21.18 20.6877 21.2376 20.84 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.3654 21.6495 19.9383 21.6026 19.5205 21.5342C18.8677 21.4273 18.179 21.5076 17.5059 21.709C16.8732 21.8982 16.1989 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.82691 17.2244 7.532 17.1426 7.24512 17.0439C6.58291 16.8163 5.8904 16.7358 5.23535 16.8584C4.6281 16.9721 4.00588 17.0478 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.4072C2.9916 16.0871 3.10662 15.768 3.20898 15.4482C3.41684 14.799 3.21549 14.0635 2.82031 13.3115C2.29567 12.3133 2 11.1887 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,icACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8hBACF,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 u=Object.create;var t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!g.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(p=d(o,n))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(I(r)):{},l(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(t({},"__esModule",{value:!0}),r);var h={};v(h,{IconTrending6:()=>i,default:()=>P});module.exports=x(h);var C=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({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 f=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M16 17.5C16 17.7761 16.2239 18 16.5 18H21.5C21.7761 18 22 17.7761 22 17.5V12.5C22 12.2239 21.7761 12 21.5 12C21.2239 12 21 12.2239 21 12.5V16.2716L15.3545 10.6418C14.0533 9.34426 11.9472 9.34573 10.6478 10.6451C9.73776 11.5551 8.26224 11.5551 7.35216 10.6451L2.85355 6.14645C2.65829 5.95118 2.34171 5.95118 2.14645 6.14645C1.95118 6.34171 1.95118 6.65829 2.14645 6.85355L6.64505 11.3522C7.94565 12.6528 10.0543 12.6528 11.3549 11.3522C12.2641 10.443 13.7379 10.4419 14.6483 11.3499L20.3143 17H16.5C16.2239 17 16 17.2239 16 17.5Z",fill:"currentColor"})),P=i;0&&(module.exports={IconTrending6});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTrending6/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 IconTrending6: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16 17.5C16 17.7761 16.2239 18 16.5 18H21.5C21.7761 18 22 17.7761 22 17.5V12.5C22 12.2239 21.7761 12 21.5 12C21.2239 12 21 12.2239 21 12.5V16.2716L15.3545 10.6418C14.0533 9.34426 11.9472 9.34573 10.6478 10.6451C9.73776 11.5551 8.26224 11.5551 7.35216 10.6451L2.85355 6.14645C2.65829 5.95118 2.34171 5.95118 2.14645 6.14645C1.95118 6.34171 1.95118 6.65829 2.14645 6.85355L6.64505 11.3522C7.94565 12.6528 10.0543 12.6528 11.3549 11.3522C12.2641 10.443 13.7379 10.4419 14.6483 11.3499L20.3143 17H16.5C16.2239 17 16 17.2239 16 17.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTrending6;\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,SAAS,UACT,SAAS,UACT,EAAE,mhBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconTrending6_exports","__export","IconTrending6","IconTrending6_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconTrending6","props","React","CentralIconBase","IconTrending6_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:o,size:r=24,...t})=>C.createElement(p,{...t,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 l}from"react-native-svg";var a=o=>n.createElement(e,{...o},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M16 17.5C16 17.7761 16.2239 18 16.5 18H21.5C21.7761 18 22 17.7761 22 17.5V12.5C22 12.2239 21.7761 12 21.5 12C21.2239 12 21 12.2239 21 12.5V16.2716L15.3545 10.6418C14.0533 9.34426 11.9472 9.34573 10.6478 10.6451C9.73776 11.5551 8.26224 11.5551 7.35216 10.6451L2.85355 6.14645C2.65829 5.95118 2.34171 5.95118 2.14645 6.14645C1.95118 6.34171 1.95118 6.65829 2.14645 6.85355L6.64505 11.3522C7.94565 12.6528 10.0543 12.6528 11.3549 11.3522C12.2641 10.443 13.7379 10.4419 14.6483 11.3499L20.3143 17H16.5C16.2239 17 16 17.2239 16 17.5Z",fill:"currentColor"})),g=a;export{a as IconTrending6,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTrending6/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 IconTrending6: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16 17.5C16 17.7761 16.2239 18 16.5 18H21.5C21.7761 18 22 17.7761 22 17.5V12.5C22 12.2239 21.7761 12 21.5 12C21.2239 12 21 12.2239 21 12.5V16.2716L15.3545 10.6418C14.0533 9.34426 11.9472 9.34573 10.6478 10.6451C9.73776 11.5551 8.26224 11.5551 7.35216 10.6451L2.85355 6.14645C2.65829 5.95118 2.34171 5.95118 2.14645 6.14645C1.95118 6.34171 1.95118 6.65829 2.14645 6.85355L6.64505 11.3522C7.94565 12.6528 10.0543 12.6528 11.3549 11.3522C12.2641 10.443 13.7379 10.4419 14.6483 11.3499L20.3143 17H16.5C16.2239 17 16 17.2239 16 17.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTrending6;\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,SAAS,UACT,SAAS,UACT,EAAE,mhBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconTrending6","props","React","CentralIconBase","IconTrending6_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
|
|
@@ -1850,6 +1852,7 @@ Below is a complete list of available icons:
|
|
|
1850
1852
|
- IconTrending3
|
|
1851
1853
|
- IconTrending4
|
|
1852
1854
|
- IconTrending5
|
|
1855
|
+
- IconTrending6
|
|
1853
1856
|
- IconTrendingCircle
|
|
1854
1857
|
- IconWhiteboard1
|
|
1855
1858
|
- IconWhiteboard2
|
package/filtered-icons.json
CHANGED
|
@@ -6034,6 +6034,34 @@
|
|
|
6034
6034
|
"packageName": "round-filled-radius-3-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.6753 21.5 9.40893 21.2551 8.25 20.8096C7.59894 20.5593 6.90316 20.4804 6.24707 20.6172C5.38669 20.7965 4.50325 20.913 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.29673 19.749 3.48387 19.2072 3.6416 18.6621C3.83132 18.0062 3.63785 17.2727 3.23047 16.5684C2.44682 15.2134 2 13.6561 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": "3",
|
|
6045
|
+
"stroke": "1"
|
|
6046
|
+
},
|
|
6047
|
+
"createdAt": "2026-04-14T11:02:24.032689+00:00",
|
|
6048
|
+
"packageName": "round-filled-radius-3-stroke-1",
|
|
6049
|
+
"componentName": "IconChatBubble7"
|
|
6050
|
+
},
|
|
6051
|
+
{
|
|
6052
|
+
"category": "Communication",
|
|
6053
|
+
"svg": "<path d=\"M15.5 10C19.048 10 22 12.6462 22 16C22 16.8319 21.8166 17.6247 21.4854 18.3447C21.111 19.1583 20.8969 19.8924 21.126 20.5361C21.18 20.6877 21.2376 20.84 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.3654 21.6495 19.9383 21.6026 19.5205 21.5342C18.8677 21.4273 18.179 21.5076 17.5059 21.709C16.8732 21.8982 16.1989 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.82691 17.2244 7.532 17.1426 7.24512 17.0439C6.58291 16.8163 5.8904 16.7358 5.23535 16.8584C4.6281 16.9721 4.00588 17.0478 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.4072C2.9916 16.0871 3.10662 15.768 3.20898 15.4482C3.41684 14.799 3.21549 14.0635 2.82031 13.3115C2.29567 12.3133 2 11.1887 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": "3",
|
|
6059
|
+
"stroke": "1"
|
|
6060
|
+
},
|
|
6061
|
+
"createdAt": "2026-04-14T11:02:24.032689+00:00",
|
|
6062
|
+
"packageName": "round-filled-radius-3-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\"/>",
|
|
@@ -7913,7 +7941,7 @@
|
|
|
7913
7941
|
{
|
|
7914
7942
|
"category": "Sound & Music",
|
|
7915
7943
|
"svg": "<path d=\"M20.5717 2.00501C20.8447 2.04413 21.0352 2.2974 20.9965 2.57044L20.1 8.83998C20.8228 8.86458 21.5161 9.30817 21.7475 10.0792C21.9467 10.7441 21.7219 11.4638 21.1801 11.8976L17.9399 14.4894C17.347 14.9637 17.0016 15.6823 17.0014 16.4415V20.5001C17.0014 20.7762 16.7774 21 16.5014 21.0001H7.5014C7.22526 21.0001 7.0014 20.7763 7.0014 20.5001V16.4415C7.00119 15.6824 6.65576 14.9637 6.06292 14.4894L2.82269 11.8976C2.28067 11.4638 2.05602 10.7442 2.2553 10.0792C2.60572 8.91186 4.0145 8.49019 4.98187 9.14662C5.84109 9.72997 7.00571 10.4486 8.26019 11.0197C9.52212 11.5941 10.8348 12.0001 12.0014 12.0001C13.168 12.0001 14.4807 11.5941 15.7426 11.0197C16.997 10.4486 18.1618 9.72993 19.0209 9.14662C19.0299 9.14052 19.0392 9.13495 19.0483 9.12904L20.0063 2.42982C20.0454 2.15673 20.2986 1.96622 20.5717 2.00501Z\" fill=\"currentColor\"/><path d=\"M12.0014 2.95033C13.9342 2.95046 15.5013 4.51751 15.5014 6.45033C15.5014 8.38324 13.9343 9.9502 12.0014 9.95033C10.0684 9.95033 8.5014 8.38332 8.5014 6.45033C8.50152 4.51744 10.0685 2.95033 12.0014 2.95033Z\" fill=\"currentColor\"/>",
|
|
7916
|
-
"iconName": "conductor,
|
|
7944
|
+
"iconName": "conductor, ochestrator, vibe",
|
|
7917
7945
|
"variant": {
|
|
7918
7946
|
"join": "round",
|
|
7919
7947
|
"filled": "on",
|
|
@@ -25063,7 +25091,7 @@
|
|
|
25063
25091
|
{
|
|
25064
25092
|
"category": "Statistics & Charts",
|
|
25065
25093
|
"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.72842L15.3545 13.3582C14.0533 14.6557 11.9472 14.6543 10.6478 13.3549C9.73776 12.4449 8.26224 12.4449 7.35216 13.3549L2.85355 17.8536C2.65829 18.0488 2.34171 18.0488 2.14645 17.8536C1.95118 17.6583 1.95118 17.3417 2.14645 17.1464L6.64505 12.6478C7.94565 11.3472 10.0543 11.3472 11.3549 12.6478C12.2641 13.557 13.7379 13.5581 14.6483 12.6501L20.3143 7H16.5C16.2239 7 16 6.77614 16 6.5Z\" fill=\"currentColor\"/>",
|
|
25066
|
-
"iconName": "trending-3, trends",
|
|
25094
|
+
"iconName": "trending-3, trends, upward",
|
|
25067
25095
|
"variant": {
|
|
25068
25096
|
"join": "round",
|
|
25069
25097
|
"filled": "on",
|
|
@@ -25102,6 +25130,20 @@
|
|
|
25102
25130
|
"packageName": "round-filled-radius-3-stroke-1",
|
|
25103
25131
|
"componentName": "IconTrending5"
|
|
25104
25132
|
},
|
|
25133
|
+
{
|
|
25134
|
+
"category": "Statistics & Charts",
|
|
25135
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16 17.5C16 17.7761 16.2239 18 16.5 18H21.5C21.7761 18 22 17.7761 22 17.5V12.5C22 12.2239 21.7761 12 21.5 12C21.2239 12 21 12.2239 21 12.5V16.2716L15.3545 10.6418C14.0533 9.34426 11.9472 9.34573 10.6478 10.6451C9.73776 11.5551 8.26224 11.5551 7.35216 10.6451L2.85355 6.14645C2.65829 5.95118 2.34171 5.95118 2.14645 6.14645C1.95118 6.34171 1.95118 6.65829 2.14645 6.85355L6.64505 11.3522C7.94565 12.6528 10.0543 12.6528 11.3549 11.3522C12.2641 10.443 13.7379 10.4419 14.6483 11.3499L20.3143 17H16.5C16.2239 17 16 17.2239 16 17.5Z\" fill=\"currentColor\"/>",
|
|
25136
|
+
"iconName": "trending-6, trends, downward",
|
|
25137
|
+
"variant": {
|
|
25138
|
+
"join": "round",
|
|
25139
|
+
"filled": "on",
|
|
25140
|
+
"radius": "3",
|
|
25141
|
+
"stroke": "1"
|
|
25142
|
+
},
|
|
25143
|
+
"createdAt": "2026-04-13T17:01:52.146519+00:00",
|
|
25144
|
+
"packageName": "round-filled-radius-3-stroke-1",
|
|
25145
|
+
"componentName": "IconTrending6"
|
|
25146
|
+
},
|
|
25105
25147
|
{
|
|
25106
25148
|
"category": "Statistics & Charts",
|
|
25107
25149
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM13 9.5C13 9.22386 13.2239 9 13.5 9H16.5C16.7761 9 17 9.22386 17 9.5V12.5C17 12.7761 16.7761 13 16.5 13C16.2239 13 16 12.7761 16 12.5V10.7071L13.3536 13.3536C12.606 14.1011 11.394 14.1011 10.6464 13.3536C10.2894 12.9965 9.71058 12.9965 9.35355 13.3536L7.60355 15.1036C7.40829 15.2988 7.09171 15.2988 6.89645 15.1036C6.70118 14.9083 6.70118 14.5917 6.89645 14.3964L8.64645 12.6464C9.39399 11.8989 10.606 11.8989 11.3536 12.6464C11.7106 13.0035 12.2894 13.0035 12.6464 12.6464L15.2929 10H13.5C13.2239 10 13 9.77614 13 9.5Z\" fill=\"currentColor\"/>",
|
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"
|
|
@@ -1792,6 +1794,7 @@ export type CentralIconName =
|
|
|
1792
1794
|
| "IconTrending3"
|
|
1793
1795
|
| "IconTrending4"
|
|
1794
1796
|
| "IconTrending5"
|
|
1797
|
+
| "IconTrending6"
|
|
1795
1798
|
| "IconTrendingCircle"
|
|
1796
1799
|
| "IconTrial"
|
|
1797
1800
|
| "IconTrophy"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-3-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.187",
|
|
4
4
|
"style": "round-filled-radius-3-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-3-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": 1933,
|
|
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",
|
|
@@ -1742,7 +1744,7 @@
|
|
|
1742
1744
|
]
|
|
1743
1745
|
},
|
|
1744
1746
|
"Statistics & Charts": {
|
|
1745
|
-
"count":
|
|
1747
|
+
"count": 42,
|
|
1746
1748
|
"icons": [
|
|
1747
1749
|
"IconAnalytics",
|
|
1748
1750
|
"IconChart1",
|
|
@@ -1782,6 +1784,7 @@
|
|
|
1782
1784
|
"IconTrending3",
|
|
1783
1785
|
"IconTrending4",
|
|
1784
1786
|
"IconTrending5",
|
|
1787
|
+
"IconTrending6",
|
|
1785
1788
|
"IconTrendingCircle",
|
|
1786
1789
|
"IconWhiteboard1",
|
|
1787
1790
|
"IconWhiteboard2"
|
|
@@ -2563,6 +2566,8 @@
|
|
|
2563
2566
|
"IconChartCompareHorizontal": "chart-compare-horizontal",
|
|
2564
2567
|
"IconChartWaterfall": "chart-waterfall",
|
|
2565
2568
|
"IconChartWaterfallAxis": "chart-waterfall-axis",
|
|
2569
|
+
"IconChatBubble7": "chat-bubble-7",
|
|
2570
|
+
"IconChatBubbles": "chat-bubbles",
|
|
2566
2571
|
"IconCheckCircle2": "check-circle-2, done, confirm, save, success",
|
|
2567
2572
|
"IconCheckCircle2Dashed": "check-circle-2-dashed, progress",
|
|
2568
2573
|
"IconCheckCircleDashed": "check-circle-dashed, done, confirm, save, success",
|
|
@@ -2697,7 +2702,7 @@
|
|
|
2697
2702
|
"IconCompassSquare": "compass-square, browser, safari, web, internet, navigation",
|
|
2698
2703
|
"IconComponents": "components, figma",
|
|
2699
2704
|
"IconConcise": "concise, text-shorten, squeeze",
|
|
2700
|
-
"IconConductor": "conductor,
|
|
2705
|
+
"IconConductor": "conductor, ochestrator, vibe",
|
|
2701
2706
|
"IconConnectors1": "connectors-1, connection, apps",
|
|
2702
2707
|
"IconConnectors2": "connectors-2, connection, apps",
|
|
2703
2708
|
"IconConsole": "console, terminal",
|
|
@@ -3922,9 +3927,10 @@
|
|
|
3922
3927
|
"IconTree": "tree",
|
|
3923
3928
|
"IconTrending1": "trending-1, trends",
|
|
3924
3929
|
"IconTrending2": "trending-2, trends",
|
|
3925
|
-
"IconTrending3": "trending-3, trends",
|
|
3930
|
+
"IconTrending3": "trending-3, trends, upward",
|
|
3926
3931
|
"IconTrending4": "trending-4, chart",
|
|
3927
3932
|
"IconTrending5": "trending-5, chart, analytics",
|
|
3933
|
+
"IconTrending6": "trending-6, trends, downward",
|
|
3928
3934
|
"IconTrendingCircle": "trending-circle",
|
|
3929
3935
|
"IconTrial": "trial, try, money-back, test-phase",
|
|
3930
3936
|
"IconTrophy": "trophy, win, champion",
|
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";
|
|
@@ -1791,6 +1793,7 @@ export { IconTrending2, default as IconTrending2Default, } from "./IconTrending2
|
|
|
1791
1793
|
export { IconTrending3, default as IconTrending3Default, } from "./IconTrending3";
|
|
1792
1794
|
export { IconTrending4, default as IconTrending4Default, } from "./IconTrending4";
|
|
1793
1795
|
export { IconTrending5, default as IconTrending5Default, } from "./IconTrending5";
|
|
1796
|
+
export { IconTrending6, default as IconTrending6Default, } from "./IconTrending6";
|
|
1794
1797
|
export { IconTrendingCircle, default as IconTrendingCircleDefault, } from "./IconTrendingCircle";
|
|
1795
1798
|
export { IconTrial, default as IconTrialDefault } from "./IconTrial";
|
|
1796
1799
|
export { IconTrophy, default as IconTrophyDefault } from "./IconTrophy";
|