@central-icons-react/square-outlined-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.
- package/IconArrowCornerUpLeft/index.js +1 -1
- package/IconArrowCornerUpLeft/index.js.map +1 -1
- package/IconArrowCornerUpLeft/index.mjs +1 -1
- package/IconArrowCornerUpLeft/index.mjs.map +1 -1
- package/IconArrowDownRight/index.js +1 -1
- package/IconArrowDownRight/index.js.map +1 -1
- package/IconArrowDownRight/index.mjs +1 -1
- package/IconArrowDownRight/index.mjs.map +1 -1
- package/IconAura/index.d.ts +4 -0
- package/IconAura/index.js +2 -0
- package/IconAura/index.js.map +1 -0
- package/IconAura/index.mjs +2 -0
- package/IconAura/index.mjs.map +1 -0
- package/IconLiveVoiceTranslate/index.d.ts +4 -0
- package/IconLiveVoiceTranslate/index.js +2 -0
- package/IconLiveVoiceTranslate/index.js.map +1 -0
- package/IconLiveVoiceTranslate/index.mjs +2 -0
- package/IconLiveVoiceTranslate/index.mjs.map +1 -0
- package/README.md +2 -0
- package/icons/index.d.ts +2 -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 +8 -4
- package/index.d.ts +5 -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
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var C=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var w=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,e)=>{for(var
|
|
1
|
+
"use strict";var C=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var w=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,e)=>{for(var o in e)p(r,o,{get:e[o],enumerable:!0})},l=(r,e,o,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of w(e))!B.call(r,t)&&t!==o&&p(r,t,{get:()=>e[t],enumerable:!(n=g(e,t))||n.enumerable});return r};var c=(r,e,o)=>(o=r!=null?C(x(r)):{},l(e||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o,r)),d=r=>l(p({},"__esModule",{value:!0}),r);var y={};I(y,{IconArrowCornerUpLeft:()=>m,default:()=>h});module.exports=d(y);var s=c(require("react"));var a=c(require("react")),i=({children:r,size:e=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:u,...f})=>a.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:n,...u}},o&&!t&&a.default.createElement("title",null,o),r);var m=r=>s.default.createElement(i,{...r,ariaLabel:"arrow-corner-up-left"},s.default.createElement("path",{d:"M20.5 19.5V9H3.5M3.5 9L8 13.5M3.5 9L8 4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),h=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 d=\"M20.5 19.
|
|
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 d=\"M20.5 19.5V9H3.5M3.5 9L8 13.5M3.5 9L8 4.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,EAAE,4CACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 a from"react";import n from"react";var p=({children:e,size:r=24,ariaLabel:
|
|
1
|
+
import a from"react";import n from"react";var p=({children:e,size:r=24,ariaLabel:t,color:s,ariaHidden:o=!0,style:l,...c})=>n.createElement("svg",{...c,"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:s,...l}},t&&!o&&n.createElement("title",null,t),e);var i=e=>a.createElement(p,{...e,ariaLabel:"arrow-corner-up-left"},a.createElement("path",{d:"M20.5 19.5V9H3.5M3.5 9L8 13.5M3.5 9L8 4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),g=i;export{i as IconArrowCornerUpLeft,g 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 d=\"M20.5 19.
|
|
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 d=\"M20.5 19.5V9H3.5M3.5 9L8 13.5M3.5 9L8 4.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,EAAE,4CACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowCornerUpLeft","props","React","CentralIconBase","IconArrowCornerUpLeft_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var g=Object.create;var a=Object.defineProperty;var w=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0})},l=(r,e,o,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of f(e))!x.call(r,t)&&t!==o&&a(r,t,{get:()=>e[t],enumerable:!(n=w(e,t))||n.enumerable});return r};var i=(r,e,o)=>(o=r!=null?g(h(r)):{},l(e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o,r)),I=r=>l(a({},"__esModule",{value:!0}),r);var y={};B(y,{IconArrowDownRight:()=>m,default:()=>d});module.exports=I(y);var p=i(require("react"));var s=i(require("react")),c=({children:r,size:e=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:u,...C})=>s.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:n,...u}},o&&!t&&s.default.createElement("title",null,o),r);var m=r=>p.default.createElement(c,{...r,ariaLabel:"arrow-down-right"},p.default.createElement("path",{d:"M18.5 8.5V18.5H8.5",stroke:"currentColor",strokeLinecap:"square"}),p.default.createElement("path",{d:"M18 18L6 6",stroke:"currentColor",strokeLinecap:"square"})),d=m;0&&(module.exports={IconArrowDownRight});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconArrowDownRight/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowDownRight: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-down-right\">\n <path\n d=\"M18.5 8.5V18.5H8.
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowDownRight/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowDownRight: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-down-right\">\n <path\n d=\"M18.5 8.5V18.5H8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M18 18L6 6\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowDownRight;\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,wBAAAE,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,EAAsDC,GAE/D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,CACpE,EAIGE,EAAQJ","names":["IconArrowDownRight_exports","__export","IconArrowDownRight","IconArrowDownRight_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowDownRight","props","React","CentralIconBase","IconArrowDownRight_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import t from"react";import a from"react";var p=({children:e,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:l,...i})=>a.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:s,...l}},n&&!o&&a.createElement("title",null,n),e);var c=e=>t.createElement(p,{...e,ariaLabel:"arrow-down-right"},t.createElement("path",{d:"M18.5 8.5V18.5H8.5",stroke:"currentColor",strokeLinecap:"square"}),t.createElement("path",{d:"M18 18L6 6",stroke:"currentColor",strokeLinecap:"square"})),w=c;export{c as IconArrowDownRight,w as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconArrowDownRight/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowDownRight: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-down-right\">\n <path\n d=\"M18.5 8.5V18.5H8.
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowDownRight/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowDownRight: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-down-right\">\n <path\n d=\"M18.5 8.5V18.5H8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M18 18L6 6\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowDownRight;\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,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpCC,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,CACpE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowDownRight","props","React","CentralIconBase","IconArrowDownRight_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var a=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,e)=>{for(var t in e)a(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of x(e))!B.call(r,o)&&o!==t&&a(r,o,{get:()=>e[o],enumerable:!(p=g(e,o))||p.enumerable});return r};var c=(r,e,t)=>(t=r!=null?f(h(r)):{},s(e||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t,r)),M=r=>s(a({},"__esModule",{value:!0}),r);var L={};I(L,{IconAura:()=>C,default:()=>y});module.exports=M(L);var n=c(require("react"));var l=c(require("react")),m=({children:r,size:e=24,ariaLabel:t,color:p,ariaHidden:o=!0,style:i,...u})=>l.default.createElement("svg",{...u,"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:p,...i}},t&&!o&&l.default.createElement("title",null,t),r);var C=r=>n.default.createElement(m,{...r,ariaLabel:"aura, enlighten"},n.default.createElement("circle",{cx:"12",cy:"10.5",r:"3",stroke:"currentColor"}),n.default.createElement("path",{d:"M6.5 21V21.5H17.5V21C17.5 17.9624 15.0376 15.5 12 15.5C8.96243 15.5 6.5 17.9624 6.5 21Z",stroke:"currentColor"}),n.default.createElement("path",{d:"M12.0002 1V4M5.89369 3.22228L7.82205 5.52041M2.64453 8.85042L5.59895 9.37137M3.77289 15.2502L6.37096 13.7502M18.1066 3.22228L16.1783 5.52041M21.3558 8.85042L18.4014 9.37137M20.2274 15.2502L17.6294 13.7502",stroke:"currentColor"})),y=C;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 <circle cx=\"12\" cy=\"10.5\" r=\"3\" stroke=\"currentColor\" />\n <path\n d=\"M6.5 21V21.5H17.5V21C17.5 17.9624 15.0376 15.5 12 15.5C8.96243 15.5 6.5 17.9624 6.5 21Z\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M12.0002 1V4M5.89369 3.22228L7.82205 5.52041M2.64453 8.85042L5.59895 9.37137M3.77289 15.2502L6.37096 13.7502M18.1066 3.22228L16.1783 5.52041M21.3558 8.85042L18.4014 9.37137M20.2274 15.2502L17.6294 13.7502\"\n stroke=\"currentColor\"\n />\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,UAAO,GAAG,KAAK,GAAG,OAAO,EAAE,IAAI,OAAO,eAAe,EACtD,EAAAA,QAAA,cAAC,QACC,EAAE,0FACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+MACF,OAAO,eACT,CACF,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 e from"react";import p from"react";var a=({children:t,size:r=24,ariaLabel:n,color:l,ariaHidden:o=!0,style:s,...c})=>p.createElement("svg",{...c,"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:l,...s}},n&&!o&&p.createElement("title",null,n),t);var m=t=>e.createElement(a,{...t,ariaLabel:"aura, enlighten"},e.createElement("circle",{cx:"12",cy:"10.5",r:"3",stroke:"currentColor"}),e.createElement("path",{d:"M6.5 21V21.5H17.5V21C17.5 17.9624 15.0376 15.5 12 15.5C8.96243 15.5 6.5 17.9624 6.5 21Z",stroke:"currentColor"}),e.createElement("path",{d:"M12.0002 1V4M5.89369 3.22228L7.82205 5.52041M2.64453 8.85042L5.59895 9.37137M3.77289 15.2502L6.37096 13.7502M18.1066 3.22228L16.1783 5.52041M21.3558 8.85042L18.4014 9.37137M20.2274 15.2502L17.6294 13.7502",stroke:"currentColor"})),g=m;export{m as IconAura,g 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 <circle cx=\"12\" cy=\"10.5\" r=\"3\" stroke=\"currentColor\" />\n <path\n d=\"M6.5 21V21.5H17.5V21C17.5 17.9624 15.0376 15.5 12 15.5C8.96243 15.5 6.5 17.9624 6.5 21Z\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M12.0002 1V4M5.89369 3.22228L7.82205 5.52041M2.64453 8.85042L5.59895 9.37137M3.77289 15.2502L6.37096 13.7502M18.1066 3.22228L16.1783 5.52041M21.3558 8.85042L18.4014 9.37137M20.2274 15.2502L17.6294 13.7502\"\n stroke=\"currentColor\"\n />\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,UAAO,GAAG,KAAK,GAAG,OAAO,EAAE,IAAI,OAAO,eAAe,EACtDA,EAAA,cAAC,QACC,EAAE,0FACF,OAAO,eACT,EACAA,EAAA,cAAC,QACC,EAAE,+MACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconAura","props","React","CentralIconBase","IconAura_default"]}
|
|
@@ -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
|
|
@@ -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"
|