@central-icons-react/square-outlined-radius-0-stroke-1 1.1.38 → 1.1.39

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.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconLiveVoiceTranslate: React.FC<CentralIconBaseProps>;
4
+ export default IconLiveVoiceTranslate;
@@ -0,0 +1,2 @@
1
+ "use strict";var m=Object.create;var a=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var V=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0})},i=(r,e,o,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of k(e))!h.call(r,t)&&t!==o&&a(r,t,{get:()=>e[t],enumerable:!(s=d(e,t))||s.enumerable});return r};var l=(r,e,o)=>(o=r!=null?m(f(r)):{},i(e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o,r)),M=r=>i(a({},"__esModule",{value:!0}),r);var x={};V(x,{IconLiveVoiceTranslate:()=>C,default:()=>g});module.exports=M(x);var n=l(require("react"));var p=l(require("react")),u=({children:r,size:e=24,ariaLabel:o,color:s,ariaHidden:t=!0,style:L,...c})=>p.default.createElement("svg",{...c,"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:s,...L}},o&&!t&&p.default.createElement("title",null,o),r);var C=r=>n.default.createElement(u,{...r,ariaLabel:"live-voice-translate"},n.default.createElement("path",{d:"M3.38386 20.0137L2.89754 20.1298L3.12981 21.1025L3.61614 20.9863L3.5 20.5L3.38386 20.0137ZM10.5 12.5L10.0043 12.4345C9.71664 14.6105 9.05474 16.2545 7.99257 17.4721C6.93229 18.6875 5.43278 19.5244 3.38386 20.0137L3.5 20.5L3.61614 20.9863C5.81138 20.4621 7.51559 19.5401 8.74614 18.1295C9.97479 16.721 10.6908 14.8717 10.9957 12.5655L10.5 12.5Z",fill:"currentColor"}),n.default.createElement("path",{d:"M5.10986 14.9182C6.08659 17.9094 8.12944 19.6858 11.4999 20.5001",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M3.5 12.5H11.5",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M7.5 11.9998V10.4998",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M20.5 8.5V11M17.5 3.5V15.5M14.5 6.5V10M11.5 4.5V8",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"})),g=C;0&&(module.exports={IconLiveVoiceTranslate});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconLiveVoiceTranslate/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLiveVoiceTranslate: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"live-voice-translate\">\n <path\n d=\"M3.38386 20.0137L2.89754 20.1298L3.12981 21.1025L3.61614 20.9863L3.5 20.5L3.38386 20.0137ZM10.5 12.5L10.0043 12.4345C9.71664 14.6105 9.05474 16.2545 7.99257 17.4721C6.93229 18.6875 5.43278 19.5244 3.38386 20.0137L3.5 20.5L3.61614 20.9863C5.81138 20.4621 7.51559 19.5401 8.74614 18.1295C9.97479 16.721 10.6908 14.8717 10.9957 12.5655L10.5 12.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.10986 14.9182C6.08659 17.9094 8.12944 19.6858 11.4999 20.5001\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.5 12.5H11.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M7.5 11.9998V10.4998\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M20.5 8.5V11M17.5 3.5V15.5M14.5 6.5V10M11.5 4.5V8\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLiveVoiceTranslate;\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,4BAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,0VACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mEACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oDACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconLiveVoiceTranslate_exports","__export","IconLiveVoiceTranslate","IconLiveVoiceTranslate_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconLiveVoiceTranslate","props","React","CentralIconBase","IconLiveVoiceTranslate_default"]}
@@ -0,0 +1,2 @@
1
+ import e from"react";import s from"react";var a=({children:o,size:r=24,ariaLabel:n,color:p,ariaHidden:t=!0,style:i,...l})=>s.createElement("svg",{...l,"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:p,...i}},n&&!t&&s.createElement("title",null,n),o);var u=o=>e.createElement(a,{...o,ariaLabel:"live-voice-translate"},e.createElement("path",{d:"M3.38386 20.0137L2.89754 20.1298L3.12981 21.1025L3.61614 20.9863L3.5 20.5L3.38386 20.0137ZM10.5 12.5L10.0043 12.4345C9.71664 14.6105 9.05474 16.2545 7.99257 17.4721C6.93229 18.6875 5.43278 19.5244 3.38386 20.0137L3.5 20.5L3.61614 20.9863C5.81138 20.4621 7.51559 19.5401 8.74614 18.1295C9.97479 16.721 10.6908 14.8717 10.9957 12.5655L10.5 12.5Z",fill:"currentColor"}),e.createElement("path",{d:"M5.10986 14.9182C6.08659 17.9094 8.12944 19.6858 11.4999 20.5001",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),e.createElement("path",{d:"M3.5 12.5H11.5",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),e.createElement("path",{d:"M7.5 11.9998V10.4998",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),e.createElement("path",{d:"M20.5 8.5V11M17.5 3.5V15.5M14.5 6.5V10M11.5 4.5V8",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"})),d=u;export{u as IconLiveVoiceTranslate,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconLiveVoiceTranslate/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLiveVoiceTranslate: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"live-voice-translate\">\n <path\n d=\"M3.38386 20.0137L2.89754 20.1298L3.12981 21.1025L3.61614 20.9863L3.5 20.5L3.38386 20.0137ZM10.5 12.5L10.0043 12.4345C9.71664 14.6105 9.05474 16.2545 7.99257 17.4721C6.93229 18.6875 5.43278 19.5244 3.38386 20.0137L3.5 20.5L3.61614 20.9863C5.81138 20.4621 7.51559 19.5401 8.74614 18.1295C9.97479 16.721 10.6908 14.8717 10.9957 12.5655L10.5 12.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.10986 14.9182C6.08659 17.9094 8.12944 19.6858 11.4999 20.5001\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.5 12.5H11.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M7.5 11.9998V10.4998\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M20.5 8.5V11M17.5 3.5V15.5M14.5 6.5V10M11.5 4.5V8\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLiveVoiceTranslate;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpCC,EAAA,cAAC,QACC,EAAE,0VACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mEACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,oDACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconLiveVoiceTranslate","props","React","CentralIconBase","IconLiveVoiceTranslate_default"]}
package/README.md CHANGED
@@ -196,6 +196,7 @@ Below is a complete list of available icons:
196
196
  - IconImagine
197
197
  - IconImagineAi
198
198
  - IconListSparkle
199
+ - IconLiveVoiceTranslate
199
200
  - IconMagicBook
200
201
  - IconMagicEdit
201
202
  - IconMagicWand
package/icons/index.d.ts CHANGED
@@ -900,6 +900,7 @@ export type CentralIconName =
900
900
  | "IconLiveActivity"
901
901
  | "IconLiveFull"
902
902
  | "IconLiveNoSignal"
903
+ | "IconLiveVoiceTranslate"
903
904
  | "IconLiveWeak"
904
905
  | "IconLoader"
905
906
  | "IconLoadingCircle"