@central-icons-react-native/round-outlined-radius-1-stroke-1.5 1.1.184 → 1.1.186
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/IconConductor/index.d.ts +4 -0
- package/IconConductor/index.js +2 -0
- package/IconConductor/index.js.map +1 -0
- package/IconConductor/index.mjs +2 -0
- package/IconConductor/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/IconVoiceShare/index.d.ts +4 -0
- package/IconVoiceShare/index.js +2 -0
- package/IconVoiceShare/index.js.map +1 -0
- package/IconVoiceShare/index.mjs +2 -0
- package/IconVoiceShare/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +42 -0
- package/icons/index.d.ts +3 -0
- package/icons-index.json +10 -4
- 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 +21 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},c=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of k(o))!B.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(s=f(o,e))||s.enumerable});return r};var a=(r,o,t)=>(t=r!=null?d(x(r)):{},c(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>c(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconConductor:()=>u,default:()=>P});module.exports=h(g);var n=a(require("react"));var i=a(require("react")),l=require("react-native-svg"),m=({children:r,size:o=24,...t})=>i.default.createElement(l.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 C=require("react-native-svg"),u=r=>n.default.createElement(m,{...r},n.default.createElement(C.Path,{d:"M16.25 20.25V16.4806C16.25 16.1768 16.3881 15.8895 16.6253 15.6998L20.5759 12.5393C20.9936 12.2051 21.2036 11.675 21.1279 11.1454C20.9617 9.9818 19.5624 9.41069 18.5693 10.0394C16.7891 11.1665 14.215 12.5 12 12.5C9.78501 12.5 7.21086 11.1665 5.43068 10.0394C4.43759 9.41069 3.03831 9.9818 2.87209 11.1454C2.79643 11.675 3.00638 12.2051 3.42412 12.5393L7.3747 15.6998C7.61191 15.8895 7.75 16.1768 7.75 16.4806V20.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(C.Circle,{cx:"12",cy:"6.5",r:"2.75",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement(C.Path,{d:"M19.5 9.5L20.75 2.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),P=u;0&&(module.exports={IconConductor});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconConductor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconConductor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.25 20.25V16.4806C16.25 16.1768 16.3881 15.8895 16.6253 15.6998L20.5759 12.5393C20.9936 12.2051 21.2036 11.675 21.1279 11.1454C20.9617 9.9818 19.5624 9.41069 18.5693 10.0394C16.7891 11.1665 14.215 12.5 12 12.5C9.78501 12.5 7.21086 11.1665 5.43068 10.0394C4.43759 9.41069 3.03831 9.9818 2.87209 11.1454C2.79643 11.675 3.00638 12.2051 3.42412 12.5393L7.3747 15.6998C7.61191 15.8895 7.75 16.1768 7.75 16.4806V20.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"6.5\"\n r=\"2.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path\n d=\"M19.5 9.5L20.75 2.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.25\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconConductor;\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,EAA6B,4BAEhBC,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iaACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,KACH,GAAG,MACH,EAAE,OACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sBACF,OAAO,eACP,YAAY,OACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconConductor_exports","__export","IconConductor","IconConductor_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconConductor","props","React","CentralIconBase","IconConductor_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var e=({children:t,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as c,Path as n}from"react-native-svg";var a=t=>o.createElement(e,{...t},o.createElement(n,{d:"M16.25 20.25V16.4806C16.25 16.1768 16.3881 15.8895 16.6253 15.6998L20.5759 12.5393C20.9936 12.2051 21.2036 11.675 21.1279 11.1454C20.9617 9.9818 19.5624 9.41069 18.5693 10.0394C16.7891 11.1665 14.215 12.5 12 12.5C9.78501 12.5 7.21086 11.1665 5.43068 10.0394C4.43759 9.41069 3.03831 9.9818 2.87209 11.1454C2.79643 11.675 3.00638 12.2051 3.42412 12.5393L7.3747 15.6998C7.61191 15.8895 7.75 16.1768 7.75 16.4806V20.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(c,{cx:"12",cy:"6.5",r:"2.75",stroke:"currentColor",strokeWidth:"1.5"}),o.createElement(n,{d:"M19.5 9.5L20.75 2.5",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round"})),I=a;export{a as IconConductor,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconConductor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconConductor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.25 20.25V16.4806C16.25 16.1768 16.3881 15.8895 16.6253 15.6998L20.5759 12.5393C20.9936 12.2051 21.2036 11.675 21.1279 11.1454C20.9617 9.9818 19.5624 9.41069 18.5693 10.0394C16.7891 11.1665 14.215 12.5 12 12.5C9.78501 12.5 7.21086 11.1665 5.43068 10.0394C4.43759 9.41069 3.03831 9.9818 2.87209 11.1454C2.79643 11.675 3.00638 12.2051 3.42412 12.5393L7.3747 15.6998C7.61191 15.8895 7.75 16.1768 7.75 16.4806V20.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"6.5\"\n r=\"2.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path\n d=\"M19.5 9.5L20.75 2.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.25\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconConductor;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iaACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,MACH,EAAE,OACF,OAAO,eACP,YAAY,MACd,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,sBACF,OAAO,eACP,YAAY,OACZ,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconConductor","props","React","CentralIconBase","IconConductor_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!g.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?u(d(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>s(n({},"__esModule",{value:!0}),r);var v={};x(v,{IconTrending6:()=>f,default:()=>h});module.exports=P(v);var p=C(require("react"));var m=C(require("react")),c=require("react-native-svg"),i=({children:r,size:o=24,...e})=>m.default.createElement(c.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"),f=r=>p.default.createElement(i,{...r},p.default.createElement(l.Path,{d:"M15.75 17.25H21.25V11.75M20.7361 16.725L13.7071 9.70609C13.3165 9.31605 12.6837 9.31627 12.2934 9.7066L9.70711 12.2929C9.31658 12.6834 8.68342 12.6834 8.29289 12.2929L2.75 6.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),h=f;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 d=\"M15.75 17.25H21.25V11.75M20.7361 16.725L13.7071 9.70609C13.3165 9.31605 12.6837 9.31627 12.2934 9.7066L9.70711 12.2929C9.31658 12.6834 8.68342 12.6834 8.29289 12.2929L2.75 6.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,EAAE,mLACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,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 t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...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 s}from"react-native-svg";var C=o=>t.createElement(e,{...o},t.createElement(s,{d:"M15.75 17.25H21.25V11.75M20.7361 16.725L13.7071 9.70609C13.3165 9.31605 12.6837 9.31627 12.2934 9.7066L9.70711 12.2929C9.31658 12.6834 8.68342 12.6834 8.29289 12.2929L2.75 6.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),g=C;export{C 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 d=\"M15.75 17.25H21.25V11.75M20.7361 16.725L13.7071 9.70609C13.3165 9.31605 12.6837 9.31627 12.2934 9.7066L9.70711 12.2929C9.31658 12.6834 8.68342 12.6834 8.29289 12.2929L2.75 6.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,EAAE,mLACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconTrending6","props","React","CentralIconBase","IconTrending6_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var i=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},d=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=m(o,s))||p.enumerable});return r};var k=(r,o,e)=>(e=r!=null?l(h(r)):{},d(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>d(i({},"__esModule",{value:!0}),r);var P={};B(P,{IconVoiceShare:()=>c,default:()=>x});module.exports=I(P);var n=k(require("react"));var u=k(require("react")),C=require("react-native-svg"),a=({children:r,size:o=24,...e})=>u.default.createElement(C.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),c=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M7.75 3.75V20.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M3.75 9.75V14.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M12 7.75V16.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M16.25 5.75V9.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M20.25 16.75V12.75H16.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M16.25 20.25C16.25 17.25 17 15.5 20 13",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),x=c;0&&(module.exports={IconVoiceShare});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceShare/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 IconVoiceShare: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.75 3.75V20.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.75 9.75V14.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 7.75V16.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.25 5.75V9.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.25 16.75V12.75H16.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.25 20.25C16.25 17.25 17 15.5 20 13\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceShare;\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,oBAAAE,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,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yCACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconVoiceShare_exports","__export","IconVoiceShare","IconVoiceShare_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceShare","props","React","CentralIconBase","IconVoiceShare_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:o=24,...s})=>i.createElement(p,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var d=n=>r.createElement(t,{...n},r.createElement(e,{d:"M7.75 3.75V20.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M3.75 9.75V14.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M12 7.75V16.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M16.25 5.75V9.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M20.25 16.75V12.75H16.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M16.25 20.25C16.25 17.25 17 15.5 20 13",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),f=d;export{d as IconVoiceShare,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceShare/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 IconVoiceShare: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.75 3.75V20.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.75 9.75V14.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 7.75V16.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.25 5.75V9.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.25 16.75V12.75H16.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.25 20.25C16.25 17.25 17 15.5 20 13\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceShare;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2BACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yCACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceShare","props","React","CentralIconBase","IconVoiceShare_default"]}
|
package/README.md
CHANGED
|
@@ -1741,6 +1741,7 @@ Below is a complete list of available icons:
|
|
|
1741
1741
|
- IconBack
|
|
1742
1742
|
- IconBack10s
|
|
1743
1743
|
- IconCd
|
|
1744
|
+
- IconConductor
|
|
1744
1745
|
- IconFastForward
|
|
1745
1746
|
- IconFastForward10s
|
|
1746
1747
|
- IconFastForward15s
|
|
@@ -1784,6 +1785,7 @@ Below is a complete list of available icons:
|
|
|
1784
1785
|
- IconVoiceMode
|
|
1785
1786
|
- IconVoiceRecord
|
|
1786
1787
|
- IconVoiceSettings
|
|
1788
|
+
- IconVoiceShare
|
|
1787
1789
|
- IconVolumeDown
|
|
1788
1790
|
- IconVolumeFull
|
|
1789
1791
|
- IconVolumeHalf
|
|
@@ -1848,6 +1850,7 @@ Below is a complete list of available icons:
|
|
|
1848
1850
|
- IconTrending3
|
|
1849
1851
|
- IconTrending4
|
|
1850
1852
|
- IconTrending5
|
|
1853
|
+
- IconTrending6
|
|
1851
1854
|
- IconTrendingCircle
|
|
1852
1855
|
- IconWhiteboard1
|
|
1853
1856
|
- IconWhiteboard2
|
package/filtered-icons.json
CHANGED
|
@@ -7910,6 +7910,20 @@
|
|
|
7910
7910
|
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
7911
7911
|
"componentName": "IconConcise"
|
|
7912
7912
|
},
|
|
7913
|
+
{
|
|
7914
|
+
"category": "Sound & Music",
|
|
7915
|
+
"svg": "<path d=\"M16.25 20.25V16.4806C16.25 16.1768 16.3881 15.8895 16.6253 15.6998L20.5759 12.5393C20.9936 12.2051 21.2036 11.675 21.1279 11.1454C20.9617 9.9818 19.5624 9.41069 18.5693 10.0394C16.7891 11.1665 14.215 12.5 12 12.5C9.78501 12.5 7.21086 11.1665 5.43068 10.0394C4.43759 9.41069 3.03831 9.9818 2.87209 11.1454C2.79643 11.675 3.00638 12.2051 3.42412 12.5393L7.3747 15.6998C7.61191 15.8895 7.75 16.1768 7.75 16.4806V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"6.5\" r=\"2.75\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M19.5 9.5L20.75 2.5\" stroke=\"currentColor\" stroke-width=\"1.25\" stroke-linecap=\"round\"/>",
|
|
7916
|
+
"iconName": "conductor, ochestrator, vibe",
|
|
7917
|
+
"variant": {
|
|
7918
|
+
"join": "round",
|
|
7919
|
+
"filled": "off",
|
|
7920
|
+
"radius": "1",
|
|
7921
|
+
"stroke": "1.5"
|
|
7922
|
+
},
|
|
7923
|
+
"createdAt": "2026-04-13T09:02:06.841943+00:00",
|
|
7924
|
+
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
7925
|
+
"componentName": "IconConductor"
|
|
7926
|
+
},
|
|
7913
7927
|
{
|
|
7914
7928
|
"category": "Devices & Signals",
|
|
7915
7929
|
"svg": "<path d=\"M3.75 7C3.75 8.79493 5.20507 10.25 7 10.25C8.79493 10.25 10.25 8.79493 10.25 7C10.25 5.20507 8.79493 3.75 7 3.75C5.20507 3.75 3.75 5.20507 3.75 7Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 17C3.75 18.7949 5.20507 20.25 7 20.25C8.79493 20.25 10.25 18.7949 10.25 17C10.25 15.2051 8.79493 13.75 7 13.75C5.20507 13.75 3.75 15.2051 3.75 17Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 7C13.75 8.79493 15.2051 10.25 17 10.25C18.7949 10.25 20.25 8.79493 20.25 7C20.25 5.20507 18.7949 3.75 17 3.75C15.2051 3.75 13.75 5.20507 13.75 7Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 17C13.75 18.7949 15.2051 20.25 17 20.25C18.7949 20.25 20.25 18.7949 20.25 17C20.25 15.2051 18.7949 13.75 17 13.75C15.2051 13.75 13.75 15.2051 13.75 17Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 14.5L14.5 9.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -25088,6 +25102,20 @@
|
|
|
25088
25102
|
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
25089
25103
|
"componentName": "IconTrending5"
|
|
25090
25104
|
},
|
|
25105
|
+
{
|
|
25106
|
+
"category": "Statistics & Charts",
|
|
25107
|
+
"svg": "<path d=\"M15.75 17.25H21.25V11.75M20.7361 16.725L13.7071 9.70609C13.3165 9.31605 12.6837 9.31627 12.2934 9.7066L9.70711 12.2929C9.31658 12.6834 8.68342 12.6834 8.29289 12.2929L2.75 6.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
25108
|
+
"iconName": "trending-6, trends, downward",
|
|
25109
|
+
"variant": {
|
|
25110
|
+
"join": "round",
|
|
25111
|
+
"filled": "off",
|
|
25112
|
+
"radius": "1",
|
|
25113
|
+
"stroke": "1.5"
|
|
25114
|
+
},
|
|
25115
|
+
"createdAt": "2026-04-13T17:01:52.146519+00:00",
|
|
25116
|
+
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
25117
|
+
"componentName": "IconTrending6"
|
|
25118
|
+
},
|
|
25091
25119
|
{
|
|
25092
25120
|
"category": "Statistics & Charts",
|
|
25093
25121
|
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 14.5L9.29289 12.7071C9.68342 12.3166 10.3166 12.3166 10.7071 12.7071L11.2929 13.2929C11.6834 13.6834 12.3166 13.6834 12.7071 13.2929L15.5 10.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 9.75H16.25V13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -26152,6 +26180,20 @@
|
|
|
26152
26180
|
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
26153
26181
|
"componentName": "IconVoiceSettings"
|
|
26154
26182
|
},
|
|
26183
|
+
{
|
|
26184
|
+
"category": "Sound & Music",
|
|
26185
|
+
"svg": "<path d=\"M7.75 3.75V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 9.75V14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 7.75V16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.25 5.75V9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.25 16.75V12.75H16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.25 20.25C16.25 17.25 17 15.5 20 13\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
26186
|
+
"iconName": "voice-share",
|
|
26187
|
+
"variant": {
|
|
26188
|
+
"join": "round",
|
|
26189
|
+
"filled": "off",
|
|
26190
|
+
"radius": "1",
|
|
26191
|
+
"stroke": "1.5"
|
|
26192
|
+
},
|
|
26193
|
+
"createdAt": "2026-04-13T09:02:06.841943+00:00",
|
|
26194
|
+
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
26195
|
+
"componentName": "IconVoiceShare"
|
|
26196
|
+
},
|
|
26155
26197
|
{
|
|
26156
26198
|
"category": "AI & Magic",
|
|
26157
26199
|
"svg": "<path d=\"M7.75 3.75V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M3.75 9.75V14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M12 7.75V13.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M16.25 5.75V10.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M20.25 9.75V13.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M17.2405 15.1852L16.5436 13.3733C16.4571 13.1484 16.241 13 16 13C15.759 13 15.5429 13.1484 15.4564 13.3733L14.7595 15.1852C14.658 15.4493 14.4493 15.658 14.1852 15.7595L12.3733 16.4564C12.1484 16.5429 12 16.759 12 17C12 17.241 12.1484 17.4571 12.3733 17.5436L14.1852 18.2405C14.4493 18.342 14.658 18.5507 14.7595 18.8148L15.4564 20.6267C15.5429 20.8516 15.759 21 16 21C16.241 21 16.4571 20.8516 16.5436 20.6267L17.2405 18.8148C17.342 18.5507 17.5507 18.342 17.8148 18.2405L19.6267 17.5436C19.8516 17.4571 20 17.241 20 17C20 16.759 19.8516 16.5429 19.6267 16.4564L17.8148 15.7595C17.5507 15.658 17.342 15.4493 17.2405 15.1852Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -564,6 +564,7 @@ export type CentralIconName =
|
|
|
564
564
|
| "IconCompassSquare"
|
|
565
565
|
| "IconComponents"
|
|
566
566
|
| "IconConcise"
|
|
567
|
+
| "IconConductor"
|
|
567
568
|
| "IconConnectors1"
|
|
568
569
|
| "IconConnectors2"
|
|
569
570
|
| "IconConsole"
|
|
@@ -1791,6 +1792,7 @@ export type CentralIconName =
|
|
|
1791
1792
|
| "IconTrending3"
|
|
1792
1793
|
| "IconTrending4"
|
|
1793
1794
|
| "IconTrending5"
|
|
1795
|
+
| "IconTrending6"
|
|
1794
1796
|
| "IconTrendingCircle"
|
|
1795
1797
|
| "IconTrial"
|
|
1796
1798
|
| "IconTrophy"
|
|
@@ -1867,6 +1869,7 @@ export type CentralIconName =
|
|
|
1867
1869
|
| "IconVoiceMode"
|
|
1868
1870
|
| "IconVoiceRecord"
|
|
1869
1871
|
| "IconVoiceSettings"
|
|
1872
|
+
| "IconVoiceShare"
|
|
1870
1873
|
| "IconVoiceSparkle"
|
|
1871
1874
|
| "IconVolleyball"
|
|
1872
1875
|
| "IconVolumeDown"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-1-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.186",
|
|
4
4
|
"style": "round-outlined-radius-1-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-1-stroke-1.5/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": 1931,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 76,
|
|
@@ -1659,7 +1659,7 @@
|
|
|
1659
1659
|
]
|
|
1660
1660
|
},
|
|
1661
1661
|
"Sound & Music": {
|
|
1662
|
-
"count":
|
|
1662
|
+
"count": 59,
|
|
1663
1663
|
"icons": [
|
|
1664
1664
|
"IconAirpodLeft",
|
|
1665
1665
|
"IconAirpodRight",
|
|
@@ -1669,6 +1669,7 @@
|
|
|
1669
1669
|
"IconBack",
|
|
1670
1670
|
"IconBack10s",
|
|
1671
1671
|
"IconCd",
|
|
1672
|
+
"IconConductor",
|
|
1672
1673
|
"IconFastForward",
|
|
1673
1674
|
"IconFastForward10s",
|
|
1674
1675
|
"IconFastForward15s",
|
|
@@ -1712,6 +1713,7 @@
|
|
|
1712
1713
|
"IconVoiceMode",
|
|
1713
1714
|
"IconVoiceRecord",
|
|
1714
1715
|
"IconVoiceSettings",
|
|
1716
|
+
"IconVoiceShare",
|
|
1715
1717
|
"IconVolumeDown",
|
|
1716
1718
|
"IconVolumeFull",
|
|
1717
1719
|
"IconVolumeHalf",
|
|
@@ -1740,7 +1742,7 @@
|
|
|
1740
1742
|
]
|
|
1741
1743
|
},
|
|
1742
1744
|
"Statistics & Charts": {
|
|
1743
|
-
"count":
|
|
1745
|
+
"count": 42,
|
|
1744
1746
|
"icons": [
|
|
1745
1747
|
"IconAnalytics",
|
|
1746
1748
|
"IconChart1",
|
|
@@ -1780,6 +1782,7 @@
|
|
|
1780
1782
|
"IconTrending3",
|
|
1781
1783
|
"IconTrending4",
|
|
1782
1784
|
"IconTrending5",
|
|
1785
|
+
"IconTrending6",
|
|
1783
1786
|
"IconTrendingCircle",
|
|
1784
1787
|
"IconWhiteboard1",
|
|
1785
1788
|
"IconWhiteboard2"
|
|
@@ -2695,6 +2698,7 @@
|
|
|
2695
2698
|
"IconCompassSquare": "compass-square, browser, safari, web, internet, navigation",
|
|
2696
2699
|
"IconComponents": "components, figma",
|
|
2697
2700
|
"IconConcise": "concise, text-shorten, squeeze",
|
|
2701
|
+
"IconConductor": "conductor, ochestrator, vibe",
|
|
2698
2702
|
"IconConnectors1": "connectors-1, connection, apps",
|
|
2699
2703
|
"IconConnectors2": "connectors-2, connection, apps",
|
|
2700
2704
|
"IconConsole": "console, terminal",
|
|
@@ -3922,6 +3926,7 @@
|
|
|
3922
3926
|
"IconTrending3": "trending-3, trends",
|
|
3923
3927
|
"IconTrending4": "trending-4, chart",
|
|
3924
3928
|
"IconTrending5": "trending-5, chart, analytics",
|
|
3929
|
+
"IconTrending6": "trending-6, trends, downward",
|
|
3925
3930
|
"IconTrendingCircle": "trending-circle",
|
|
3926
3931
|
"IconTrial": "trial, try, money-back, test-phase",
|
|
3927
3932
|
"IconTrophy": "trophy, win, champion",
|
|
@@ -3998,6 +4003,7 @@
|
|
|
3998
4003
|
"IconVoiceMode": "voice-mode, voice-settings",
|
|
3999
4004
|
"IconVoiceRecord": "voice-record",
|
|
4000
4005
|
"IconVoiceSettings": "voice-settings, edit-voice",
|
|
4006
|
+
"IconVoiceShare": "voice-share",
|
|
4001
4007
|
"IconVoiceSparkle": "voice-sparkle, ai, sound",
|
|
4002
4008
|
"IconVolleyball": "volleyball",
|
|
4003
4009
|
"IconVolumeDown": "volume-down",
|
package/index.d.ts
CHANGED
|
@@ -563,6 +563,7 @@ export { IconCompassRound, default as IconCompassRoundDefault, } from "./IconCom
|
|
|
563
563
|
export { IconCompassSquare, default as IconCompassSquareDefault, } from "./IconCompassSquare";
|
|
564
564
|
export { IconComponents, default as IconComponentsDefault, } from "./IconComponents";
|
|
565
565
|
export { IconConcise, default as IconConciseDefault } from "./IconConcise";
|
|
566
|
+
export { IconConductor, default as IconConductorDefault, } from "./IconConductor";
|
|
566
567
|
export { IconConnectors1, default as IconConnectors1Default, } from "./IconConnectors1";
|
|
567
568
|
export { IconConnectors2, default as IconConnectors2Default, } from "./IconConnectors2";
|
|
568
569
|
export { IconConsole, default as IconConsoleDefault } from "./IconConsole";
|
|
@@ -1790,6 +1791,7 @@ export { IconTrending2, default as IconTrending2Default, } from "./IconTrending2
|
|
|
1790
1791
|
export { IconTrending3, default as IconTrending3Default, } from "./IconTrending3";
|
|
1791
1792
|
export { IconTrending4, default as IconTrending4Default, } from "./IconTrending4";
|
|
1792
1793
|
export { IconTrending5, default as IconTrending5Default, } from "./IconTrending5";
|
|
1794
|
+
export { IconTrending6, default as IconTrending6Default, } from "./IconTrending6";
|
|
1793
1795
|
export { IconTrendingCircle, default as IconTrendingCircleDefault, } from "./IconTrendingCircle";
|
|
1794
1796
|
export { IconTrial, default as IconTrialDefault } from "./IconTrial";
|
|
1795
1797
|
export { IconTrophy, default as IconTrophyDefault } from "./IconTrophy";
|
|
@@ -1866,6 +1868,7 @@ export { IconVoiceMid, default as IconVoiceMidDefault } from "./IconVoiceMid";
|
|
|
1866
1868
|
export { IconVoiceMode, default as IconVoiceModeDefault, } from "./IconVoiceMode";
|
|
1867
1869
|
export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoiceRecord";
|
|
1868
1870
|
export { IconVoiceSettings, default as IconVoiceSettingsDefault, } from "./IconVoiceSettings";
|
|
1871
|
+
export { IconVoiceShare, default as IconVoiceShareDefault, } from "./IconVoiceShare";
|
|
1869
1872
|
export { IconVoiceSparkle, default as IconVoiceSparkleDefault, } from "./IconVoiceSparkle";
|
|
1870
1873
|
export { IconVolleyball, default as IconVolleyballDefault, } from "./IconVolleyball";
|
|
1871
1874
|
export { IconVolumeDown, default as IconVolumeDownDefault, } from "./IconVolumeDown";
|