@central-icons-react/square-outlined-radius-0-stroke-1 1.1.38 → 1.1.40
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/IconAnchor/index.d.ts +4 -0
- package/IconAnchor/index.js +2 -0
- package/IconAnchor/index.js.map +1 -0
- package/IconAnchor/index.mjs +2 -0
- package/IconAnchor/index.mjs.map +1 -0
- package/IconHook/index.d.ts +4 -0
- package/IconHook/index.js +2 -0
- package/IconHook/index.js.map +1 -0
- package/IconHook/index.mjs +2 -0
- package/IconHook/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/IconSwitchVoice/index.d.ts +4 -0
- package/IconSwitchVoice/index.js +2 -0
- package/IconSwitchVoice/index.js.map +1 -0
- package/IconSwitchVoice/index.mjs +2 -0
- package/IconSwitchVoice/index.mjs.map +1 -0
- package/README.md +4 -0
- package/icons/index.d.ts +4 -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 +12 -4
- package/index.d.ts +10 -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 h=Object.create;var a=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0})},l=(r,e,o,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of x(e))!B.call(r,t)&&t!==o&&a(r,t,{get:()=>e[t],enumerable:!(s=f(e,t))||s.enumerable});return r};var c=(r,e,o)=>(o=r!=null?h(g(r)):{},l(e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o,r)),V=r=>l(a({},"__esModule",{value:!0}),r);var w={};I(w,{IconAnchor:()=>i,default:()=>k});module.exports=V(w);var n=c(require("react"));var p=c(require("react")),C=({children:r,size:e=24,ariaLabel:o,color:s,ariaHidden:t=!0,style:m,...u})=>p.default.createElement("svg",{...u,"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,...m}},o&&!t&&p.default.createElement("title",null,o),r);var i=r=>n.default.createElement(C,{...r,ariaLabel:"anchor, webhooks"},n.default.createElement("circle",{cx:"12",cy:"6",r:"2.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M12 9.25V16.25C12 18.5972 13.9028 20.5 16.25 20.5C18.5972 20.5 20.5 18.5972 20.5 16.25V12.5L17.5 15.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M12 9V16.25C12 18.5972 10.0972 20.5 7.75 20.5C5.40279 20.5 3.5 18.5972 3.5 16.25V12.5L6.5 15.5",stroke:"currentColor",strokeLinecap:"square"})),k=i;0&&(module.exports={IconAnchor});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAnchor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconAnchor: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"anchor, webhooks\">\n <circle\n cx=\"12\"\n cy=\"6\"\n r=\"2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 9.25V16.25C12 18.5972 13.9028 20.5 16.25 20.5C18.5972 20.5 20.5 18.5972 20.5 16.25V12.5L17.5 15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 9V16.25C12 18.5972 10.0972 20.5 7.75 20.5C5.40279 20.5 3.5 18.5972 3.5 16.25V12.5L6.5 15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAnchor;\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,gBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpC,EAAAC,QAAA,cAAC,UACC,GAAG,KACH,GAAG,IACH,EAAE,MACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wGACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iGACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconAnchor_exports","__export","IconAnchor","IconAnchor_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconAnchor","props","React","CentralIconBase","IconAnchor_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:l,...c})=>s.createElement("svg",{...c,"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,...l}},n&&!t&&s.createElement("title",null,n),o);var C=o=>e.createElement(a,{...o,ariaLabel:"anchor, webhooks"},e.createElement("circle",{cx:"12",cy:"6",r:"2.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M12 9.25V16.25C12 18.5972 13.9028 20.5 16.25 20.5C18.5972 20.5 20.5 18.5972 20.5 16.25V12.5L17.5 15.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M12 9V16.25C12 18.5972 10.0972 20.5 7.75 20.5C5.40279 20.5 3.5 18.5972 3.5 16.25V12.5L6.5 15.5",stroke:"currentColor",strokeLinecap:"square"})),f=C;export{C as IconAnchor,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAnchor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconAnchor: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"anchor, webhooks\">\n <circle\n cx=\"12\"\n cy=\"6\"\n r=\"2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 9.25V16.25C12 18.5972 13.9028 20.5 16.25 20.5C18.5972 20.5 20.5 18.5972 20.5 16.25V12.5L17.5 15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12 9V16.25C12 18.5972 10.0972 20.5 7.75 20.5C5.40279 20.5 3.5 18.5972 3.5 16.25V12.5L6.5 15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAnchor;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpCC,EAAA,cAAC,UACC,GAAG,KACH,GAAG,IACH,EAAE,MACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,wGACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,iGACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconAnchor","props","React","CentralIconBase","IconAnchor_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var h=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 h(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?f(x(r)):{},l(e||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o,r)),y=r=>l(p({},"__esModule",{value:!0}),r);var P={};I(P,{IconHook:()=>m,default:()=>w});module.exports=y(P);var s=c(require("react"));var a=c(require("react")),i=({children:r,size:e=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:C,...u})=>a.default.createElement("svg",{...u,"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,...C}},o&&!t&&a.default.createElement("title",null,o),r);var m=r=>s.default.createElement(i,{...r,ariaLabel:"hook, phishing"},s.default.createElement("circle",{cx:"9.5",cy:"5.5",r:"3",stroke:"currentColor"}),s.default.createElement("path",{d:"M9.5 9V18C9.5 19.933 11.067 21.5 13 21.5C14.933 21.5 16.5 19.933 16.5 18V11.5L13.5 14.5",stroke:"currentColor",strokeLinecap:"square"})),w=m;0&&(module.exports={IconHook});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHook/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconHook: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"hook, phishing\">\n <circle cx=\"9.5\" cy=\"5.5\" r=\"3\" stroke=\"currentColor\" />\n <path\n d=\"M9.5 9V18C9.5 19.933 11.067 21.5 13 21.5C14.933 21.5 16.5 19.933 16.5 18V11.5L13.5 14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHook;\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,kBACpC,EAAAC,QAAA,cAAC,UAAO,GAAG,MAAM,GAAG,MAAM,EAAE,IAAI,OAAO,eAAe,EACtD,EAAAA,QAAA,cAAC,QACC,EAAE,0FACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconHook_exports","__export","IconHook","IconHook_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconHook","props","React","CentralIconBase","IconHook_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";var s=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:l,...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:a,...l}},n&&!o&&p.createElement("title",null,n),e);var i=e=>t.createElement(s,{...e,ariaLabel:"hook, phishing"},t.createElement("circle",{cx:"9.5",cy:"5.5",r:"3",stroke:"currentColor"}),t.createElement("path",{d:"M9.5 9V18C9.5 19.933 11.067 21.5 13 21.5C14.933 21.5 16.5 19.933 16.5 18V11.5L13.5 14.5",stroke:"currentColor",strokeLinecap:"square"})),g=i;export{i as IconHook,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHook/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconHook: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"hook, phishing\">\n <circle cx=\"9.5\" cy=\"5.5\" r=\"3\" stroke=\"currentColor\" />\n <path\n d=\"M9.5 9V18C9.5 19.933 11.067 21.5 13 21.5C14.933 21.5 16.5 19.933 16.5 18V11.5L13.5 14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHook;\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,kBACpCC,EAAA,cAAC,UAAO,GAAG,MAAM,GAAG,MAAM,EAAE,IAAI,OAAO,eAAe,EACtDA,EAAA,cAAC,QACC,EAAE,0FACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconHook","props","React","CentralIconBase","IconHook_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"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var h=Object.create;var s=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,V=Object.prototype.hasOwnProperty;var w=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!V.call(r,t)&&t!==e&&s(r,t,{get:()=>o[t],enumerable:!(p=d(o,t))||p.enumerable});return r};var c=(r,o,e)=>(e=r!=null?h(g(r)):{},l(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(s({},"__esModule",{value:!0}),r);var I={};w(I,{IconSwitchVoice:()=>C,default:()=>B});module.exports=x(I);var n=c(require("react"));var a=c(require("react")),i=({children:r,size:o=24,ariaLabel:e,color:p,ariaHidden:t=!0,style:m,...u})=>a.default.createElement("svg",{...u,"aria-hidden":t,role:t?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:p,...m}},e&&!t&&a.default.createElement("title",null,e),r);var C=r=>n.default.createElement(i,{...r,ariaLabel:"switch-voice, change-voice"},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"}),n.default.createElement("path",{d:"M11.4648 15.5333C11.488 15.3589 11.5 15.1808 11.5 15C11.5 12.7909 9.70914 11 7.5 11H6M3.53525 14.4667C3.512 14.6411 3.5 14.8192 3.5 15C3.5 17.2091 5.29086 19 7.5 19H9",stroke:"currentColor"}),n.default.createElement("path",{d:"M7.5 9L5.39062 10.9286L7.5 13",stroke:"currentColor"}),n.default.createElement("path",{d:"M7.39062 17L9.5 18.9286L7.39062 21",stroke:"currentColor"})),B=C;0&&(module.exports={IconSwitchVoice});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSwitchVoice/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSwitchVoice: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"switch-voice, change-voice\">\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 <path\n d=\"M11.4648 15.5333C11.488 15.3589 11.5 15.1808 11.5 15C11.5 12.7909 9.70914 11 7.5 11H6M3.53525 14.4667C3.512 14.6411 3.5 14.8192 3.5 15C3.5 17.2091 5.29086 19 7.5 19H9\"\n stroke=\"currentColor\"\n />\n <path d=\"M7.5 9L5.39062 10.9286L7.5 13\" stroke=\"currentColor\" />\n <path d=\"M7.39062 17L9.5 18.9286L7.39062 21\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconSwitchVoice;\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,qBAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,8BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,oDACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yKACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,gCAAgC,OAAO,eAAe,EAC9D,EAAAA,QAAA,cAAC,QAAK,EAAE,qCAAqC,OAAO,eAAe,CACrE,EAIGE,EAAQJ","names":["IconSwitchVoice_exports","__export","IconSwitchVoice","IconSwitchVoice_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconSwitchVoice","props","React","CentralIconBase","IconSwitchVoice_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";var s=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:l,...c})=>p.createElement("svg",{...c,"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:a,...l}},n&&!t&&p.createElement("title",null,n),e);var i=e=>o.createElement(s,{...e,ariaLabel:"switch-voice, change-voice"},o.createElement("path",{d:"M20.5 8.5V11M17.5 3.5V15.5M14.5 6.5V10M11.5 4.5V8",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement("path",{d:"M11.4648 15.5333C11.488 15.3589 11.5 15.1808 11.5 15C11.5 12.7909 9.70914 11 7.5 11H6M3.53525 14.4667C3.512 14.6411 3.5 14.8192 3.5 15C3.5 17.2091 5.29086 19 7.5 19H9",stroke:"currentColor"}),o.createElement("path",{d:"M7.5 9L5.39062 10.9286L7.5 13",stroke:"currentColor"}),o.createElement("path",{d:"M7.39062 17L9.5 18.9286L7.39062 21",stroke:"currentColor"})),d=i;export{i as IconSwitchVoice,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSwitchVoice/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSwitchVoice: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"switch-voice, change-voice\">\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 <path\n d=\"M11.4648 15.5333C11.488 15.3589 11.5 15.1808 11.5 15C11.5 12.7909 9.70914 11 7.5 11H6M3.53525 14.4667C3.512 14.6411 3.5 14.8192 3.5 15C3.5 17.2091 5.29086 19 7.5 19H9\"\n stroke=\"currentColor\"\n />\n <path d=\"M7.5 9L5.39062 10.9286L7.5 13\" stroke=\"currentColor\" />\n <path d=\"M7.39062 17L9.5 18.9286L7.39062 21\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconSwitchVoice;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,8BACpCC,EAAA,cAAC,QACC,EAAE,oDACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,yKACF,OAAO,eACT,EACAA,EAAA,cAAC,QAAK,EAAE,gCAAgC,OAAO,eAAe,EAC9DA,EAAA,cAAC,QAAK,EAAE,qCAAqC,OAAO,eAAe,CACrE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSwitchVoice","props","React","CentralIconBase","IconSwitchVoice_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
|
|
@@ -219,6 +220,7 @@ Below is a complete list of available icons:
|
|
|
219
220
|
- IconSparklesTwo2
|
|
220
221
|
- IconSpeachToText
|
|
221
222
|
- IconStarWand
|
|
223
|
+
- IconSwitchVoice
|
|
222
224
|
- IconTextToImage
|
|
223
225
|
- IconTextToSpeach
|
|
224
226
|
- IconVisualIntelligence
|
|
@@ -415,6 +417,7 @@ Below is a complete list of available icons:
|
|
|
415
417
|
|
|
416
418
|
### Code
|
|
417
419
|
|
|
420
|
+
- IconAnchor
|
|
418
421
|
- IconAnimation
|
|
419
422
|
- IconAnimationAuto
|
|
420
423
|
- IconAnimationEase
|
|
@@ -445,6 +448,7 @@ Below is a complete list of available icons:
|
|
|
445
448
|
- IconDraft
|
|
446
449
|
- IconForkCode
|
|
447
450
|
- IconHammer
|
|
451
|
+
- IconHook
|
|
448
452
|
- IconPullRequest
|
|
449
453
|
- IconPush
|
|
450
454
|
- IconRequestClosed
|
package/icons/index.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export type CentralIconName =
|
|
|
31
31
|
| "IconAlt"
|
|
32
32
|
| "IconAmericanFootball"
|
|
33
33
|
| "IconAnalytics"
|
|
34
|
+
| "IconAnchor"
|
|
34
35
|
| "IconAnchor1"
|
|
35
36
|
| "IconAnchor2"
|
|
36
37
|
| "IconAnimation"
|
|
@@ -804,6 +805,7 @@ export type CentralIconName =
|
|
|
804
805
|
| "IconHomePersonalFeed"
|
|
805
806
|
| "IconHomeRoof"
|
|
806
807
|
| "IconHomeRoundDoor"
|
|
808
|
+
| "IconHook"
|
|
807
809
|
| "IconHorizontalAlignmentBottom"
|
|
808
810
|
| "IconHorizontalAlignmentCenter"
|
|
809
811
|
| "IconHorizontalAlignmentTop"
|
|
@@ -900,6 +902,7 @@ export type CentralIconName =
|
|
|
900
902
|
| "IconLiveActivity"
|
|
901
903
|
| "IconLiveFull"
|
|
902
904
|
| "IconLiveNoSignal"
|
|
905
|
+
| "IconLiveVoiceTranslate"
|
|
903
906
|
| "IconLiveWeak"
|
|
904
907
|
| "IconLoader"
|
|
905
908
|
| "IconLoadingCircle"
|
|
@@ -1397,6 +1400,7 @@ export type CentralIconName =
|
|
|
1397
1400
|
| "IconSupport"
|
|
1398
1401
|
| "IconSurfing"
|
|
1399
1402
|
| "IconSushi"
|
|
1403
|
+
| "IconSwitchVoice"
|
|
1400
1404
|
| "IconSword"
|
|
1401
1405
|
| "IconTable"
|
|
1402
1406
|
| "IconTactics1"
|