@central-icons-react/square-filled-radius-0-stroke-2 1.1.70 → 1.1.72
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/IconScanCode/index.d.ts +4 -0
- package/IconScanCode/index.js +2 -0
- package/IconScanCode/index.js.map +1 -0
- package/IconScanCode/index.mjs +2 -0
- package/IconScanCode/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 u=Object.create;var p=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,m=Object.prototype.hasOwnProperty;var M=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!m.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(n=c(o,e))||n.enumerable});return r};var H=(r,o,t)=>(t=r!=null?u(h(r)):{},a(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),Z=r=>a(p({},"__esModule",{value:!0}),r);var x={};M(x,{IconScanCode:()=>s,default:()=>g});module.exports=Z(x);var l=H(require("react"));var V=H(require("react")),i=({children:r,size:o=24,ariaLabel:t,color:n,ariaHidden:e=!0,style:C,...f})=>V.default.createElement("svg",{...f,"aria-hidden":e,role:e?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...C}},t&&!e&&V.default.createElement("title",null,t),r);var s=r=>l.default.createElement(i,{...r,ariaLabel:"scan-code, barcode"},l.default.createElement("path",{d:"M5 19H9V21H3V15H5V19Z",fill:"currentColor"}),l.default.createElement("path",{d:"M21 21H15V19H19V15H21V21Z",fill:"currentColor"}),l.default.createElement("path",{d:"M8 15H7V9H8V15Z",fill:"currentColor"}),l.default.createElement("path",{d:"M11 15H9V9H11V15Z",fill:"currentColor"}),l.default.createElement("path",{d:"M13 15H12V9H13V15Z",fill:"currentColor"}),l.default.createElement("path",{d:"M15 15H14V9H15V15Z",fill:"currentColor"}),l.default.createElement("path",{d:"M17 15H16V9H17V15Z",fill:"currentColor"}),l.default.createElement("path",{d:"M9 5H5V9H3V3H9V5Z",fill:"currentColor"}),l.default.createElement("path",{d:"M21 9H19V5H15V3H21V9Z",fill:"currentColor"})),g=s;0&&(module.exports={IconScanCode});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconScanCode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScanCode: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"scan-code, barcode\">\n <path d=\"M5 19H9V21H3V15H5V19Z\" fill=\"currentColor\" />\n <path d=\"M21 21H15V19H19V15H21V21Z\" fill=\"currentColor\" />\n <path d=\"M8 15H7V9H8V15Z\" fill=\"currentColor\" />\n <path d=\"M11 15H9V9H11V15Z\" fill=\"currentColor\" />\n <path d=\"M13 15H12V9H13V15Z\" fill=\"currentColor\" />\n <path d=\"M15 15H14V9H15V15Z\" fill=\"currentColor\" />\n <path d=\"M17 15H16V9H17V15Z\" fill=\"currentColor\" />\n <path d=\"M9 5H5V9H3V3H9V5Z\" fill=\"currentColor\" />\n <path d=\"M21 9H19V5H15V3H21V9Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconScanCode;\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,kBAAAE,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,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sBACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,EACpD,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9C,EAAAA,QAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChD,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjD,EAAAA,QAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChD,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,EAIGE,EAAQJ","names":["IconScanCode_exports","__export","IconScanCode","IconScanCode_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconScanCode","props","React","CentralIconBase","IconScanCode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import n from"react";var p=({children:t,size:o=24,ariaLabel:e,color:V,ariaHidden:l=!0,style:a,...H})=>n.createElement("svg",{...H,"aria-hidden":l,role:l?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:V,...a}},e&&!l&&n.createElement("title",null,e),t);var i=t=>r.createElement(p,{...t,ariaLabel:"scan-code, barcode"},r.createElement("path",{d:"M5 19H9V21H3V15H5V19Z",fill:"currentColor"}),r.createElement("path",{d:"M21 21H15V19H19V15H21V21Z",fill:"currentColor"}),r.createElement("path",{d:"M8 15H7V9H8V15Z",fill:"currentColor"}),r.createElement("path",{d:"M11 15H9V9H11V15Z",fill:"currentColor"}),r.createElement("path",{d:"M13 15H12V9H13V15Z",fill:"currentColor"}),r.createElement("path",{d:"M15 15H14V9H15V15Z",fill:"currentColor"}),r.createElement("path",{d:"M17 15H16V9H17V15Z",fill:"currentColor"}),r.createElement("path",{d:"M9 5H5V9H3V3H9V5Z",fill:"currentColor"}),r.createElement("path",{d:"M21 9H19V5H15V3H21V9Z",fill:"currentColor"})),c=i;export{i as IconScanCode,c as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconScanCode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScanCode: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"scan-code, barcode\">\n <path d=\"M5 19H9V21H3V15H5V19Z\" fill=\"currentColor\" />\n <path d=\"M21 21H15V19H19V15H21V21Z\" fill=\"currentColor\" />\n <path d=\"M8 15H7V9H8V15Z\" fill=\"currentColor\" />\n <path d=\"M11 15H9V9H11V15Z\" fill=\"currentColor\" />\n <path d=\"M13 15H12V9H13V15Z\" fill=\"currentColor\" />\n <path d=\"M15 15H14V9H15V15Z\" fill=\"currentColor\" />\n <path d=\"M17 15H16V9H17V15Z\" fill=\"currentColor\" />\n <path d=\"M9 5H5V9H3V3H9V5Z\" fill=\"currentColor\" />\n <path d=\"M21 9H19V5H15V3H21V9Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconScanCode;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sBACpCC,EAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,EACpDA,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDA,EAAA,cAAC,QAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9CA,EAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChDA,EAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDA,EAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDA,EAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,EACjDA,EAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChDA,EAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconScanCode","props","React","CentralIconBase","IconScanCode_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
|
@@ -1054,6 +1054,7 @@ Below is a complete list of available icons:
|
|
|
1054
1054
|
- IconQrCode
|
|
1055
1055
|
- IconQuickSearch
|
|
1056
1056
|
- IconReview
|
|
1057
|
+
- IconScanCode
|
|
1057
1058
|
- IconSearchMenu
|
|
1058
1059
|
- IconSearchOptions
|
|
1059
1060
|
- IconShapesPlusXSquareCircle
|
|
@@ -1588,7 +1589,9 @@ Below is a complete list of available icons:
|
|
|
1588
1589
|
- IconVocalMicrophone
|
|
1589
1590
|
- IconVoice1
|
|
1590
1591
|
- IconVoice3
|
|
1592
|
+
- IconVoiceMode
|
|
1591
1593
|
- IconVoiceRecord
|
|
1594
|
+
- IconVoiceSettings
|
|
1592
1595
|
- IconVolumeDown
|
|
1593
1596
|
- IconVolumeFull
|
|
1594
1597
|
- IconVolumeHalf
|
package/icons/index.d.ts
CHANGED
|
@@ -1259,6 +1259,7 @@ export type CentralIconName =
|
|
|
1259
1259
|
| "IconSandbox"
|
|
1260
1260
|
| "IconSatellite1"
|
|
1261
1261
|
| "IconSatellite2"
|
|
1262
|
+
| "IconScanCode"
|
|
1262
1263
|
| "IconScanTextSparkle"
|
|
1263
1264
|
| "IconSchool"
|
|
1264
1265
|
| "IconScissors1"
|
|
@@ -1585,7 +1586,9 @@ export type CentralIconName =
|
|
|
1585
1586
|
| "IconVoice2"
|
|
1586
1587
|
| "IconVoice3"
|
|
1587
1588
|
| "IconVoiceAndVideo"
|
|
1589
|
+
| "IconVoiceMode"
|
|
1588
1590
|
| "IconVoiceRecord"
|
|
1591
|
+
| "IconVoiceSettings"
|
|
1589
1592
|
| "IconVoiceSparkle"
|
|
1590
1593
|
| "IconVolleyball"
|
|
1591
1594
|
| "IconVolumeDown"
|