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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import { 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 m=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,M=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of d(o))!M.call(r,s)&&s!==e&&p(r,s,{get:()=>o[s],enumerable:!(a=k(o,s))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?m(f(r)):{},i(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>i(p({},"__esModule",{value:!0}),r);var P={};B(P,{IconLiveVoiceTranslate:()=>c,default:()=>x});module.exports=I(P);var n=C(require("react"));var u=C(require("react")),l=require("react-native-svg"),L=({children:r,size:o=24,...e})=>u.default.createElement(l.Svg,{...e,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"),c=r=>n.default.createElement(L,{...r},n.default.createElement(t.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(t.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(t.Path,{d:"M3.5 12.5H11.5",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M7.5 11.9998V10.4998",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M20.5 8.5V11M17.5 3.5V15.5M14.5 6.5V10M11.5 4.5V8",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"})),x=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, { 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=\"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, { 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,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","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 p from"react";import{Svg as a}from"react-native-svg";var t=({children:n,size:r=24,...s})=>p.createElement(a,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var i=n=>o.createElement(t,{...n},o.createElement(e,{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"}),o.createElement(e,{d:"M5.10986 14.9182C6.08659 17.9094 8.12944 19.6858 11.4999 20.5001",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement(e,{d:"M3.5 12.5H11.5",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement(e,{d:"M7.5 11.9998V10.4998",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement(e,{d:"M20.5 8.5V11M17.5 3.5V15.5M14.5 6.5V10M11.5 4.5V8",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"})),M=i;export{i as IconLiveVoiceTranslate,M 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=\"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, { 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,0VACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mEACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uBACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oDACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconLiveVoiceTranslate","props","React","CentralIconBase","IconLiveVoiceTranslate_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
@@ -12614,6 +12614,20 @@
12614
12614
  "packageName": "square-outlined-radius-0-stroke-1",
12615
12615
  "componentName": "IconLiveNoSignal"
12616
12616
  },
12617
+ {
12618
+ "category": "AI & Magic",
12619
+ "svg": "<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\"/><path d=\"M5.10986 14.9182C6.08659 17.9094 8.12944 19.6858 11.4999 20.5001\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M3.5 12.5H11.5\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M7.5 11.9998V10.4998\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M20.5 8.5V11M17.5 3.5V15.5M14.5 6.5V10M11.5 4.5V8\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>",
12620
+ "iconName": "live-voice-translate",
12621
+ "variant": {
12622
+ "join": "square",
12623
+ "filled": "off",
12624
+ "radius": "0",
12625
+ "stroke": "1"
12626
+ },
12627
+ "createdAt": "2025-11-21T15:01:55.597393+00:00",
12628
+ "packageName": "square-outlined-radius-0-stroke-1",
12629
+ "componentName": "IconLiveVoiceTranslate"
12630
+ },
12617
12631
  {
12618
12632
  "category": "Devices & Signals",
12619
12633
  "svg": "<path d=\"M15.8891 8.11084C18.037 10.2587 18.037 13.7411 15.8891 15.889M8.11091 15.889C5.96303 13.7411 5.96303 10.2587 8.11091 8.11084M13.5 11.9999C13.5 12.8284 12.8284 13.4999 12 13.4999C11.1716 13.4999 10.5 12.8284 10.5 11.9999C10.5 11.1715 11.1716 10.4999 12 10.4999C12.8284 10.4999 13.5 11.1715 13.5 11.9999Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
package/icons/index.d.ts CHANGED
@@ -900,6 +900,7 @@ export type CentralIconName =
900
900
  | "IconLiveActivity"
901
901
  | "IconLiveFull"
902
902
  | "IconLiveNoSignal"
903
+ | "IconLiveVoiceTranslate"
903
904
  | "IconLiveWeak"
904
905
  | "IconLoader"
905
906
  | "IconLoadingCircle"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/square-outlined-radius-0-stroke-1",
3
- "version": "1.1.38",
3
+ "version": "1.1.39",
4
4
  "style": "square-outlined-radius-0-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-1/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": 1583,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 45,
17
+ "count": 46,
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",
@@ -2676,6 +2677,7 @@
2676
2677
  "IconLiveActivity": "live-activity, fitness",
2677
2678
  "IconLiveFull": "live-full, signal, podcast",
2678
2679
  "IconLiveNoSignal": "live-no-signal, signal",
2680
+ "IconLiveVoiceTranslate": "live-voice-translate",
2679
2681
  "IconLiveWeak": "live-weak, signal",
2680
2682
  "IconLoader": "loader",
2681
2683
  "IconLoadingCircle": "loading-circle, quarter, spinner",
package/index.d.ts CHANGED
@@ -899,6 +899,7 @@ export { IconListSparkle, default as IconListSparkleDefault, } from "./IconListS
899
899
  export { IconLiveActivity, default as IconLiveActivityDefault, } from "./IconLiveActivity";
900
900
  export { IconLiveFull, default as IconLiveFullDefault } from "./IconLiveFull";
901
901
  export { IconLiveNoSignal, default as IconLiveNoSignalDefault, } from "./IconLiveNoSignal";
902
+ export { IconLiveVoiceTranslate, default as IconLiveVoiceTranslateDefault, } from "./IconLiveVoiceTranslate";
902
903
  export { IconLiveWeak, default as IconLiveWeakDefault } from "./IconLiveWeak";
903
904
  export { IconLoader, default as IconLoaderDefault } from "./IconLoader";
904
905
  export { IconLoadingCircle, default as IconLoadingCircleDefault, } from "./IconLoadingCircle";