@central-icons-react-native/round-outlined-radius-1-stroke-1 1.1.184 → 1.1.185
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/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 +2 -0
- package/filtered-icons.json +28 -0
- package/icons/index.d.ts +2 -0
- package/icons-index.json +7 -3
- package/index.d.ts +2 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +14 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var C=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var n in o)C(r,n,{get:o[n],enumerable:!0})},c=(r,o,n,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of k(o))!x.call(r,e)&&e!==n&&C(r,e,{get:()=>o[e],enumerable:!(s=f(o,e))||s.enumerable});return r};var a=(r,o,n)=>(n=r!=null?d(L(r)):{},c(o||!r||!r.__esModule?C(n,"default",{value:r,enumerable:!0}):n,r)),I=r=>c(C({},"__esModule",{value:!0}),r);var g={};B(g,{IconConductor:()=>m,default:()=>P});module.exports=I(g);var t=a(require("react"));var i=a(require("react")),u=require("react-native-svg"),l=({children:r,size:o=24,...n})=>i.default.createElement(u.Svg,{...n,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"),m=r=>t.default.createElement(l,{...r},t.default.createElement(p.Path,{d:"M16.5 20.5V15.9806C16.5 15.6768 16.6381 15.3895 16.8753 15.1998L20.8004 12.0597C21.2267 11.7187 21.4151 11.1604 21.2827 10.6308C21.0347 9.6388 19.8224 9.21985 18.9682 9.78192C17.1902 10.9519 14.3866 12.5 12 12.5C9.61341 12.5 6.80984 10.9519 5.03176 9.78192C4.17758 9.21985 2.9653 9.6388 2.7173 10.6308C2.58489 11.1604 2.77332 11.7187 3.19963 12.0597L7.1247 15.1998C7.36191 15.3895 7.5 15.6768 7.5 15.9806V20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Circle,{cx:"12",cy:"6.4502",r:"3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M19.5 9.5L20.5 2.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=m;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.5 20.5V15.9806C16.5 15.6768 16.6381 15.3895 16.8753 15.1998L20.8004 12.0597C21.2267 11.7187 21.4151 11.1604 21.2827 10.6308C21.0347 9.6388 19.8224 9.21985 18.9682 9.78192C17.1902 10.9519 14.3866 12.5 12 12.5C9.61341 12.5 6.80984 10.9519 5.03176 9.78192C4.17758 9.21985 2.9653 9.6388 2.7173 10.6308C2.58489 11.1604 2.77332 11.7187 3.19963 12.0597L7.1247 15.1998C7.36191 15.3895 7.5 15.6768 7.5 15.9806V20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"6.4502\"\n r=\"3\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 9.5L20.5 2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"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,4ZACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,KACH,GAAG,SACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 C from"react";import{Svg as s}from"react-native-svg";var e=({children:n,size:r=24,...p})=>C.createElement(s,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Circle as c,Path as t}from"react-native-svg";var a=n=>o.createElement(e,{...n},o.createElement(t,{d:"M16.5 20.5V15.9806C16.5 15.6768 16.6381 15.3895 16.8753 15.1998L20.8004 12.0597C21.2267 11.7187 21.4151 11.1604 21.2827 10.6308C21.0347 9.6388 19.8224 9.21985 18.9682 9.78192C17.1902 10.9519 14.3866 12.5 12 12.5C9.61341 12.5 6.80984 10.9519 5.03176 9.78192C4.17758 9.21985 2.9653 9.6388 2.7173 10.6308C2.58489 11.1604 2.77332 11.7187 3.19963 12.0597L7.1247 15.1998C7.36191 15.3895 7.5 15.6768 7.5 15.9806V20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(c,{cx:"12",cy:"6.4502",r:"3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M19.5 9.5L20.5 2.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=a;export{a as IconConductor,B 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.5 20.5V15.9806C16.5 15.6768 16.6381 15.3895 16.8753 15.1998L20.8004 12.0597C21.2267 11.7187 21.4151 11.1604 21.2827 10.6308C21.0347 9.6388 19.8224 9.21985 18.9682 9.78192C17.1902 10.9519 14.3866 12.5 12 12.5C9.61341 12.5 6.80984 10.9519 5.03176 9.78192C4.17758 9.21985 2.9653 9.6388 2.7173 10.6308C2.58489 11.1604 2.77332 11.7187 3.19963 12.0597L7.1247 15.1998C7.36191 15.3895 7.5 15.6768 7.5 15.9806V20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"6.4502\"\n r=\"3\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 9.5L20.5 2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"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,4ZACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,SACH,EAAE,IACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,qBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 l=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},u=(r,o,n,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!B.call(r,s)&&s!==n&&p(r,s,{get:()=>o[s],enumerable:!(i=m(o,s))||i.enumerable});return r};var d=(r,o,n)=>(n=r!=null?l(f(r)):{},u(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>u(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconVoiceShare:()=>c,default:()=>P});module.exports=x(g);var e=d(require("react"));var k=d(require("react")),C=require("react-native-svg"),a=({children:r,size:o=24,...n})=>k.default.createElement(C.Svg,{...n,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=>e.default.createElement(a,{...r},e.default.createElement(t.Path,{d:"M7.5 3.5V20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M3.5 9.5V14.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M12 7.5V16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M16.5 5.5V10.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M20.5 17.5V13.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M16.5 20.5C16.5 17.6268 17.8013 15.7682 20 13.9106",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=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.5 3.5V20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.5 9.5V14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 7.5V16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 5.5V10.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 17.5V13.5H16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 20.5C16.5 17.6268 17.8013 15.7682 20 13.9106\"\n stroke=\"currentColor\"\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,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qDACF,OAAO,eACP,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 p from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:o=24,...s})=>p.createElement(i,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var u=e=>r.createElement(t,{...e},r.createElement(n,{d:"M7.5 3.5V20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M3.5 9.5V14.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M12 7.5V16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M16.5 5.5V10.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M20.5 17.5V13.5H16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M16.5 20.5C16.5 17.6268 17.8013 15.7682 20 13.9106",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=u;export{u as IconVoiceShare,B 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.5 3.5V20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.5 9.5V14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 7.5V16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 5.5V10.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 17.5V13.5H16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 20.5C16.5 17.6268 17.8013 15.7682 20 13.9106\"\n stroke=\"currentColor\"\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,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qDACF,OAAO,eACP,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
|
package/filtered-icons.json
CHANGED
|
@@ -7910,6 +7910,20 @@
|
|
|
7910
7910
|
"packageName": "round-outlined-radius-1-stroke-1",
|
|
7911
7911
|
"componentName": "IconConcise"
|
|
7912
7912
|
},
|
|
7913
|
+
{
|
|
7914
|
+
"category": "Sound & Music",
|
|
7915
|
+
"svg": "<path d=\"M16.5 20.5V15.9806C16.5 15.6768 16.6381 15.3895 16.8753 15.1998L20.8004 12.0597C21.2267 11.7187 21.4151 11.1604 21.2827 10.6308C21.0347 9.6388 19.8224 9.21985 18.9682 9.78192C17.1902 10.9519 14.3866 12.5 12 12.5C9.61341 12.5 6.80984 10.9519 5.03176 9.78192C4.17758 9.21985 2.9653 9.6388 2.7173 10.6308C2.58489 11.1604 2.77332 11.7187 3.19963 12.0597L7.1247 15.1998C7.36191 15.3895 7.5 15.6768 7.5 15.9806V20.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"6.4502\" r=\"3\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 9.5L20.5 2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
7916
|
+
"iconName": "conductor, ochestra",
|
|
7917
|
+
"variant": {
|
|
7918
|
+
"join": "round",
|
|
7919
|
+
"filled": "off",
|
|
7920
|
+
"radius": "1",
|
|
7921
|
+
"stroke": "1"
|
|
7922
|
+
},
|
|
7923
|
+
"createdAt": "2026-04-13T09:02:06.841943+00:00",
|
|
7924
|
+
"packageName": "round-outlined-radius-1-stroke-1",
|
|
7925
|
+
"componentName": "IconConductor"
|
|
7926
|
+
},
|
|
7913
7927
|
{
|
|
7914
7928
|
"category": "Devices & Signals",
|
|
7915
7929
|
"svg": "<path d=\"M3.5 17.25C3.5 19.0449 4.95507 20.5 6.75 20.5C8.54493 20.5 10 19.0449 10 17.25C10 15.4551 8.54493 14 6.75 14C4.95507 14 3.5 15.4551 3.5 17.25Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 6.75C14 8.54493 15.4551 10 17.25 10C19.0449 10 20.5 8.54493 20.5 6.75C20.5 4.95507 19.0449 3.5 17.25 3.5C15.4551 3.5 14 4.95507 14 6.75Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 17.25C14 19.0449 15.4551 20.5 17.25 20.5C19.0449 20.5 20.5 19.0449 20.5 17.25C20.5 15.4551 19.0449 14 17.25 14C15.4551 14 14 15.4551 14 17.25Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 14.74L14.75 9.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.5 6.75C3.5 8.54493 4.95507 10 6.75 10C8.54493 10 10 8.54493 10 6.75C10 4.95507 8.54493 3.5 6.75 3.5C4.95507 3.5 3.5 4.95507 3.5 6.75Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -26152,6 +26166,20 @@
|
|
|
26152
26166
|
"packageName": "round-outlined-radius-1-stroke-1",
|
|
26153
26167
|
"componentName": "IconVoiceSettings"
|
|
26154
26168
|
},
|
|
26169
|
+
{
|
|
26170
|
+
"category": "Sound & Music",
|
|
26171
|
+
"svg": "<path d=\"M7.5 3.5V20.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.5 9.5V14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 7.5V16.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 5.5V10.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 17.5V13.5H16.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 20.5C16.5 17.6268 17.8013 15.7682 20 13.9106\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
26172
|
+
"iconName": "voice-share",
|
|
26173
|
+
"variant": {
|
|
26174
|
+
"join": "round",
|
|
26175
|
+
"filled": "off",
|
|
26176
|
+
"radius": "1",
|
|
26177
|
+
"stroke": "1"
|
|
26178
|
+
},
|
|
26179
|
+
"createdAt": "2026-04-13T09:02:06.841943+00:00",
|
|
26180
|
+
"packageName": "round-outlined-radius-1-stroke-1",
|
|
26181
|
+
"componentName": "IconVoiceShare"
|
|
26182
|
+
},
|
|
26155
26183
|
{
|
|
26156
26184
|
"category": "AI & Magic",
|
|
26157
26185
|
"svg": "<path d=\"M7.5 3.5V20.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M3.50098 9.5V14.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M12 7.5V13.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M16.501 5.5V10.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M20.501 9.5V13.5\" stroke=\"currentColor\" 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"
|
|
@@ -1867,6 +1868,7 @@ export type CentralIconName =
|
|
|
1867
1868
|
| "IconVoiceMode"
|
|
1868
1869
|
| "IconVoiceRecord"
|
|
1869
1870
|
| "IconVoiceSettings"
|
|
1871
|
+
| "IconVoiceShare"
|
|
1870
1872
|
| "IconVoiceSparkle"
|
|
1871
1873
|
| "IconVolleyball"
|
|
1872
1874
|
| "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",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.185",
|
|
4
4
|
"style": "round-outlined-radius-1-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-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": 1930,
|
|
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",
|
|
@@ -2695,6 +2697,7 @@
|
|
|
2695
2697
|
"IconCompassSquare": "compass-square, browser, safari, web, internet, navigation",
|
|
2696
2698
|
"IconComponents": "components, figma",
|
|
2697
2699
|
"IconConcise": "concise, text-shorten, squeeze",
|
|
2700
|
+
"IconConductor": "conductor, ochestra",
|
|
2698
2701
|
"IconConnectors1": "connectors-1, connection, apps",
|
|
2699
2702
|
"IconConnectors2": "connectors-2, connection, apps",
|
|
2700
2703
|
"IconConsole": "console, terminal",
|
|
@@ -3998,6 +4001,7 @@
|
|
|
3998
4001
|
"IconVoiceMode": "voice-mode, voice-settings",
|
|
3999
4002
|
"IconVoiceRecord": "voice-record",
|
|
4000
4003
|
"IconVoiceSettings": "voice-settings, edit-voice",
|
|
4004
|
+
"IconVoiceShare": "voice-share",
|
|
4001
4005
|
"IconVoiceSparkle": "voice-sparkle, ai, sound",
|
|
4002
4006
|
"IconVolleyball": "volleyball",
|
|
4003
4007
|
"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";
|
|
@@ -1866,6 +1867,7 @@ export { IconVoiceMid, default as IconVoiceMidDefault } from "./IconVoiceMid";
|
|
|
1866
1867
|
export { IconVoiceMode, default as IconVoiceModeDefault, } from "./IconVoiceMode";
|
|
1867
1868
|
export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoiceRecord";
|
|
1868
1869
|
export { IconVoiceSettings, default as IconVoiceSettingsDefault, } from "./IconVoiceSettings";
|
|
1870
|
+
export { IconVoiceShare, default as IconVoiceShareDefault, } from "./IconVoiceShare";
|
|
1869
1871
|
export { IconVoiceSparkle, default as IconVoiceSparkleDefault, } from "./IconVoiceSparkle";
|
|
1870
1872
|
export { IconVolleyball, default as IconVolleyballDefault, } from "./IconVolleyball";
|
|
1871
1873
|
export { IconVolumeDown, default as IconVolumeDownDefault, } from "./IconVolumeDown";
|