@central-icons-react/square-filled-radius-0-stroke-2 1.1.71 → 1.1.73
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/IconRemix/index.d.ts +4 -0
- package/IconRemix/index.js +2 -0
- package/IconRemix/index.js.map +1 -0
- package/IconRemix/index.mjs +2 -0
- package/IconRemix/index.mjs.map +1 -0
- package/IconVoiceMode/index.d.ts +4 -0
- package/IconVoiceMode/index.js +2 -0
- package/IconVoiceMode/index.js.map +1 -0
- package/IconVoiceMode/index.mjs +2 -0
- package/IconVoiceMode/index.mjs.map +1 -0
- package/IconVoiceSettings/index.d.ts +4 -0
- package/IconVoiceSettings/index.js +2 -0
- package/IconVoiceSettings/index.js.map +1 -0
- package/IconVoiceSettings/index.mjs +2 -0
- package/IconVoiceSettings/index.mjs.map +1 -0
- package/README.md +3 -0
- package/icons/index.d.ts +3 -0
- package/icons/index.js +1 -1
- package/icons/index.js.map +1 -1
- package/icons/index.mjs +1 -1
- package/icons/index.mjs.map +1 -1
- package/icons-index.json +10 -4
- package/index.d.ts +9 -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
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var p=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var H=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var g=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,l)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of u(e))!x.call(r,o)&&o!==t&&p(r,o,{get:()=>e[o],enumerable:!(l=C(e,o))||l.enumerable});return r};var i=(r,e,t)=>(t=r!=null?f(H(r)):{},s(e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>s(p({},"__esModule",{value:!0}),r);var I={};g(I,{IconRemix:()=>V,default:()=>B});module.exports=h(I);var n=i(require("react"));var a=i(require("react")),m=({children:r,size:e=24,ariaLabel:t,color:l,ariaHidden:o=!0,style:L,...c})=>a.default.createElement("svg",{...c,"aria-hidden":o,role:o?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...L}},t&&!o&&a.default.createElement("title",null,t),r);var V=r=>n.default.createElement(m,{...r,ariaLabel:"remix, new-try, repeat"},n.default.createElement("path",{d:"M21 20H6.41406L7.70703 21.293L6.29297 22.707L2.58594 19L6.29297 15.293L7.70703 16.707L6.41406 18H19V11H21V20Z",fill:"currentColor"}),n.default.createElement("path",{d:"M13 11H16V13H13V16H11V13H8V11H11V8H13V11Z",fill:"currentColor"}),n.default.createElement("path",{d:"M21.4141 5L17.707 8.70703L16.293 7.29297L17.5859 6H5V13H3V4H17.5859L16.293 2.70703L17.707 1.29297L21.4141 5Z",fill:"currentColor"})),B=V;0&&(module.exports={IconRemix});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRemix/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRemix: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"remix, new-try, repeat\">\n <path\n d=\"M21 20H6.41406L7.70703 21.293L6.29297 22.707L2.58594 19L6.29297 15.293L7.70703 16.707L6.41406 18H19V11H21V20Z\"\n fill=\"currentColor\"\n />\n <path d=\"M13 11H16V13H13V16H11V13H8V11H11V8H13V11Z\" fill=\"currentColor\" />\n <path\n d=\"M21.4141 5L17.707 8.70703L16.293 7.29297L17.5859 6H5V13H3V4H17.5859L16.293 2.70703L17.707 1.29297L21.4141 5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemix;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,eAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,0BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,gHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,4CAA4C,KAAK,eAAe,EACxE,EAAAA,QAAA,cAAC,QACC,EAAE,+GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconRemix_exports","__export","IconRemix","IconRemix_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconRemix","props","React","CentralIconBase","IconRemix_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import l from"react";var p=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:s,...i})=>l.createElement("svg",{...i,"aria-hidden":o,role:o?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...s}},n&&!o&&l.createElement("title",null,n),t);var m=t=>e.createElement(p,{...t,ariaLabel:"remix, new-try, repeat"},e.createElement("path",{d:"M21 20H6.41406L7.70703 21.293L6.29297 22.707L2.58594 19L6.29297 15.293L7.70703 16.707L6.41406 18H19V11H21V20Z",fill:"currentColor"}),e.createElement("path",{d:"M13 11H16V13H13V16H11V13H8V11H11V8H13V11Z",fill:"currentColor"}),e.createElement("path",{d:"M21.4141 5L17.707 8.70703L16.293 7.29297L17.5859 6H5V13H3V4H17.5859L16.293 2.70703L17.707 1.29297L21.4141 5Z",fill:"currentColor"})),C=m;export{m as IconRemix,C as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRemix/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRemix: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"remix, new-try, repeat\">\n <path\n d=\"M21 20H6.41406L7.70703 21.293L6.29297 22.707L2.58594 19L6.29297 15.293L7.70703 16.707L6.41406 18H19V11H21V20Z\"\n fill=\"currentColor\"\n />\n <path d=\"M13 11H16V13H13V16H11V13H8V11H11V8H13V11Z\" fill=\"currentColor\" />\n <path\n d=\"M21.4141 5L17.707 8.70703L16.293 7.29297L17.5859 6H5V13H3V4H17.5859L16.293 2.70703L17.707 1.29297L21.4141 5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemix;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,0BACpCC,EAAA,cAAC,QACC,EAAE,gHACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,4CAA4C,KAAK,eAAe,EACxEA,EAAA,cAAC,QACC,EAAE,+GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRemix","props","React","CentralIconBase","IconRemix_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var p=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var V=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var H=(r,e)=>{for(var o in e)p(r,o,{get:e[o],enumerable:!0})},C=(r,e,o,l)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of V(e))!g.call(r,t)&&t!==o&&p(r,t,{get:()=>e[t],enumerable:!(l=u(e,t))||l.enumerable});return r};var a=(r,e,o)=>(o=r!=null?m(h(r)):{},C(e||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o,r)),v=r=>C(p({},"__esModule",{value:!0}),r);var B={};H(B,{IconVoiceMode:()=>c,default:()=>x});module.exports=v(B);var n=a(require("react"));var i=a(require("react")),s=({children:r,size:e=24,ariaLabel:o,color:l,ariaHidden:t=!0,style:d,...f})=>i.default.createElement("svg",{...f,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...d}},o&&!t&&i.default.createElement("title",null,o),r);var c=r=>n.default.createElement(s,{...r,ariaLabel:"voice-mode, voice-settings"},n.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 11C12.7614 11 15 13.2386 15 16C15 18.7614 12.7614 21 10 21H6.5C3.73858 21 1.5 18.7614 1.5 16C1.5 13.2386 3.73858 11 6.5 11H10ZM10 14C8.89543 14 8 14.8954 8 16C8 17.1046 8.89543 18 10 18C11.1046 18 12 17.1046 12 16C12 14.8954 11.1046 14 10 14Z",fill:"currentColor"}),n.default.createElement("path",{d:"M18.5 3V17H16.5V3H18.5Z",fill:"currentColor"}),n.default.createElement("path",{d:"M22 8V12H20V8H22Z",fill:"currentColor"}),n.default.createElement("path",{d:"M15 6V10.25H13V6H15Z",fill:"currentColor"}),n.default.createElement("path",{d:"M11.5 4V9H9.5V4H11.5Z",fill:"currentColor"})),x=c;0&&(module.exports={IconVoiceMode});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVoiceMode: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"voice-mode, voice-settings\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10 11C12.7614 11 15 13.2386 15 16C15 18.7614 12.7614 21 10 21H6.5C3.73858 21 1.5 18.7614 1.5 16C1.5 13.2386 3.73858 11 6.5 11H10ZM10 14C8.89543 14 8 14.8954 8 16C8 17.1046 8.89543 18 10 18C11.1046 18 12 17.1046 12 16C12 14.8954 11.1046 14 10 14Z\"\n fill=\"currentColor\"\n />\n <path d=\"M18.5 3V17H16.5V3H18.5Z\" fill=\"currentColor\" />\n <path d=\"M22 8V12H20V8H22Z\" fill=\"currentColor\" />\n <path d=\"M15 6V10.25H13V6H15Z\" fill=\"currentColor\" />\n <path d=\"M11.5 4V9H9.5V4H11.5Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMode;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,mBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,8BACpC,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,yPACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChD,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,EACnD,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,EAIGE,EAAQJ","names":["IconVoiceMode_exports","__export","IconVoiceMode","IconVoiceMode_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconVoiceMode","props","React","CentralIconBase","IconVoiceMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import l from"react";var p=({children:o,size:r=24,ariaLabel:n,color:i,ariaHidden:t=!0,style:C,...a})=>l.createElement("svg",{...a,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:i,...C}},n&&!t&&l.createElement("title",null,n),o);var s=o=>e.createElement(p,{...o,ariaLabel:"voice-mode, voice-settings"},e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 11C12.7614 11 15 13.2386 15 16C15 18.7614 12.7614 21 10 21H6.5C3.73858 21 1.5 18.7614 1.5 16C1.5 13.2386 3.73858 11 6.5 11H10ZM10 14C8.89543 14 8 14.8954 8 16C8 17.1046 8.89543 18 10 18C11.1046 18 12 17.1046 12 16C12 14.8954 11.1046 14 10 14Z",fill:"currentColor"}),e.createElement("path",{d:"M18.5 3V17H16.5V3H18.5Z",fill:"currentColor"}),e.createElement("path",{d:"M22 8V12H20V8H22Z",fill:"currentColor"}),e.createElement("path",{d:"M15 6V10.25H13V6H15Z",fill:"currentColor"}),e.createElement("path",{d:"M11.5 4V9H9.5V4H11.5Z",fill:"currentColor"})),u=s;export{s as IconVoiceMode,u as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVoiceMode: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"voice-mode, voice-settings\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10 11C12.7614 11 15 13.2386 15 16C15 18.7614 12.7614 21 10 21H6.5C3.73858 21 1.5 18.7614 1.5 16C1.5 13.2386 3.73858 11 6.5 11H10ZM10 14C8.89543 14 8 14.8954 8 16C8 17.1046 8.89543 18 10 18C11.1046 18 12 17.1046 12 16C12 14.8954 11.1046 14 10 14Z\"\n fill=\"currentColor\"\n />\n <path d=\"M18.5 3V17H16.5V3H18.5Z\" fill=\"currentColor\" />\n <path d=\"M22 8V12H20V8H22Z\" fill=\"currentColor\" />\n <path d=\"M15 6V10.25H13V6H15Z\" fill=\"currentColor\" />\n <path d=\"M11.5 4V9H9.5V4H11.5Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMode;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,8BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,yPACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtDA,EAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChDA,EAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,EACnDA,EAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconVoiceMode","props","React","CentralIconBase","IconVoiceMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var V=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var h=(r,e)=>{for(var o in e)p(r,o,{get:e[o],enumerable:!0})},a=(r,e,o,l)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of m(e))!g.call(r,t)&&t!==o&&p(r,t,{get:()=>e[t],enumerable:!(l=d(e,t))||l.enumerable});return r};var s=(r,e,o)=>(o=r!=null?u(V(r)):{},a(e||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o,r)),H=r=>a(p({},"__esModule",{value:!0}),r);var x={};h(x,{IconVoiceSettings:()=>C,default:()=>v});module.exports=H(x);var n=s(require("react"));var i=s(require("react")),L=({children:r,size:e=24,ariaLabel:o,color:l,ariaHidden:t=!0,style:c,...f})=>i.default.createElement("svg",{...f,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...c}},o&&!t&&i.default.createElement("title",null,o),r);var C=r=>n.default.createElement(L,{...r,ariaLabel:"voice-settings, edit-voice"},n.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.3242 8.99023L11.2363 10.5303L13.6104 10.5498L15.1523 13.2002L13.9814 15.25L15.1523 17.2998L13.6104 19.9502L13.041 19.9551L11.2363 19.9688L10.3242 21.5098L10.0332 22H6.96289L5.75879 19.9688L3.38574 19.9502L1.84375 17.2998L3.01367 15.25L1.84375 13.2002L3.38574 10.5498L5.75879 10.5303L6.96289 8.5H10.0332L10.3242 8.99023ZM8.49805 13.5C7.53155 13.5 6.74805 14.2835 6.74805 15.25C6.74805 16.2165 7.53155 17 8.49805 17C9.46455 17 10.248 16.2165 10.248 15.25C10.248 14.2835 9.46455 13.5 8.49805 13.5Z",fill:"currentColor"}),n.default.createElement("path",{d:"M18.998 16H16.998V2H18.998V16Z",fill:"currentColor"}),n.default.createElement("path",{d:"M22.498 11H20.498V7H22.498V11Z",fill:"currentColor"}),n.default.createElement("path",{d:"M15.498 9.25H13.498V5H15.498V9.25Z",fill:"currentColor"}),n.default.createElement("path",{d:"M11.998 6.5H9.99805V3H11.998V6.5Z",fill:"currentColor"})),v=C;0&&(module.exports={IconVoiceSettings});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceSettings/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVoiceSettings: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"voice-settings, edit-voice\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10.3242 8.99023L11.2363 10.5303L13.6104 10.5498L15.1523 13.2002L13.9814 15.25L15.1523 17.2998L13.6104 19.9502L13.041 19.9551L11.2363 19.9688L10.3242 21.5098L10.0332 22H6.96289L5.75879 19.9688L3.38574 19.9502L1.84375 17.2998L3.01367 15.25L1.84375 13.2002L3.38574 10.5498L5.75879 10.5303L6.96289 8.5H10.0332L10.3242 8.99023ZM8.49805 13.5C7.53155 13.5 6.74805 14.2835 6.74805 15.25C6.74805 16.2165 7.53155 17 8.49805 17C9.46455 17 10.248 16.2165 10.248 15.25C10.248 14.2835 9.46455 13.5 8.49805 13.5Z\"\n fill=\"currentColor\"\n />\n <path d=\"M18.998 16H16.998V2H18.998V16Z\" fill=\"currentColor\" />\n <path d=\"M22.498 11H20.498V7H22.498V11Z\" fill=\"currentColor\" />\n <path d=\"M15.498 9.25H13.498V5H15.498V9.25Z\" fill=\"currentColor\" />\n <path d=\"M11.998 6.5H9.99805V3H11.998V6.5Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceSettings;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAqDC,GAE9D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,8BACpC,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qfACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iCAAiC,KAAK,eAAe,EAC7D,EAAAA,QAAA,cAAC,QAAK,EAAE,iCAAiC,KAAK,eAAe,EAC7D,EAAAA,QAAA,cAAC,QAAK,EAAE,qCAAqC,KAAK,eAAe,EACjE,EAAAA,QAAA,cAAC,QAAK,EAAE,oCAAoC,KAAK,eAAe,CAClE,EAIGE,EAAQJ","names":["IconVoiceSettings_exports","__export","IconVoiceSettings","IconVoiceSettings_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconVoiceSettings","props","React","CentralIconBase","IconVoiceSettings_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import l from"react";var p=({children:o,size:r=24,ariaLabel:n,color:i,ariaHidden:t=!0,style:a,...s})=>l.createElement("svg",{...s,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:i,...a}},n&&!t&&l.createElement("title",null,n),o);var L=o=>e.createElement(p,{...o,ariaLabel:"voice-settings, edit-voice"},e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.3242 8.99023L11.2363 10.5303L13.6104 10.5498L15.1523 13.2002L13.9814 15.25L15.1523 17.2998L13.6104 19.9502L13.041 19.9551L11.2363 19.9688L10.3242 21.5098L10.0332 22H6.96289L5.75879 19.9688L3.38574 19.9502L1.84375 17.2998L3.01367 15.25L1.84375 13.2002L3.38574 10.5498L5.75879 10.5303L6.96289 8.5H10.0332L10.3242 8.99023ZM8.49805 13.5C7.53155 13.5 6.74805 14.2835 6.74805 15.25C6.74805 16.2165 7.53155 17 8.49805 17C9.46455 17 10.248 16.2165 10.248 15.25C10.248 14.2835 9.46455 13.5 8.49805 13.5Z",fill:"currentColor"}),e.createElement("path",{d:"M18.998 16H16.998V2H18.998V16Z",fill:"currentColor"}),e.createElement("path",{d:"M22.498 11H20.498V7H22.498V11Z",fill:"currentColor"}),e.createElement("path",{d:"M15.498 9.25H13.498V5H15.498V9.25Z",fill:"currentColor"}),e.createElement("path",{d:"M11.998 6.5H9.99805V3H11.998V6.5Z",fill:"currentColor"})),d=L;export{L as IconVoiceSettings,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceSettings/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVoiceSettings: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"voice-settings, edit-voice\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10.3242 8.99023L11.2363 10.5303L13.6104 10.5498L15.1523 13.2002L13.9814 15.25L15.1523 17.2998L13.6104 19.9502L13.041 19.9551L11.2363 19.9688L10.3242 21.5098L10.0332 22H6.96289L5.75879 19.9688L3.38574 19.9502L1.84375 17.2998L3.01367 15.25L1.84375 13.2002L3.38574 10.5498L5.75879 10.5303L6.96289 8.5H10.0332L10.3242 8.99023ZM8.49805 13.5C7.53155 13.5 6.74805 14.2835 6.74805 15.25C6.74805 16.2165 7.53155 17 8.49805 17C9.46455 17 10.248 16.2165 10.248 15.25C10.248 14.2835 9.46455 13.5 8.49805 13.5Z\"\n fill=\"currentColor\"\n />\n <path d=\"M18.998 16H16.998V2H18.998V16Z\" fill=\"currentColor\" />\n <path d=\"M22.498 11H20.498V7H22.498V11Z\" fill=\"currentColor\" />\n <path d=\"M15.498 9.25H13.498V5H15.498V9.25Z\" fill=\"currentColor\" />\n <path d=\"M11.998 6.5H9.99805V3H11.998V6.5Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceSettings;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,8BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,qfACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,iCAAiC,KAAK,eAAe,EAC7DA,EAAA,cAAC,QAAK,EAAE,iCAAiC,KAAK,eAAe,EAC7DA,EAAA,cAAC,QAAK,EAAE,qCAAqC,KAAK,eAAe,EACjEA,EAAA,cAAC,QAAK,EAAE,oCAAoC,KAAK,eAAe,CAClE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconVoiceSettings","props","React","CentralIconBase","IconVoiceSettings_default"]}
|
package/README.md
CHANGED
|
@@ -364,6 +364,7 @@ Below is a complete list of available icons:
|
|
|
364
364
|
- IconMinimize45
|
|
365
365
|
- IconOngoing
|
|
366
366
|
- IconRandom
|
|
367
|
+
- IconRemix
|
|
367
368
|
- IconRotate360Left
|
|
368
369
|
- IconRotate360Right
|
|
369
370
|
- IconShareArrowDown
|
|
@@ -1589,7 +1590,9 @@ Below is a complete list of available icons:
|
|
|
1589
1590
|
- IconVocalMicrophone
|
|
1590
1591
|
- IconVoice1
|
|
1591
1592
|
- IconVoice3
|
|
1593
|
+
- IconVoiceMode
|
|
1592
1594
|
- IconVoiceRecord
|
|
1595
|
+
- IconVoiceSettings
|
|
1593
1596
|
- IconVolumeDown
|
|
1594
1597
|
- IconVolumeFull
|
|
1595
1598
|
- IconVolumeHalf
|
package/icons/index.d.ts
CHANGED
|
@@ -1216,6 +1216,7 @@ export type CentralIconName =
|
|
|
1216
1216
|
| "IconRecord"
|
|
1217
1217
|
| "IconRecraft"
|
|
1218
1218
|
| "IconReddit"
|
|
1219
|
+
| "IconRemix"
|
|
1219
1220
|
| "IconRemoveBackground"
|
|
1220
1221
|
| "IconRemoveBackground2"
|
|
1221
1222
|
| "IconRemoveFromBasket"
|
|
@@ -1586,7 +1587,9 @@ export type CentralIconName =
|
|
|
1586
1587
|
| "IconVoice2"
|
|
1587
1588
|
| "IconVoice3"
|
|
1588
1589
|
| "IconVoiceAndVideo"
|
|
1590
|
+
| "IconVoiceMode"
|
|
1589
1591
|
| "IconVoiceRecord"
|
|
1592
|
+
| "IconVoiceSettings"
|
|
1590
1593
|
| "IconVoiceSparkle"
|
|
1591
1594
|
| "IconVolleyball"
|
|
1592
1595
|
| "IconVolumeDown"
|