@central-icons-react/square-filled-radius-0-stroke-1 1.1.37 → 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.
@@ -1,2 +1,2 @@
1
- "use strict";var C=Object.create;var l=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var o in r)l(e,o,{get:r[o],enumerable:!0})},s=(e,r,o,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of g(r))!x.call(e,t)&&t!==o&&l(e,t,{get:()=>r[t],enumerable:!(n=d(r,t))||n.enumerable});return e};var c=(e,r,o)=>(o=e!=null?C(w(e)):{},s(r||!e||!e.__esModule?l(o,"default",{value:e,enumerable:!0}):o,e)),I=e=>s(l({},"__esModule",{value:!0}),e);var h={};B(h,{IconArrowCornerUpLeft:()=>m,default:()=>L});module.exports=I(h);var a=c(require("react"));var p=c(require("react")),i=({children:e,size:r=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:f,...u})=>p.default.createElement("svg",{...u,"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:n,...f}},o&&!t&&p.default.createElement("title",null,o),e);var m=e=>a.default.createElement(i,{...e,ariaLabel:"arrow-corner-up-left"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.207 20.2071V9.70711H4.91414L8.91414 13.7071L8.20703 14.4142L2.99992 9.20711L8.20703 4L8.91414 4.70711L4.91414 8.70711H21.207V20.2071H20.207Z",fill:"currentColor"})),L=m;0&&(module.exports={IconArrowCornerUpLeft});
1
+ "use strict";var C=Object.create;var l=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var o in r)l(e,o,{get:r[o],enumerable:!0})},s=(e,r,o,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of g(r))!x.call(e,t)&&t!==o&&l(e,t,{get:()=>r[t],enumerable:!(n=d(r,t))||n.enumerable});return e};var c=(e,r,o)=>(o=e!=null?C(w(e)):{},s(r||!e||!e.__esModule?l(o,"default",{value:e,enumerable:!0}):o,e)),I=e=>s(l({},"__esModule",{value:!0}),e);var h={};B(h,{IconArrowCornerUpLeft:()=>m,default:()=>L});module.exports=I(h);var a=c(require("react"));var p=c(require("react")),i=({children:e,size:r=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:f,...u})=>p.default.createElement("svg",{...u,"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:n,...f}},o&&!t&&p.default.createElement("title",null,o),e);var m=e=>a.default.createElement(i,{...e,ariaLabel:"arrow-corner-up-left"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.2071 20.2071V9.70711H4.91422L8.91421 13.7071L8.20711 14.4142L3 9.20711L8.20711 4L8.91421 4.70711L4.91422 8.70711H21.2071V20.2071H20.2071Z",fill:"currentColor"})),L=m;0&&(module.exports={IconArrowCornerUpLeft});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconArrowCornerUpLeft/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowCornerUpLeft: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-corner-up-left\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20.207 20.2071V9.70711H4.91414L8.91414 13.7071L8.20703 14.4142L2.99992 9.20711L8.20703 4L8.91414 4.70711L4.91414 8.70711H21.207V20.2071H20.207Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowCornerUpLeft;\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,2BAAAE,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,SAAS,UACT,SAAS,UACT,EAAE,mJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconArrowCornerUpLeft_exports","__export","IconArrowCornerUpLeft","IconArrowCornerUpLeft_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowCornerUpLeft","props","React","CentralIconBase","IconArrowCornerUpLeft_default"]}
1
+ {"version":3,"sources":["../src/IconArrowCornerUpLeft/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowCornerUpLeft: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-corner-up-left\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20.2071 20.2071V9.70711H4.91422L8.91421 13.7071L8.20711 14.4142L3 9.20711L8.20711 4L8.91421 4.70711L4.91422 8.70711H21.2071V20.2071H20.2071Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowCornerUpLeft;\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,2BAAAE,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,SAAS,UACT,SAAS,UACT,EAAE,gJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconArrowCornerUpLeft_exports","__export","IconArrowCornerUpLeft","IconArrowCornerUpLeft_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowCornerUpLeft","props","React","CentralIconBase","IconArrowCornerUpLeft_default"]}
@@ -1,2 +1,2 @@
1
- import p from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:t,color:a,ariaHidden:o=!0,style:s,...c})=>n.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:a,...s}},t&&!o&&n.createElement("title",null,t),r);var i=r=>p.createElement(l,{...r,ariaLabel:"arrow-corner-up-left"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.207 20.2071V9.70711H4.91414L8.91414 13.7071L8.20703 14.4142L2.99992 9.20711L8.20703 4L8.91414 4.70711L4.91414 8.70711H21.207V20.2071H20.207Z",fill:"currentColor"})),d=i;export{i as IconArrowCornerUpLeft,d as default};
1
+ import p from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:t,color:a,ariaHidden:o=!0,style:s,...c})=>n.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:a,...s}},t&&!o&&n.createElement("title",null,t),r);var i=r=>p.createElement(l,{...r,ariaLabel:"arrow-corner-up-left"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.2071 20.2071V9.70711H4.91422L8.91421 13.7071L8.20711 14.4142L3 9.20711L8.20711 4L8.91421 4.70711L4.91422 8.70711H21.2071V20.2071H20.2071Z",fill:"currentColor"})),d=i;export{i as IconArrowCornerUpLeft,d as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconArrowCornerUpLeft/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowCornerUpLeft: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-corner-up-left\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20.207 20.2071V9.70711H4.91414L8.91414 13.7071L8.20703 14.4142L2.99992 9.20711L8.20703 4L8.91414 4.70711L4.91414 8.70711H21.207V20.2071H20.207Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowCornerUpLeft;\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,SAAS,UACT,SAAS,UACT,EAAE,mJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowCornerUpLeft","props","React","CentralIconBase","IconArrowCornerUpLeft_default"]}
1
+ {"version":3,"sources":["../src/IconArrowCornerUpLeft/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowCornerUpLeft: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-corner-up-left\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M20.2071 20.2071V9.70711H4.91422L8.91421 13.7071L8.20711 14.4142L3 9.20711L8.20711 4L8.91421 4.70711L4.91422 8.70711H21.2071V20.2071H20.2071Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowCornerUpLeft;\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,SAAS,UACT,SAAS,UACT,EAAE,gJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowCornerUpLeft","props","React","CentralIconBase","IconArrowCornerUpLeft_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAura: React.FC<CentralIconBaseProps>;
4
+ export default IconAura;
@@ -0,0 +1,2 @@
1
+ "use strict";var h=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var c=Object.getPrototypeOf,g=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))!g.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(n=m(o,e))||n.enumerable});return r};var C=(r,o,t)=>(t=r!=null?h(c(r)):{},a(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),Z=r=>a(p({},"__esModule",{value:!0}),r);var B={};M(B,{IconAura:()=>u,default:()=>x});module.exports=Z(B);var l=C(require("react"));var L=C(require("react")),i=({children:r,size:o=24,ariaLabel:t,color:n,ariaHidden:e=!0,style:f,...s})=>L.default.createElement("svg",{...s,"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,...f}},t&&!e&&L.default.createElement("title",null,t),r);var u=r=>l.default.createElement(i,{...r,ariaLabel:"aura, enlighten"},l.default.createElement("path",{d:"M12.001 15C15.3147 15 18.001 17.6863 18.001 21V22H6.00098V21C6.00098 17.6863 8.68727 15 12.001 15Z",fill:"currentColor"}),l.default.createElement("path",{d:"M6.62207 14.1836L4.02344 15.6836L3.52344 14.8174L6.12207 13.3174L6.62207 14.1836Z",fill:"currentColor"}),l.default.createElement("path",{d:"M20.4785 14.8174L19.9785 15.6836L17.3799 14.1836L17.8799 13.3174L20.4785 14.8174Z",fill:"currentColor"}),l.default.createElement("path",{d:"M12.001 7C13.934 7 15.501 8.567 15.501 10.5C15.501 12.433 13.934 14 12.001 14C10.068 14 8.50098 12.433 8.50098 10.5C8.50098 8.567 10.068 7 12.001 7Z",fill:"currentColor"}),l.default.createElement("path",{d:"M5.68652 8.87891L5.5127 9.86328L2.55859 9.34277L2.73242 8.3584L5.68652 8.87891Z",fill:"currentColor"}),l.default.createElement("path",{d:"M21.4434 9.34277L18.4893 9.86328L18.3154 8.87891L21.2695 8.3584L21.4434 9.34277Z",fill:"currentColor"}),l.default.createElement("path",{d:"M8.20605 5.19922L7.44043 5.8418L5.51172 3.54395L6.27734 2.90137L8.20605 5.19922Z",fill:"currentColor"}),l.default.createElement("path",{d:"M18.4902 3.54395L16.5625 5.8418L16.1797 5.52051L15.7959 5.19922L17.7246 2.90137L18.4902 3.54395Z",fill:"currentColor"}),l.default.createElement("path",{d:"M12.501 4H11.501V1H12.501V4Z",fill:"currentColor"})),x=u;0&&(module.exports={IconAura});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconAura/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconAura: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"aura, enlighten\">\n <path\n d=\"M12.001 15C15.3147 15 18.001 17.6863 18.001 21V22H6.00098V21C6.00098 17.6863 8.68727 15 12.001 15Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.62207 14.1836L4.02344 15.6836L3.52344 14.8174L6.12207 13.3174L6.62207 14.1836Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.4785 14.8174L19.9785 15.6836L17.3799 14.1836L17.8799 13.3174L20.4785 14.8174Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.001 7C13.934 7 15.501 8.567 15.501 10.5C15.501 12.433 13.934 14 12.001 14C10.068 14 8.50098 12.433 8.50098 10.5C8.50098 8.567 10.068 7 12.001 7Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.68652 8.87891L5.5127 9.86328L2.55859 9.34277L2.73242 8.3584L5.68652 8.87891Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.4434 9.34277L18.4893 9.86328L18.3154 8.87891L21.2695 8.3584L21.4434 9.34277Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.20605 5.19922L7.44043 5.8418L5.51172 3.54395L6.27734 2.90137L8.20605 5.19922Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.4902 3.54395L16.5625 5.8418L16.1797 5.52051L15.7959 5.19922L17.7246 2.90137L18.4902 3.54395Z\"\n fill=\"currentColor\"\n />\n <path d=\"M12.501 4H11.501V1H12.501V4Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconAura;\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,cAAAE,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,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,mBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,qGACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mGACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,+BAA+B,KAAK,eAAe,CAC7D,EAIGE,EAAQJ","names":["IconAura_exports","__export","IconAura","IconAura_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconAura","props","React","CentralIconBase","IconAura_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import n from"react";var p=({children:t,size:o=24,ariaLabel:e,color:L,ariaHidden:l=!0,style:a,...C})=>n.createElement("svg",{...C,"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:L,...a}},e&&!l&&n.createElement("title",null,e),t);var i=t=>r.createElement(p,{...t,ariaLabel:"aura, enlighten"},r.createElement("path",{d:"M12.001 15C15.3147 15 18.001 17.6863 18.001 21V22H6.00098V21C6.00098 17.6863 8.68727 15 12.001 15Z",fill:"currentColor"}),r.createElement("path",{d:"M6.62207 14.1836L4.02344 15.6836L3.52344 14.8174L6.12207 13.3174L6.62207 14.1836Z",fill:"currentColor"}),r.createElement("path",{d:"M20.4785 14.8174L19.9785 15.6836L17.3799 14.1836L17.8799 13.3174L20.4785 14.8174Z",fill:"currentColor"}),r.createElement("path",{d:"M12.001 7C13.934 7 15.501 8.567 15.501 10.5C15.501 12.433 13.934 14 12.001 14C10.068 14 8.50098 12.433 8.50098 10.5C8.50098 8.567 10.068 7 12.001 7Z",fill:"currentColor"}),r.createElement("path",{d:"M5.68652 8.87891L5.5127 9.86328L2.55859 9.34277L2.73242 8.3584L5.68652 8.87891Z",fill:"currentColor"}),r.createElement("path",{d:"M21.4434 9.34277L18.4893 9.86328L18.3154 8.87891L21.2695 8.3584L21.4434 9.34277Z",fill:"currentColor"}),r.createElement("path",{d:"M8.20605 5.19922L7.44043 5.8418L5.51172 3.54395L6.27734 2.90137L8.20605 5.19922Z",fill:"currentColor"}),r.createElement("path",{d:"M18.4902 3.54395L16.5625 5.8418L16.1797 5.52051L15.7959 5.19922L17.7246 2.90137L18.4902 3.54395Z",fill:"currentColor"}),r.createElement("path",{d:"M12.501 4H11.501V1H12.501V4Z",fill:"currentColor"})),m=i;export{i as IconAura,m as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconAura/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconAura: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"aura, enlighten\">\n <path\n d=\"M12.001 15C15.3147 15 18.001 17.6863 18.001 21V22H6.00098V21C6.00098 17.6863 8.68727 15 12.001 15Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.62207 14.1836L4.02344 15.6836L3.52344 14.8174L6.12207 13.3174L6.62207 14.1836Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.4785 14.8174L19.9785 15.6836L17.3799 14.1836L17.8799 13.3174L20.4785 14.8174Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.001 7C13.934 7 15.501 8.567 15.501 10.5C15.501 12.433 13.934 14 12.001 14C10.068 14 8.50098 12.433 8.50098 10.5C8.50098 8.567 10.068 7 12.001 7Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.68652 8.87891L5.5127 9.86328L2.55859 9.34277L2.73242 8.3584L5.68652 8.87891Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.4434 9.34277L18.4893 9.86328L18.3154 8.87891L21.2695 8.3584L21.4434 9.34277Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.20605 5.19922L7.44043 5.8418L5.51172 3.54395L6.27734 2.90137L8.20605 5.19922Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.4902 3.54395L16.5625 5.8418L16.1797 5.52051L15.7959 5.19922L17.7246 2.90137L18.4902 3.54395Z\"\n fill=\"currentColor\"\n />\n <path d=\"M12.501 4H11.501V1H12.501V4Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconAura;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,mBACpCC,EAAA,cAAC,QACC,EAAE,qGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mGACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,+BAA+B,KAAK,eAAe,CAC7D,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconAura","props","React","CentralIconBase","IconAura_default"]}
@@ -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 p=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of H(o))!h.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(l=u(o,e))||l.enumerable});return r};var i=(r,o,t)=>(t=r!=null?m(L(r)):{},C(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>C(p({},"__esModule",{value:!0}),r);var B={};d(B,{IconLiveVoiceTranslate:()=>V,default:()=>x});module.exports=g(B);var n=i(require("react"));var a=i(require("react")),s=({children:r,size:o=24,ariaLabel:t,color:l,ariaHidden:e=!0,style:c,...f})=>a.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:l,...c}},t&&!e&&a.default.createElement("title",null,t),r);var V=r=>n.default.createElement(s,{...r,ariaLabel:"live-voice-translate"},n.default.createElement("path",{d:"M8 12H12V13H10.9326C10.5977 15.1052 9.89658 16.811 8.74609 18.1299C8.60527 18.2913 8.45697 18.445 8.30371 18.5938C9.19396 19.2215 10.2888 19.6925 11.6182 20.0137L12.1035 20.1309L11.8691 21.1035L11.3828 20.9863C9.8594 20.6183 8.57279 20.0544 7.51953 19.2607C6.4562 20.0526 5.15775 20.6182 3.61621 20.9863L3.12988 21.1025L2.89746 20.1299L3.38379 20.0137C4.72993 19.6922 5.83724 19.2183 6.74023 18.5879C5.7862 17.6496 5.09438 16.4807 4.63477 15.0732L4.47949 14.5977L5.43066 14.2871L5.58594 14.7627C6.01603 16.0798 6.656 17.1298 7.52441 17.9551C7.68874 17.8009 7.84506 17.6403 7.99219 17.4717C8.96024 16.3619 9.59419 14.898 9.91699 13H3V12H7V10H8V12Z",fill:"currentColor"}),n.default.createElement("path",{d:"M18 3V16H17V3H18Z",fill:"currentColor"}),n.default.createElement("path",{d:"M21 8V11.5H20V8H21Z",fill:"currentColor"}),n.default.createElement("path",{d:"M15 6V10.5H14V6H15Z",fill:"currentColor"}),n.default.createElement("path",{d:"M12 4V8.5H11V4H12Z",fill:"currentColor"})),x=V;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=\"M8 12H12V13H10.9326C10.5977 15.1052 9.89658 16.811 8.74609 18.1299C8.60527 18.2913 8.45697 18.445 8.30371 18.5938C9.19396 19.2215 10.2888 19.6925 11.6182 20.0137L12.1035 20.1309L11.8691 21.1035L11.3828 20.9863C9.8594 20.6183 8.57279 20.0544 7.51953 19.2607C6.4562 20.0526 5.15775 20.6182 3.61621 20.9863L3.12988 21.1025L2.89746 20.1299L3.38379 20.0137C4.72993 19.6922 5.83724 19.2183 6.74023 18.5879C5.7862 17.6496 5.09438 16.4807 4.63477 15.0732L4.47949 14.5977L5.43066 14.2871L5.58594 14.7627C6.01603 16.0798 6.656 17.1298 7.52441 17.9551C7.68874 17.8009 7.84506 17.6403 7.99219 17.4717C8.96024 16.3619 9.59419 14.898 9.91699 13H3V12H7V10H8V12Z\"\n fill=\"currentColor\"\n />\n <path d=\"M18 3V16H17V3H18Z\" fill=\"currentColor\" />\n <path d=\"M21 8V11.5H20V8H21Z\" fill=\"currentColor\" />\n <path d=\"M15 6V10.5H14V6H15Z\" fill=\"currentColor\" />\n <path d=\"M12 4V8.5H11V4H12Z\" fill=\"currentColor\" />\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,yoBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChD,EAAAA,QAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,EAClD,EAAAA,QAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,EAClD,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,CACnD,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 o from"react";import l from"react";var p=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:C,...i})=>l.createElement("svg",{...i,"aria-hidden":e,role:e?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,...C}},n&&!e&&l.createElement("title",null,n),t);var s=t=>o.createElement(p,{...t,ariaLabel:"live-voice-translate"},o.createElement("path",{d:"M8 12H12V13H10.9326C10.5977 15.1052 9.89658 16.811 8.74609 18.1299C8.60527 18.2913 8.45697 18.445 8.30371 18.5938C9.19396 19.2215 10.2888 19.6925 11.6182 20.0137L12.1035 20.1309L11.8691 21.1035L11.3828 20.9863C9.8594 20.6183 8.57279 20.0544 7.51953 19.2607C6.4562 20.0526 5.15775 20.6182 3.61621 20.9863L3.12988 21.1025L2.89746 20.1299L3.38379 20.0137C4.72993 19.6922 5.83724 19.2183 6.74023 18.5879C5.7862 17.6496 5.09438 16.4807 4.63477 15.0732L4.47949 14.5977L5.43066 14.2871L5.58594 14.7627C6.01603 16.0798 6.656 17.1298 7.52441 17.9551C7.68874 17.8009 7.84506 17.6403 7.99219 17.4717C8.96024 16.3619 9.59419 14.898 9.91699 13H3V12H7V10H8V12Z",fill:"currentColor"}),o.createElement("path",{d:"M18 3V16H17V3H18Z",fill:"currentColor"}),o.createElement("path",{d:"M21 8V11.5H20V8H21Z",fill:"currentColor"}),o.createElement("path",{d:"M15 6V10.5H14V6H15Z",fill:"currentColor"}),o.createElement("path",{d:"M12 4V8.5H11V4H12Z",fill:"currentColor"})),u=s;export{s as IconLiveVoiceTranslate,u 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=\"M8 12H12V13H10.9326C10.5977 15.1052 9.89658 16.811 8.74609 18.1299C8.60527 18.2913 8.45697 18.445 8.30371 18.5938C9.19396 19.2215 10.2888 19.6925 11.6182 20.0137L12.1035 20.1309L11.8691 21.1035L11.3828 20.9863C9.8594 20.6183 8.57279 20.0544 7.51953 19.2607C6.4562 20.0526 5.15775 20.6182 3.61621 20.9863L3.12988 21.1025L2.89746 20.1299L3.38379 20.0137C4.72993 19.6922 5.83724 19.2183 6.74023 18.5879C5.7862 17.6496 5.09438 16.4807 4.63477 15.0732L4.47949 14.5977L5.43066 14.2871L5.58594 14.7627C6.01603 16.0798 6.656 17.1298 7.52441 17.9551C7.68874 17.8009 7.84506 17.6403 7.99219 17.4717C8.96024 16.3619 9.59419 14.898 9.91699 13H3V12H7V10H8V12Z\"\n fill=\"currentColor\"\n />\n <path d=\"M18 3V16H17V3H18Z\" fill=\"currentColor\" />\n <path d=\"M21 8V11.5H20V8H21Z\" fill=\"currentColor\" />\n <path d=\"M15 6V10.5H14V6H15Z\" fill=\"currentColor\" />\n <path d=\"M12 4V8.5H11V4H12Z\" fill=\"currentColor\" />\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,yoBACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChDA,EAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,EAClDA,EAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,EAClDA,EAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,CACnD,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
@@ -1151,6 +1152,7 @@ Below is a complete list of available icons:
1151
1152
 
1152
1153
  ### People
1153
1154
 
1155
+ - IconAura
1154
1156
  - IconBathMan1
1155
1157
  - IconBathWoman1
1156
1158
  - IconContacts
package/icons/index.d.ts CHANGED
@@ -150,6 +150,7 @@ export type CentralIconName =
150
150
  | "IconAt"
151
151
  | "IconAtom"
152
152
  | "IconAudio"
153
+ | "IconAura"
153
154
  | "IconAutoCorrect"
154
155
  | "IconAutoFlash"
155
156
  | "IconAutoSize"
@@ -899,6 +900,7 @@ export type CentralIconName =
899
900
  | "IconLiveActivity"
900
901
  | "IconLiveFull"
901
902
  | "IconLiveNoSignal"
903
+ | "IconLiveVoiceTranslate"
902
904
  | "IconLiveWeak"
903
905
  | "IconLoader"
904
906
  | "IconLoadingCircle"