@central-icons-react-native/square-filled-radius-0-stroke-2 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 i=Object.create;var e=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)e(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!P.call(r,n)&&n!==t&&e(r,n,{get:()=>o[n],enumerable:!(l=B(o,n))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?i(x(r)):{},a(o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>a(e({},"__esModule",{value:!0}),r);var L={};g(L,{IconConductor:()=>u,default:()=>v});module.exports=d(L);var C=m(require("react"));var s=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>s.default.createElement(c.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 p=require("react-native-svg"),u=r=>C.default.createElement(f,{...r},C.default.createElement(p.Path,{d:"M21.7354 2.14746L20.415 8.74512C21.2651 8.89119 22 9.59486 22 10.5938C22 11.1542 21.7451 11.684 21.3076 12.0342L17 15.4805V21H7V15.4805L2.69238 12.0342C2.25486 11.684 2 11.1542 2 10.5938C2.00004 9.10087 3.64127 8.26827 4.85547 8.96973C5.72634 9.47296 6.93711 10.1136 8.23535 10.626C9.54824 11.1441 10.875 11.5 12 11.5C13.125 11.5 14.4518 11.1441 15.7646 10.626C16.9015 10.1773 17.9695 9.62715 18.8027 9.16016L20.2646 1.85254L21.7354 2.14746Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.433 13.933 10 12 10C10.067 10 8.5 8.433 8.5 6.5C8.5 4.567 10.067 3 12 3Z",fill:"currentColor"})),v=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 { Path } from \"react-native-svg\";\n\nexport const IconConductor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.7354 2.14746L20.415 8.74512C21.2651 8.89119 22 9.59486 22 10.5938C22 11.1542 21.7451 11.684 21.3076 12.0342L17 15.4805V21H7V15.4805L2.69238 12.0342C2.25486 11.684 2 11.1542 2 10.5938C2.00004 9.10087 3.64127 8.26827 4.85547 8.96973C5.72634 9.47296 6.93711 10.1136 8.23535 10.626C9.54824 11.1441 10.875 11.5 12 11.5C13.125 11.5 14.4518 11.1441 15.7646 10.626C16.9015 10.1773 17.9695 9.62715 18.8027 9.16016L20.2646 1.85254L21.7354 2.14746Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.433 13.933 10 12 10C10.067 10 8.5 8.433 8.5 6.5C8.5 4.567 10.067 3 12 3Z\"\n fill=\"currentColor\"\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,EAAqB,4BAERC,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4bACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qHACF,KAAK,eACP,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 t from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:r=24,...C})=>p.createElement(l,{...C,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=>t.createElement(n,{...o},t.createElement(e,{d:"M21.7354 2.14746L20.415 8.74512C21.2651 8.89119 22 9.59486 22 10.5938C22 11.1542 21.7451 11.684 21.3076 12.0342L17 15.4805V21H7V15.4805L2.69238 12.0342C2.25486 11.684 2 11.1542 2 10.5938C2.00004 9.10087 3.64127 8.26827 4.85547 8.96973C5.72634 9.47296 6.93711 10.1136 8.23535 10.626C9.54824 11.1441 10.875 11.5 12 11.5C13.125 11.5 14.4518 11.1441 15.7646 10.626C16.9015 10.1773 17.9695 9.62715 18.8027 9.16016L20.2646 1.85254L21.7354 2.14746Z",fill:"currentColor"}),t.createElement(e,{d:"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.433 13.933 10 12 10C10.067 10 8.5 8.433 8.5 6.5C8.5 4.567 10.067 3 12 3Z",fill:"currentColor"})),P=a;export{a as IconConductor,P 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 { Path } from \"react-native-svg\";\n\nexport const IconConductor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.7354 2.14746L20.415 8.74512C21.2651 8.89119 22 9.59486 22 10.5938C22 11.1542 21.7451 11.684 21.3076 12.0342L17 15.4805V21H7V15.4805L2.69238 12.0342C2.25486 11.684 2 11.1542 2 10.5938C2.00004 9.10087 3.64127 8.26827 4.85547 8.96973C5.72634 9.47296 6.93711 10.1136 8.23535 10.626C9.54824 11.1441 10.875 11.5 12 11.5C13.125 11.5 14.4518 11.1441 15.7646 10.626C16.9015 10.1773 17.9695 9.62715 18.8027 9.16016L20.2646 1.85254L21.7354 2.14746Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.433 13.933 10 12 10C10.067 10 8.5 8.433 8.5 6.5C8.5 4.567 10.067 3 12 3Z\"\n fill=\"currentColor\"\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,QAAAG,MAAY,mBAEd,IAAMC,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4bACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qHACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconConductor","props","React","CentralIconBase","IconConductor_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var V=Object.create;var p=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of u(o))!I.call(r,l)&&l!==n&&p(r,l,{get:()=>o[l],enumerable:!(C=c(o,l))||C.enumerable});return r};var m=(r,o,n)=>(n=r!=null?V(B(r)):{},f(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>f(p({},"__esModule",{value:!0}),r);var g={};d(g,{IconVoiceShare:()=>H,default:()=>P});module.exports=x(g);var e=m(require("react"));var a=m(require("react")),i=require("react-native-svg"),s=({children:r,size:o=24,...n})=>a.default.createElement(i.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"),H=r=>e.default.createElement(s,{...r},e.default.createElement(t.Path,{d:"M9 21H7V3H9V21Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M21 18H19V15.3457C18.1921 16.0959 17.7362 16.7766 17.4629 17.4424C17.0583 18.4278 17 19.4958 17 21H15C15 19.5042 15.0419 18.0722 15.6123 16.6826C15.9993 15.74 16.6072 14.8672 17.5137 14H15V12H21V18Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M13 17H11V7H13V17Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M5 15H3V9H5V15Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M17 10H15V5H17V10Z",fill:"currentColor"})),P=H;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 d=\"M9 21H7V3H9V21Z\" fill=\"currentColor\" />\n <Path\n d=\"M21 18H19V15.3457C18.1921 16.0959 17.7362 16.7766 17.4629 17.4424C17.0583 18.4278 17 19.4958 17 21H15C15 19.5042 15.0419 18.0722 15.6123 16.6826C15.9993 15.74 16.6072 14.8672 17.5137 14H15V12H21V18Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M13 17H11V7H13V17Z\" fill=\"currentColor\" />\n <Path d=\"M5 15H3V9H5V15Z\" fill=\"currentColor\" />\n <Path d=\"M17 10H15V5H17V10Z\" fill=\"currentColor\" />\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,QAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9C,EAAAA,QAAA,cAAC,QACC,EAAE,yMACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9C,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,CACnD,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 o from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:e,size:r=24,...l})=>p.createElement(C,{...l,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var f=e=>o.createElement(t,{...e},o.createElement(n,{d:"M9 21H7V3H9V21Z",fill:"currentColor"}),o.createElement(n,{d:"M21 18H19V15.3457C18.1921 16.0959 17.7362 16.7766 17.4629 17.4424C17.0583 18.4278 17 19.4958 17 21H15C15 19.5042 15.0419 18.0722 15.6123 16.6826C15.9993 15.74 16.6072 14.8672 17.5137 14H15V12H21V18Z",fill:"currentColor"}),o.createElement(n,{d:"M13 17H11V7H13V17Z",fill:"currentColor"}),o.createElement(n,{d:"M5 15H3V9H5V15Z",fill:"currentColor"}),o.createElement(n,{d:"M17 10H15V5H17V10Z",fill:"currentColor"})),I=f;export{f as IconVoiceShare,I 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 d=\"M9 21H7V3H9V21Z\" fill=\"currentColor\" />\n <Path\n d=\"M21 18H19V15.3457C18.1921 16.0959 17.7362 16.7766 17.4629 17.4424C17.0583 18.4278 17 19.4958 17 21H15C15 19.5042 15.0419 18.0722 15.6123 16.6826C15.9993 15.74 16.6072 14.8672 17.5137 14H15V12H21V18Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M13 17H11V7H13V17Z\" fill=\"currentColor\" />\n <Path d=\"M5 15H3V9H5V15Z\" fill=\"currentColor\" />\n <Path d=\"M17 10H15V5H17V10Z\" fill=\"currentColor\" />\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,CAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9CG,EAAA,cAACH,EAAA,CACC,EAAE,yMACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9CG,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,KAAK,eAAe,CACnD,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": "square-filled-radius-0-stroke-2",
|
|
7911
7911
|
"componentName": "IconConcise"
|
|
7912
7912
|
},
|
|
7913
|
+
{
|
|
7914
|
+
"category": "Sound & Music",
|
|
7915
|
+
"svg": "<path d=\"M21.7354 2.14746L20.415 8.74512C21.2651 8.89119 22 9.59486 22 10.5938C22 11.1542 21.7451 11.684 21.3076 12.0342L17 15.4805V21H7V15.4805L2.69238 12.0342C2.25486 11.684 2 11.1542 2 10.5938C2.00004 9.10087 3.64127 8.26827 4.85547 8.96973C5.72634 9.47296 6.93711 10.1136 8.23535 10.626C9.54824 11.1441 10.875 11.5 12 11.5C13.125 11.5 14.4518 11.1441 15.7646 10.626C16.9015 10.1773 17.9695 9.62715 18.8027 9.16016L20.2646 1.85254L21.7354 2.14746Z\" fill=\"currentColor\"/><path d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.433 13.933 10 12 10C10.067 10 8.5 8.433 8.5 6.5C8.5 4.567 10.067 3 12 3Z\" fill=\"currentColor\"/>",
|
|
7916
|
+
"iconName": "conductor, ochestra",
|
|
7917
|
+
"variant": {
|
|
7918
|
+
"join": "square",
|
|
7919
|
+
"filled": "on",
|
|
7920
|
+
"radius": "0",
|
|
7921
|
+
"stroke": "2"
|
|
7922
|
+
},
|
|
7923
|
+
"createdAt": "2026-04-13T09:02:06.841943+00:00",
|
|
7924
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
7925
|
+
"componentName": "IconConductor"
|
|
7926
|
+
},
|
|
7913
7927
|
{
|
|
7914
7928
|
"category": "Devices & Signals",
|
|
7915
7929
|
"svg": "<path d=\"M17 3C19.2091 3 21 4.79086 21 7C21 9.20914 19.2091 11 17 11C16.258 11 15.5634 10.7974 14.9678 10.4453L10.4453 14.9678C10.7974 15.5634 11 16.258 11 17C11 19.2091 9.20914 21 7 21C4.79086 21 3 19.2091 3 17C3 14.7909 4.79086 13 7 13C7.74157 13 8.43587 13.202 9.03125 13.5537L13.5537 9.03125C13.202 8.43587 13 7.74157 13 7C13 4.79086 14.7909 3 17 3Z\" fill=\"currentColor\"/><path d=\"M17 13C19.2091 13 21 14.7909 21 17C21 19.2091 19.2091 21 17 21C14.7909 21 13 19.2091 13 17C13 14.7909 14.7909 13 17 13Z\" fill=\"currentColor\"/><path d=\"M7 3C9.20914 3 11 4.79086 11 7C11 9.20914 9.20914 11 7 11C4.79086 11 3 9.20914 3 7C3 4.79086 4.79086 3 7 3Z\" fill=\"currentColor\"/>",
|
|
@@ -26152,6 +26166,20 @@
|
|
|
26152
26166
|
"packageName": "square-filled-radius-0-stroke-2",
|
|
26153
26167
|
"componentName": "IconVoiceSettings"
|
|
26154
26168
|
},
|
|
26169
|
+
{
|
|
26170
|
+
"category": "Sound & Music",
|
|
26171
|
+
"svg": "<path d=\"M9 21H7V3H9V21Z\" fill=\"currentColor\"/><path d=\"M21 18H19V15.3457C18.1921 16.0959 17.7362 16.7766 17.4629 17.4424C17.0583 18.4278 17 19.4958 17 21H15C15 19.5042 15.0419 18.0722 15.6123 16.6826C15.9993 15.74 16.6072 14.8672 17.5137 14H15V12H21V18Z\" fill=\"currentColor\"/><path d=\"M13 17H11V7H13V17Z\" fill=\"currentColor\"/><path d=\"M5 15H3V9H5V15Z\" fill=\"currentColor\"/><path d=\"M17 10H15V5H17V10Z\" fill=\"currentColor\"/>",
|
|
26172
|
+
"iconName": "voice-share",
|
|
26173
|
+
"variant": {
|
|
26174
|
+
"join": "square",
|
|
26175
|
+
"filled": "on",
|
|
26176
|
+
"radius": "0",
|
|
26177
|
+
"stroke": "2"
|
|
26178
|
+
},
|
|
26179
|
+
"createdAt": "2026-04-13T09:02:06.841943+00:00",
|
|
26180
|
+
"packageName": "square-filled-radius-0-stroke-2",
|
|
26181
|
+
"componentName": "IconVoiceShare"
|
|
26182
|
+
},
|
|
26155
26183
|
{
|
|
26156
26184
|
"category": "AI & Magic",
|
|
26157
26185
|
"svg": "<path d=\"M9 21H7V3H9V21Z\" fill=\"currentColor\"/><path d=\"M16.4004 13L17.4004 15.5996L20 16.5996V17.4004L17.4004 18.4004L16.4004 21H15.5996L14.5996 18.4004L12 17.4004V16.5996L14.5996 15.5996L15.5996 13H16.4004Z\" fill=\"currentColor\"/><path d=\"M5 15H3V9H5V15Z\" fill=\"currentColor\"/><path d=\"M13 14H11V7H13V14Z\" fill=\"currentColor\"/><path d=\"M21 14H19V9H21V14Z\" fill=\"currentColor\"/><path d=\"M17 11H15V5H17V11Z\" 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/square-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.185",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-2/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 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";
|