@central-icons-react-native/square-filled-radius-0-stroke-1.5 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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAnchor: FC<CentralIconBaseProps>;
4
+ export default IconAnchor;
@@ -0,0 +1,2 @@
1
+ "use strict";var B=Object.create;var e=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)e(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of i(o))!x.call(r,C)&&C!==t&&e(r,C,{get:()=>o[C],enumerable:!(p=I(o,C))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(u(r)):{},a(o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(e({},"__esModule",{value:!0}),r);var h={};P(h,{IconAnchor:()=>L,default:()=>V});module.exports=g(h);var n=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(s.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),L=r=>n.default.createElement(c,{...r},n.default.createElement(f.Path,{d:"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.17545 14.3224 9.57452 12.75 9.91797V16.125C12.75 17.989 14.261 19.5 16.125 19.5C17.989 19.5 19.5 17.989 19.5 16.125V14.6699L18.498 15.5605L17.9375 16.0586L16.9414 14.9375L17.502 14.4395L21 11.3301V16.125C21 18.8174 18.8174 21 16.125 21C14.3871 21 12.8632 20.0896 12 18.7207C11.1368 20.0896 9.6129 21 7.875 21C5.18261 21 3 18.8174 3 16.125V11.3301L6.49805 14.4395L7.05859 14.9375L6.0625 16.0586L5.50195 15.5605L4.5 14.6699V16.125C4.5 17.989 6.01104 19.5 7.875 19.5C9.73896 19.5 11.25 17.989 11.25 16.125V9.91797C9.67756 9.57452 8.5 8.17545 8.5 6.5C8.5 4.567 10.067 3 12 3ZM12 4.5C10.8954 4.5 10 5.39543 10 6.5C10 7.60457 10.8954 8.5 12 8.5C13.1046 8.5 14 7.60457 14 6.5C14 5.39543 13.1046 4.5 12 4.5Z",fill:"currentColor"})),V=L;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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAnchor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.17545 14.3224 9.57452 12.75 9.91797V16.125C12.75 17.989 14.261 19.5 16.125 19.5C17.989 19.5 19.5 17.989 19.5 16.125V14.6699L18.498 15.5605L17.9375 16.0586L16.9414 14.9375L17.502 14.4395L21 11.3301V16.125C21 18.8174 18.8174 21 16.125 21C14.3871 21 12.8632 20.0896 12 18.7207C11.1368 20.0896 9.6129 21 7.875 21C5.18261 21 3 18.8174 3 16.125V11.3301L6.49805 14.4395L7.05859 14.9375L6.0625 16.0586L5.50195 15.5605L4.5 14.6699V16.125C4.5 17.989 6.01104 19.5 7.875 19.5C9.73896 19.5 11.25 17.989 11.25 16.125V9.91797C9.67756 9.57452 8.5 8.17545 8.5 6.5C8.5 4.567 10.067 3 12 3ZM12 4.5C10.8954 4.5 10 5.39543 10 6.5C10 7.60457 10.8954 8.5 12 8.5C13.1046 8.5 14 7.60457 14 6.5C14 5.39543 13.1046 4.5 12 4.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAnchor;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,gBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,wuBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAnchor_exports","__export","IconAnchor","IconAnchor_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAnchor","props","React","CentralIconBase","IconAnchor_default"]}
@@ -0,0 +1,2 @@
1
+ import C from"react";import n from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...e})=>n.createElement(p,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var l=o=>C.createElement(t,{...o},C.createElement(a,{d:"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.17545 14.3224 9.57452 12.75 9.91797V16.125C12.75 17.989 14.261 19.5 16.125 19.5C17.989 19.5 19.5 17.989 19.5 16.125V14.6699L18.498 15.5605L17.9375 16.0586L16.9414 14.9375L17.502 14.4395L21 11.3301V16.125C21 18.8174 18.8174 21 16.125 21C14.3871 21 12.8632 20.0896 12 18.7207C11.1368 20.0896 9.6129 21 7.875 21C5.18261 21 3 18.8174 3 16.125V11.3301L6.49805 14.4395L7.05859 14.9375L6.0625 16.0586L5.50195 15.5605L4.5 14.6699V16.125C4.5 17.989 6.01104 19.5 7.875 19.5C9.73896 19.5 11.25 17.989 11.25 16.125V9.91797C9.67756 9.57452 8.5 8.17545 8.5 6.5C8.5 4.567 10.067 3 12 3ZM12 4.5C10.8954 4.5 10 5.39543 10 6.5C10 7.60457 10.8954 8.5 12 8.5C13.1046 8.5 14 7.60457 14 6.5C14 5.39543 13.1046 4.5 12 4.5Z",fill:"currentColor"})),x=l;export{l as IconAnchor,x 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAnchor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.17545 14.3224 9.57452 12.75 9.91797V16.125C12.75 17.989 14.261 19.5 16.125 19.5C17.989 19.5 19.5 17.989 19.5 16.125V14.6699L18.498 15.5605L17.9375 16.0586L16.9414 14.9375L17.502 14.4395L21 11.3301V16.125C21 18.8174 18.8174 21 16.125 21C14.3871 21 12.8632 20.0896 12 18.7207C11.1368 20.0896 9.6129 21 7.875 21C5.18261 21 3 18.8174 3 16.125V11.3301L6.49805 14.4395L7.05859 14.9375L6.0625 16.0586L5.50195 15.5605L4.5 14.6699V16.125C4.5 17.989 6.01104 19.5 7.875 19.5C9.73896 19.5 11.25 17.989 11.25 16.125V9.91797C9.67756 9.57452 8.5 8.17545 8.5 6.5C8.5 4.567 10.067 3 12 3ZM12 4.5C10.8954 4.5 10 5.39543 10 6.5C10 7.60457 10.8954 8.5 12 8.5C13.1046 8.5 14 7.60457 14 6.5C14 5.39543 13.1046 4.5 12 4.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAnchor;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,wuBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconAnchor","props","React","CentralIconBase","IconAnchor_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconHook: FC<CentralIconBaseProps>;
4
+ export default IconHook;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of I(r))!v.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(p=B(r,t))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(n({},"__esModule",{value:!0}),o);var h={};x(h,{IconHook:()=>i,default:()=>g});module.exports=P(h);var C=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>C.default.createElement(c,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M9.25 2C11.3211 2 13 3.67893 13 5.75C13 7.56421 11.7117 9.07734 10 9.4248V17.5C10 19.1569 11.3431 20.5 13 20.5C14.6569 20.5 16 19.1569 16 17.5V13.8105L13.75 16.0605L12.6895 15L17.5 10.1895V17.5C17.5 19.9853 15.4853 22 13 22C10.5147 22 8.5 19.9853 8.5 17.5V9.4248C6.78834 9.07734 5.5 7.56421 5.5 5.75C5.5 3.67893 7.17893 2 9.25 2ZM9.25 3.5C8.00736 3.5 7 4.50736 7 5.75C7 6.99264 8.00736 8 9.25 8C10.4926 8 11.5 6.99264 11.5 5.75C11.5 4.50736 10.4926 3.5 9.25 3.5Z",fill:"currentColor"})),g=i;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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconHook: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M9.25 2C11.3211 2 13 3.67893 13 5.75C13 7.56421 11.7117 9.07734 10 9.4248V17.5C10 19.1569 11.3431 20.5 13 20.5C14.6569 20.5 16 19.1569 16 17.5V13.8105L13.75 16.0605L12.6895 15L17.5 10.1895V17.5C17.5 19.9853 15.4853 22 13 22C10.5147 22 8.5 19.9853 8.5 17.5V9.4248C6.78834 9.07734 5.5 7.56421 5.5 5.75C5.5 3.67893 7.17893 2 9.25 2ZM9.25 3.5C8.00736 3.5 7 4.50736 7 5.75C7 6.99264 8.00736 8 9.25 8C10.4926 8 11.5 6.99264 11.5 5.75C11.5 4.50736 10.4926 3.5 9.25 3.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHook;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,cAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,idACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconHook_exports","__export","IconHook","IconHook_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconHook","props","React","CentralIconBase","IconHook_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>C.createElement(p,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M9.25 2C11.3211 2 13 3.67893 13 5.75C13 7.56421 11.7117 9.07734 10 9.4248V17.5C10 19.1569 11.3431 20.5 13 20.5C14.6569 20.5 16 19.1569 16 17.5V13.8105L13.75 16.0605L12.6895 15L17.5 10.1895V17.5C17.5 19.9853 15.4853 22 13 22C10.5147 22 8.5 19.9853 8.5 17.5V9.4248C6.78834 9.07734 5.5 7.56421 5.5 5.75C5.5 3.67893 7.17893 2 9.25 2ZM9.25 3.5C8.00736 3.5 7 4.50736 7 5.75C7 6.99264 8.00736 8 9.25 8C10.4926 8 11.5 6.99264 11.5 5.75C11.5 4.50736 10.4926 3.5 9.25 3.5Z",fill:"currentColor"})),v=a;export{a as IconHook,v 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconHook: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M9.25 2C11.3211 2 13 3.67893 13 5.75C13 7.56421 11.7117 9.07734 10 9.4248V17.5C10 19.1569 11.3431 20.5 13 20.5C14.6569 20.5 16 19.1569 16 17.5V13.8105L13.75 16.0605L12.6895 15L17.5 10.1895V17.5C17.5 19.9853 15.4853 22 13 22C10.5147 22 8.5 19.9853 8.5 17.5V9.4248C6.78834 9.07734 5.5 7.56421 5.5 5.75C5.5 3.67893 7.17893 2 9.25 2ZM9.25 3.5C8.00736 3.5 7 4.50736 7 5.75C7 6.99264 8.00736 8 9.25 8C10.4926 8 11.5 6.99264 11.5 5.75C11.5 4.50736 10.4926 3.5 9.25 3.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHook;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,idACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconHook","props","React","CentralIconBase","IconHook_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconLiveVoiceTranslate: FC<CentralIconBaseProps>;
4
+ export default IconLiveVoiceTranslate;
@@ -0,0 +1,2 @@
1
+ "use strict";var V=Object.create;var C=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)C(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of u(o))!B.call(r,l)&&l!==n&&C(r,l,{get:()=>o[l],enumerable:!(p=c(o,l))||p.enumerable});return r};var a=(r,o,n)=>(n=r!=null?V(L(r)):{},f(o||!r||!r.__esModule?C(n,"default",{value:r,enumerable:!0}):n,r)),d=r=>f(C({},"__esModule",{value:!0}),r);var P={};I(P,{IconLiveVoiceTranslate:()=>H,default:()=>x});module.exports=d(P);var e=a(require("react"));var i=a(require("react")),m=require("react-native-svg"),s=({children:r,size:o=24,...n})=>i.default.createElement(m.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),H=r=>e.default.createElement(s,{...r},e.default.createElement(t.Path,{d:"M8 11.5H12.5V13H10.9004C10.5628 15.0903 9.84711 16.8048 8.6543 18.1357C8.5895 18.208 8.52237 18.278 8.45508 18.3477C9.20236 18.8512 10.0918 19.2437 11.1475 19.5254L11.8721 19.7188L11.4854 21.168L10.7607 20.9746C9.41834 20.6164 8.25625 20.0841 7.27637 19.3506C6.20809 20.0977 4.92269 20.6311 3.41992 20.9805L2.68945 21.1504L2.34961 19.6895L3.08008 19.5195C4.29484 19.2372 5.30137 18.8337 6.13184 18.3105C5.30213 17.396 4.68064 16.2889 4.24316 14.9893L4.00391 14.2783L5.42578 13.7998L5.66504 14.5107C6.05792 15.6779 6.60385 16.62 7.30957 17.375C7.3878 17.2964 7.46448 17.2169 7.53809 17.1348C8.44954 16.1177 9.06 14.77 9.37793 13H2V11.5H6.5V10H8V11.5Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M18.5 3V16.5H17V3H18.5Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M22 8V11.5H20.5V8H22Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M15 6V9.5H13.5V6H15Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M11.5 4V8H10V4H11.5Z",fill:"currentColor"})),x=H;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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLiveVoiceTranslate: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 11.5H12.5V13H10.9004C10.5628 15.0903 9.84711 16.8048 8.6543 18.1357C8.5895 18.208 8.52237 18.278 8.45508 18.3477C9.20236 18.8512 10.0918 19.2437 11.1475 19.5254L11.8721 19.7188L11.4854 21.168L10.7607 20.9746C9.41834 20.6164 8.25625 20.0841 7.27637 19.3506C6.20809 20.0977 4.92269 20.6311 3.41992 20.9805L2.68945 21.1504L2.34961 19.6895L3.08008 19.5195C4.29484 19.2372 5.30137 18.8337 6.13184 18.3105C5.30213 17.396 4.68064 16.2889 4.24316 14.9893L4.00391 14.2783L5.42578 13.7998L5.66504 14.5107C6.05792 15.6779 6.60385 16.62 7.30957 17.375C7.3878 17.2964 7.46448 17.2169 7.53809 17.1348C8.44954 16.1177 9.06 14.77 9.37793 13H2V11.5H6.5V10H8V11.5Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M18.5 3V16.5H17V3H18.5Z\" fill=\"currentColor\" />\n <Path d=\"M22 8V11.5H20.5V8H22Z\" fill=\"currentColor\" />\n <Path d=\"M15 6V9.5H13.5V6H15Z\" fill=\"currentColor\" />\n <Path d=\"M11.5 4V8H10V4H11.5Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconLiveVoiceTranslate;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,4BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4oBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,EACpD,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,EACnD,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,CACrD,EAIGE,EAAQJ","names":["IconLiveVoiceTranslate_exports","__export","IconLiveVoiceTranslate","IconLiveVoiceTranslate_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconLiveVoiceTranslate","props","React","CentralIconBase","IconLiveVoiceTranslate_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:e,size:r=24,...l})=>C.createElement(p,{...l,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var f=e=>o.createElement(t,{...e},o.createElement(n,{d:"M8 11.5H12.5V13H10.9004C10.5628 15.0903 9.84711 16.8048 8.6543 18.1357C8.5895 18.208 8.52237 18.278 8.45508 18.3477C9.20236 18.8512 10.0918 19.2437 11.1475 19.5254L11.8721 19.7188L11.4854 21.168L10.7607 20.9746C9.41834 20.6164 8.25625 20.0841 7.27637 19.3506C6.20809 20.0977 4.92269 20.6311 3.41992 20.9805L2.68945 21.1504L2.34961 19.6895L3.08008 19.5195C4.29484 19.2372 5.30137 18.8337 6.13184 18.3105C5.30213 17.396 4.68064 16.2889 4.24316 14.9893L4.00391 14.2783L5.42578 13.7998L5.66504 14.5107C6.05792 15.6779 6.60385 16.62 7.30957 17.375C7.3878 17.2964 7.46448 17.2169 7.53809 17.1348C8.44954 16.1177 9.06 14.77 9.37793 13H2V11.5H6.5V10H8V11.5Z",fill:"currentColor"}),o.createElement(n,{d:"M18.5 3V16.5H17V3H18.5Z",fill:"currentColor"}),o.createElement(n,{d:"M22 8V11.5H20.5V8H22Z",fill:"currentColor"}),o.createElement(n,{d:"M15 6V9.5H13.5V6H15Z",fill:"currentColor"}),o.createElement(n,{d:"M11.5 4V8H10V4H11.5Z",fill:"currentColor"})),B=f;export{f as IconLiveVoiceTranslate,B 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLiveVoiceTranslate: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 11.5H12.5V13H10.9004C10.5628 15.0903 9.84711 16.8048 8.6543 18.1357C8.5895 18.208 8.52237 18.278 8.45508 18.3477C9.20236 18.8512 10.0918 19.2437 11.1475 19.5254L11.8721 19.7188L11.4854 21.168L10.7607 20.9746C9.41834 20.6164 8.25625 20.0841 7.27637 19.3506C6.20809 20.0977 4.92269 20.6311 3.41992 20.9805L2.68945 21.1504L2.34961 19.6895L3.08008 19.5195C4.29484 19.2372 5.30137 18.8337 6.13184 18.3105C5.30213 17.396 4.68064 16.2889 4.24316 14.9893L4.00391 14.2783L5.42578 13.7998L5.66504 14.5107C6.05792 15.6779 6.60385 16.62 7.30957 17.375C7.3878 17.2964 7.46448 17.2169 7.53809 17.1348C8.44954 16.1177 9.06 14.77 9.37793 13H2V11.5H6.5V10H8V11.5Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M18.5 3V16.5H17V3H18.5Z\" fill=\"currentColor\" />\n <Path d=\"M22 8V11.5H20.5V8H22Z\" fill=\"currentColor\" />\n <Path d=\"M15 6V9.5H13.5V6H15Z\" fill=\"currentColor\" />\n <Path d=\"M11.5 4V8H10V4H11.5Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconLiveVoiceTranslate;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4oBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,0BAA0B,KAAK,eAAe,EACtDG,EAAA,cAACH,EAAA,CAAK,EAAE,wBAAwB,KAAK,eAAe,EACpDG,EAAA,cAACH,EAAA,CAAK,EAAE,uBAAuB,KAAK,eAAe,EACnDG,EAAA,cAACH,EAAA,CAAK,EAAE,uBAAuB,KAAK,eAAe,CACrD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconLiveVoiceTranslate","props","React","CentralIconBase","IconLiveVoiceTranslate_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconSwitchVoice: FC<CentralIconBaseProps>;
4
+ export default IconSwitchVoice;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var C=Object.defineProperty;var a=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)C(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of d(o))!H.call(r,l)&&l!==n&&C(r,l,{get:()=>o[l],enumerable:!(p=a(o,l))||p.enumerable});return r};var i=(r,o,n)=>(n=r!=null?u(B(r)):{},f(o||!r||!r.__esModule?C(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>f(C({},"__esModule",{value:!0}),r);var g={};I(g,{IconSwitchVoice:()=>s,default:()=>P});module.exports=x(g);var t=i(require("react"));var m=i(require("react")),V=require("react-native-svg"),c=({children:r,size:o=24,...n})=>m.default.createElement(V.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var e=require("react-native-svg"),s=r=>t.default.createElement(c,{...r},t.default.createElement(e.Path,{d:"M4.02637 14.0986C4.00894 14.2295 4 14.3637 4 14.5C4 15.9621 5.04614 17.1793 6.43066 17.4453V15L9.85938 18.25L6.43066 21.5V18.9619C4.21432 18.6819 2.5 16.7923 2.5 14.5C2.5 14.2974 2.51391 14.0976 2.54004 13.9014L4.02637 14.0986Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M18 16.5H16.5V3H18V16.5Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M7.56934 10.0371C9.78574 10.317 11.5 12.2076 11.5 14.5C11.5 14.7026 11.4861 14.9024 11.46 15.0986L9.97363 14.9014C9.99106 14.7705 10 14.6363 10 14.5C10 13.0378 8.95395 11.8197 7.56934 11.5537V14L4.14062 10.75L7.56934 7.5V10.0371Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M14.5 11.5H13V6H14.5V11.5Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M21.5 11.5H20V8H21.5V11.5Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M11 8H9.5V4H11V8Z",fill:"currentColor"})),P=s;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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSwitchVoice: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.02637 14.0986C4.00894 14.2295 4 14.3637 4 14.5C4 15.9621 5.04614 17.1793 6.43066 17.4453V15L9.85938 18.25L6.43066 21.5V18.9619C4.21432 18.6819 2.5 16.7923 2.5 14.5C2.5 14.2974 2.51391 14.0976 2.54004 13.9014L4.02637 14.0986Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M18 16.5H16.5V3H18V16.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M7.56934 10.0371C9.78574 10.317 11.5 12.2076 11.5 14.5C11.5 14.7026 11.4861 14.9024 11.46 15.0986L9.97363 14.9014C9.99106 14.7705 10 14.6363 10 14.5C10 13.0378 8.95395 11.8197 7.56934 11.5537V14L4.14062 10.75L7.56934 7.5V10.0371Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M14.5 11.5H13V6H14.5V11.5Z\" fill=\"currentColor\" />\n <Path d=\"M21.5 11.5H20V8H21.5V11.5Z\" fill=\"currentColor\" />\n <Path d=\"M11 8H9.5V4H11V8Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconSwitchVoice;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,sOACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,2BAA2B,KAAK,eAAe,EACvD,EAAAA,QAAA,cAAC,QACC,EAAE,wOACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,6BAA6B,KAAK,eAAe,EACzD,EAAAA,QAAA,cAAC,QAAK,EAAE,6BAA6B,KAAK,eAAe,EACzD,EAAAA,QAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,CAClD,EAIGE,EAAQJ","names":["IconSwitchVoice_exports","__export","IconSwitchVoice","IconSwitchVoice_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSwitchVoice","props","React","CentralIconBase","IconSwitchVoice_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:t,size:o=24,...l})=>C.createElement(p,{...l,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{Path as n}from"react-native-svg";var f=t=>r.createElement(e,{...t},r.createElement(n,{d:"M4.02637 14.0986C4.00894 14.2295 4 14.3637 4 14.5C4 15.9621 5.04614 17.1793 6.43066 17.4453V15L9.85938 18.25L6.43066 21.5V18.9619C4.21432 18.6819 2.5 16.7923 2.5 14.5C2.5 14.2974 2.51391 14.0976 2.54004 13.9014L4.02637 14.0986Z",fill:"currentColor"}),r.createElement(n,{d:"M18 16.5H16.5V3H18V16.5Z",fill:"currentColor"}),r.createElement(n,{d:"M7.56934 10.0371C9.78574 10.317 11.5 12.2076 11.5 14.5C11.5 14.7026 11.4861 14.9024 11.46 15.0986L9.97363 14.9014C9.99106 14.7705 10 14.6363 10 14.5C10 13.0378 8.95395 11.8197 7.56934 11.5537V14L4.14062 10.75L7.56934 7.5V10.0371Z",fill:"currentColor"}),r.createElement(n,{d:"M14.5 11.5H13V6H14.5V11.5Z",fill:"currentColor"}),r.createElement(n,{d:"M21.5 11.5H20V8H21.5V11.5Z",fill:"currentColor"}),r.createElement(n,{d:"M11 8H9.5V4H11V8Z",fill:"currentColor"})),H=f;export{f as IconSwitchVoice,H 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSwitchVoice: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.02637 14.0986C4.00894 14.2295 4 14.3637 4 14.5C4 15.9621 5.04614 17.1793 6.43066 17.4453V15L9.85938 18.25L6.43066 21.5V18.9619C4.21432 18.6819 2.5 16.7923 2.5 14.5C2.5 14.2974 2.51391 14.0976 2.54004 13.9014L4.02637 14.0986Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M18 16.5H16.5V3H18V16.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M7.56934 10.0371C9.78574 10.317 11.5 12.2076 11.5 14.5C11.5 14.7026 11.4861 14.9024 11.46 15.0986L9.97363 14.9014C9.99106 14.7705 10 14.6363 10 14.5C10 13.0378 8.95395 11.8197 7.56934 11.5537V14L4.14062 10.75L7.56934 7.5V10.0371Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M14.5 11.5H13V6H14.5V11.5Z\" fill=\"currentColor\" />\n <Path d=\"M21.5 11.5H20V8H21.5V11.5Z\" fill=\"currentColor\" />\n <Path d=\"M11 8H9.5V4H11V8Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconSwitchVoice;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,sOACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,2BAA2B,KAAK,eAAe,EACvDG,EAAA,cAACH,EAAA,CACC,EAAE,wOACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,6BAA6B,KAAK,eAAe,EACzDG,EAAA,cAACH,EAAA,CAAK,EAAE,6BAA6B,KAAK,eAAe,EACzDG,EAAA,cAACH,EAAA,CAAK,EAAE,oBAAoB,KAAK,eAAe,CAClD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSwitchVoice","props","React","CentralIconBase","IconSwitchVoice_default"]}
package/README.md CHANGED
@@ -162,6 +162,7 @@ Below is a complete list of available icons:
162
162
  - IconImagine
163
163
  - IconImagineAi
164
164
  - IconListSparkle
165
+ - IconLiveVoiceTranslate
165
166
  - IconMagicBook
166
167
  - IconMagicEdit
167
168
  - IconMagicWand
@@ -185,6 +186,7 @@ Below is a complete list of available icons:
185
186
  - IconSparklesTwo2
186
187
  - IconSpeachToText
187
188
  - IconStarWand
189
+ - IconSwitchVoice
188
190
  - IconTextToImage
189
191
  - IconTextToSpeach
190
192
  - IconVisualIntelligence
@@ -381,6 +383,7 @@ Below is a complete list of available icons:
381
383
 
382
384
  ### Code
383
385
 
386
+ - IconAnchor
384
387
  - IconAnimation
385
388
  - IconAnimationAuto
386
389
  - IconAnimationEase
@@ -411,6 +414,7 @@ Below is a complete list of available icons:
411
414
  - IconDraft
412
415
  - IconForkCode
413
416
  - IconHammer
417
+ - IconHook
414
418
  - IconPullRequest
415
419
  - IconPush
416
420
  - IconRequestClosed
@@ -448,6 +448,20 @@
448
448
  "packageName": "square-filled-radius-0-stroke-1.5",
449
449
  "componentName": "IconAnalytics"
450
450
  },
451
+ {
452
+ "category": "Code",
453
+ "svg": "<path d=\"M12 3C13.933 3 15.5 4.567 15.5 6.5C15.5 8.17545 14.3224 9.57452 12.75 9.91797V16.125C12.75 17.989 14.261 19.5 16.125 19.5C17.989 19.5 19.5 17.989 19.5 16.125V14.6699L18.498 15.5605L17.9375 16.0586L16.9414 14.9375L17.502 14.4395L21 11.3301V16.125C21 18.8174 18.8174 21 16.125 21C14.3871 21 12.8632 20.0896 12 18.7207C11.1368 20.0896 9.6129 21 7.875 21C5.18261 21 3 18.8174 3 16.125V11.3301L6.49805 14.4395L7.05859 14.9375L6.0625 16.0586L5.50195 15.5605L4.5 14.6699V16.125C4.5 17.989 6.01104 19.5 7.875 19.5C9.73896 19.5 11.25 17.989 11.25 16.125V9.91797C9.67756 9.57452 8.5 8.17545 8.5 6.5C8.5 4.567 10.067 3 12 3ZM12 4.5C10.8954 4.5 10 5.39543 10 6.5C10 7.60457 10.8954 8.5 12 8.5C13.1046 8.5 14 7.60457 14 6.5C14 5.39543 13.1046 4.5 12 4.5Z\" fill=\"currentColor\"/>",
454
+ "iconName": "anchor, webhooks",
455
+ "variant": {
456
+ "join": "square",
457
+ "filled": "on",
458
+ "radius": "0",
459
+ "stroke": "1.5"
460
+ },
461
+ "createdAt": "2025-11-24T12:02:01.057168+00:00",
462
+ "packageName": "square-filled-radius-0-stroke-1.5",
463
+ "componentName": "IconAnchor"
464
+ },
451
465
  {
452
466
  "category": "Interface General",
453
467
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7498 8.91949C14.3225 8.57621 15.5 7.17561 15.5 5.5C15.5 3.567 13.933 2 12 2C10.067 2 8.5 3.567 8.5 5.5C8.5 7.17551 9.67733 8.57603 11.2498 8.91942V20.5H6.06354L3.74775 12.5H6.99985V11H1.75195L4.93616 22H19.0635L22.2477 11H16.9998V12.5H20.252L17.9362 20.5H12.7498V8.91949ZM10 5.5C10 4.39543 10.8954 3.5 12 3.5C13.1046 3.5 14 4.39543 14 5.5C14 6.60457 13.1046 7.5 12 7.5C10.8954 7.5 10 6.60457 10 5.5Z\" fill=\"currentColor\"/>",
@@ -11270,6 +11284,20 @@
11270
11284
  "packageName": "square-filled-radius-0-stroke-1.5",
11271
11285
  "componentName": "IconHomeRoundDoor"
11272
11286
  },
11287
+ {
11288
+ "category": "Code",
11289
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.25 2C11.3211 2 13 3.67893 13 5.75C13 7.56421 11.7117 9.07734 10 9.4248V17.5C10 19.1569 11.3431 20.5 13 20.5C14.6569 20.5 16 19.1569 16 17.5V13.8105L13.75 16.0605L12.6895 15L17.5 10.1895V17.5C17.5 19.9853 15.4853 22 13 22C10.5147 22 8.5 19.9853 8.5 17.5V9.4248C6.78834 9.07734 5.5 7.56421 5.5 5.75C5.5 3.67893 7.17893 2 9.25 2ZM9.25 3.5C8.00736 3.5 7 4.50736 7 5.75C7 6.99264 8.00736 8 9.25 8C10.4926 8 11.5 6.99264 11.5 5.75C11.5 4.50736 10.4926 3.5 9.25 3.5Z\" fill=\"currentColor\"/>",
11290
+ "iconName": "hook, phishing",
11291
+ "variant": {
11292
+ "join": "square",
11293
+ "filled": "on",
11294
+ "radius": "0",
11295
+ "stroke": "1.5"
11296
+ },
11297
+ "createdAt": "2025-11-24T12:02:01.057168+00:00",
11298
+ "packageName": "square-filled-radius-0-stroke-1.5",
11299
+ "componentName": "IconHook"
11300
+ },
11273
11301
  {
11274
11302
  "category": "Typography",
11275
11303
  "svg": "<path d=\"M6 3V18H11V3H6Z\" fill=\"currentColor\"/><path d=\"M13 7V18H18V7H13Z\" fill=\"currentColor\"/><path d=\"M3 19.5V21H21V19.5H3Z\" fill=\"currentColor\"/>",
@@ -12614,6 +12642,20 @@
12614
12642
  "packageName": "square-filled-radius-0-stroke-1.5",
12615
12643
  "componentName": "IconLiveNoSignal"
12616
12644
  },
12645
+ {
12646
+ "category": "AI & Magic",
12647
+ "svg": "<path d=\"M8 11.5H12.5V13H10.9004C10.5628 15.0903 9.84711 16.8048 8.6543 18.1357C8.5895 18.208 8.52237 18.278 8.45508 18.3477C9.20236 18.8512 10.0918 19.2437 11.1475 19.5254L11.8721 19.7188L11.4854 21.168L10.7607 20.9746C9.41834 20.6164 8.25625 20.0841 7.27637 19.3506C6.20809 20.0977 4.92269 20.6311 3.41992 20.9805L2.68945 21.1504L2.34961 19.6895L3.08008 19.5195C4.29484 19.2372 5.30137 18.8337 6.13184 18.3105C5.30213 17.396 4.68064 16.2889 4.24316 14.9893L4.00391 14.2783L5.42578 13.7998L5.66504 14.5107C6.05792 15.6779 6.60385 16.62 7.30957 17.375C7.3878 17.2964 7.46448 17.2169 7.53809 17.1348C8.44954 16.1177 9.06 14.77 9.37793 13H2V11.5H6.5V10H8V11.5Z\" fill=\"currentColor\"/><path d=\"M18.5 3V16.5H17V3H18.5Z\" fill=\"currentColor\"/><path d=\"M22 8V11.5H20.5V8H22Z\" fill=\"currentColor\"/><path d=\"M15 6V9.5H13.5V6H15Z\" fill=\"currentColor\"/><path d=\"M11.5 4V8H10V4H11.5Z\" fill=\"currentColor\"/>",
12648
+ "iconName": "live-voice-translate",
12649
+ "variant": {
12650
+ "join": "square",
12651
+ "filled": "on",
12652
+ "radius": "0",
12653
+ "stroke": "1.5"
12654
+ },
12655
+ "createdAt": "2025-11-21T15:01:55.597393+00:00",
12656
+ "packageName": "square-filled-radius-0-stroke-1.5",
12657
+ "componentName": "IconLiveVoiceTranslate"
12658
+ },
12617
12659
  {
12618
12660
  "category": "Devices & Signals",
12619
12661
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.42713 8.36681L8.8968 8.89714C8.10175 9.6922 7.61133 10.7884 7.61133 12.0006C7.61133 13.2127 8.10175 14.3089 8.8968 15.104L9.42713 15.6343L8.36647 16.695L7.83614 16.1646C6.77129 15.0998 6.11133 13.6265 6.11133 12.0006C6.11133 10.3746 6.77129 8.90134 7.83614 7.83648L8.36647 7.30615L9.42713 8.36681ZM15.634 7.30615L16.1643 7.83648C17.2291 8.90134 17.8891 10.3746 17.8891 12.0006C17.8891 13.6265 17.2291 15.0998 16.1643 16.1646L15.634 16.695L14.5733 15.6343L15.1036 15.104C15.8987 14.3089 16.3891 13.2127 16.3891 12.0006C16.3891 10.7884 15.8987 9.6922 15.1036 8.89714L14.5733 8.36681L15.634 7.30615ZM10.5002 11.9998C10.5002 11.1714 11.1718 10.4998 12.0002 10.4998C12.8286 10.4998 13.5002 11.1714 13.5002 11.9998C13.5002 12.8282 12.8286 13.4998 12.0002 13.4998C11.1718 13.4998 10.5002 12.8282 10.5002 11.9998Z\" fill=\"currentColor\"/>",
@@ -19572,6 +19614,20 @@
19572
19614
  "packageName": "square-filled-radius-0-stroke-1.5",
19573
19615
  "componentName": "IconSushi"
19574
19616
  },
19617
+ {
19618
+ "category": "AI & Magic",
19619
+ "svg": "<path d=\"M4.02637 14.0986C4.00894 14.2295 4 14.3637 4 14.5C4 15.9621 5.04614 17.1793 6.43066 17.4453V15L9.85938 18.25L6.43066 21.5V18.9619C4.21432 18.6819 2.5 16.7923 2.5 14.5C2.5 14.2974 2.51391 14.0976 2.54004 13.9014L4.02637 14.0986Z\" fill=\"currentColor\"/><path d=\"M18 16.5H16.5V3H18V16.5Z\" fill=\"currentColor\"/><path d=\"M7.56934 10.0371C9.78574 10.317 11.5 12.2076 11.5 14.5C11.5 14.7026 11.4861 14.9024 11.46 15.0986L9.97363 14.9014C9.99106 14.7705 10 14.6363 10 14.5C10 13.0378 8.95395 11.8197 7.56934 11.5537V14L4.14062 10.75L7.56934 7.5V10.0371Z\" fill=\"currentColor\"/><path d=\"M14.5 11.5H13V6H14.5V11.5Z\" fill=\"currentColor\"/><path d=\"M21.5 11.5H20V8H21.5V11.5Z\" fill=\"currentColor\"/><path d=\"M11 8H9.5V4H11V8Z\" fill=\"currentColor\"/>",
19620
+ "iconName": "switch-voice, change-voice",
19621
+ "variant": {
19622
+ "join": "square",
19623
+ "filled": "on",
19624
+ "radius": "0",
19625
+ "stroke": "1.5"
19626
+ },
19627
+ "createdAt": "2025-11-24T12:02:01.057168+00:00",
19628
+ "packageName": "square-filled-radius-0-stroke-1.5",
19629
+ "componentName": "IconSwitchVoice"
19630
+ },
19575
19631
  {
19576
19632
  "category": "Gaming",
19577
19633
  "svg": "<path d=\"M13.6288 3L7.99609 10.0562L13.9444 16.0045L21.0006 10.3718V3H13.6288Z\" fill=\"currentColor\"/><path d=\"M5.32021 9.10913L2.91034 12.3113L5.05376 15.8837L1.9375 18.9999L4.99816 22.0606L8.11442 18.9443L11.6868 21.0877L14.8889 18.6779L5.32021 9.10913Z\" fill=\"currentColor\"/>",
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"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/square-filled-radius-0-stroke-1.5",
3
- "version": "1.1.38",
3
+ "version": "1.1.40",
4
4
  "style": "square-filled-radius-0-stroke-1.5",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-1.5/IconHome';",
@@ -11,10 +11,10 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 1582,
14
+ "totalIcons": 1586,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 45,
17
+ "count": 47,
18
18
  "icons": [
19
19
  "IconAppleIntelligenceIcon",
20
20
  "IconBoxSparkle",
@@ -32,6 +32,7 @@
32
32
  "IconImagine",
33
33
  "IconImagineAi",
34
34
  "IconListSparkle",
35
+ "IconLiveVoiceTranslate",
35
36
  "IconMagicBook",
36
37
  "IconMagicEdit",
37
38
  "IconMagicWand",
@@ -55,6 +56,7 @@
55
56
  "IconSparklesTwo2",
56
57
  "IconSpeachToText",
57
58
  "IconStarWand",
59
+ "IconSwitchVoice",
58
60
  "IconTextToImage",
59
61
  "IconTextToSpeach",
60
62
  "IconVisualIntelligence",
@@ -261,8 +263,9 @@
261
263
  ]
262
264
  },
263
265
  "Code": {
264
- "count": 38,
266
+ "count": 40,
265
267
  "icons": [
268
+ "IconAnchor",
266
269
  "IconAnimation",
267
270
  "IconAnimationAuto",
268
271
  "IconAnimationEase",
@@ -293,6 +296,7 @@
293
296
  "IconDraft",
294
297
  "IconForkCode",
295
298
  "IconHammer",
299
+ "IconHook",
296
300
  "IconPullRequest",
297
301
  "IconPush",
298
302
  "IconRequestClosed",
@@ -1807,6 +1811,7 @@
1807
1811
  "IconAlt": "alt",
1808
1812
  "IconAmericanFootball": "american-football, nfl",
1809
1813
  "IconAnalytics": "analytics, analysis",
1814
+ "IconAnchor": "anchor, webhooks",
1810
1815
  "IconAnchor1": "anchor-1, link",
1811
1816
  "IconAnchor2": "anchor-2, link",
1812
1817
  "IconAnimation": "animation",
@@ -2580,6 +2585,7 @@
2580
2585
  "IconHomePersonalFeed": "home-personal-feed, for-you",
2581
2586
  "IconHomeRoof": "home-roof, house",
2582
2587
  "IconHomeRoundDoor": "home-round-door",
2588
+ "IconHook": "hook, phishing",
2583
2589
  "IconHorizontalAlignmentBottom": "horizontal-alignment-bottom",
2584
2590
  "IconHorizontalAlignmentCenter": "horizontal-alignment-center",
2585
2591
  "IconHorizontalAlignmentTop": "horizontal-alignment-top",
@@ -2676,6 +2682,7 @@
2676
2682
  "IconLiveActivity": "live-activity, fitness",
2677
2683
  "IconLiveFull": "live-full, signal, podcast",
2678
2684
  "IconLiveNoSignal": "live-no-signal, signal",
2685
+ "IconLiveVoiceTranslate": "live-voice-translate",
2679
2686
  "IconLiveWeak": "live-weak, signal",
2680
2687
  "IconLoader": "loader",
2681
2688
  "IconLoadingCircle": "loading-circle, quarter, spinner",
@@ -3173,6 +3180,7 @@
3173
3180
  "IconSupport": "support",
3174
3181
  "IconSurfing": "surfing, wave, vibe",
3175
3182
  "IconSushi": "sushi, nigiri, sashime, maki",
3183
+ "IconSwitchVoice": "switch-voice, change-voice",
3176
3184
  "IconSword": "sword, action, gaming",
3177
3185
  "IconTable": "table, spreedsheet, chart",
3178
3186
  "IconTactics1": "tactics-1, game-plan, prototype, play",
package/index.d.ts CHANGED
@@ -30,6 +30,7 @@ export { IconAlpha, default as IconAlphaDefault } from "./IconAlpha";
30
30
  export { IconAlt, default as IconAltDefault } from "./IconAlt";
31
31
  export { IconAmericanFootball, default as IconAmericanFootballDefault, } from "./IconAmericanFootball";
32
32
  export { IconAnalytics, default as IconAnalyticsDefault, } from "./IconAnalytics";
33
+ export { IconAnchor, default as IconAnchorDefault } from "./IconAnchor";
33
34
  export { IconAnchor1, default as IconAnchor1Default } from "./IconAnchor1";
34
35
  export { IconAnchor2, default as IconAnchor2Default } from "./IconAnchor2";
35
36
  export { IconAnimation, default as IconAnimationDefault, } from "./IconAnimation";
@@ -803,6 +804,7 @@ export { IconHomeOpen, default as IconHomeOpenDefault } from "./IconHomeOpen";
803
804
  export { IconHomePersonalFeed, default as IconHomePersonalFeedDefault, } from "./IconHomePersonalFeed";
804
805
  export { IconHomeRoof, default as IconHomeRoofDefault } from "./IconHomeRoof";
805
806
  export { IconHomeRoundDoor, default as IconHomeRoundDoorDefault, } from "./IconHomeRoundDoor";
807
+ export { IconHook, default as IconHookDefault } from "./IconHook";
806
808
  export { IconHorizontalAlignmentBottom, default as IconHorizontalAlignmentBottomDefault, } from "./IconHorizontalAlignmentBottom";
807
809
  export { IconHorizontalAlignmentCenter, default as IconHorizontalAlignmentCenterDefault, } from "./IconHorizontalAlignmentCenter";
808
810
  export { IconHorizontalAlignmentTop, default as IconHorizontalAlignmentTopDefault, } from "./IconHorizontalAlignmentTop";
@@ -899,6 +901,7 @@ export { IconListSparkle, default as IconListSparkleDefault, } from "./IconListS
899
901
  export { IconLiveActivity, default as IconLiveActivityDefault, } from "./IconLiveActivity";
900
902
  export { IconLiveFull, default as IconLiveFullDefault } from "./IconLiveFull";
901
903
  export { IconLiveNoSignal, default as IconLiveNoSignalDefault, } from "./IconLiveNoSignal";
904
+ export { IconLiveVoiceTranslate, default as IconLiveVoiceTranslateDefault, } from "./IconLiveVoiceTranslate";
902
905
  export { IconLiveWeak, default as IconLiveWeakDefault } from "./IconLiveWeak";
903
906
  export { IconLoader, default as IconLoaderDefault } from "./IconLoader";
904
907
  export { IconLoadingCircle, default as IconLoadingCircleDefault, } from "./IconLoadingCircle";
@@ -1396,6 +1399,7 @@ export { IconSuperscript, default as IconSuperscriptDefault, } from "./IconSuper
1396
1399
  export { IconSupport, default as IconSupportDefault } from "./IconSupport";
1397
1400
  export { IconSurfing, default as IconSurfingDefault } from "./IconSurfing";
1398
1401
  export { IconSushi, default as IconSushiDefault } from "./IconSushi";
1402
+ export { IconSwitchVoice, default as IconSwitchVoiceDefault, } from "./IconSwitchVoice";
1399
1403
  export { IconSword, default as IconSwordDefault } from "./IconSword";
1400
1404
  export { IconTable, default as IconTableDefault } from "./IconTable";
1401
1405
  export { IconTactics1, default as IconTactics1Default } from "./IconTactics1";