@central-icons-react-native/round-outlined-radius-3-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.
- 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/filtered-icons.json +56 -0
- package/icons/index.d.ts +4 -0
- package/icons-index.json +12 -4
- package/index.d.ts +4 -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
- package/tsx-icons.json +28 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of h(o))!B.call(r,t)&&t!==e&&s(r,t,{get:()=>o[t],enumerable:!(a=k(o,t))||a.enumerable});return r};var c=(r,o,e)=>(e=r!=null?f(x(r)):{},C(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>C(s({},"__esModule",{value:!0}),r);var g={};I(g,{IconAnchor:()=>u,default:()=>P});module.exports=d(g);var n=c(require("react"));var l=c(require("react")),i=require("react-native-svg"),m=({children:r,size:o=24,...e})=>l.default.createElement(i.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 p=require("react-native-svg"),u=r=>n.default.createElement(m,{...r},n.default.createElement(p.Circle,{cx:"12",cy:"6.5",r:"2.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement(p.Path,{d:"M12 9.25V16.125C12 18.4032 13.8468 20.25 16.125 20.25C18.4032 20.25 20.25 18.4032 20.25 16.125V13L18 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement(p.Path,{d:"M12 9.25V16.125C12 18.4032 10.1532 20.25 7.875 20.25C5.59683 20.25 3.75 18.4032 3.75 16.125V13L6 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),P=u;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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconAnchor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"12\"\n cy=\"6.5\"\n r=\"2.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 9.25V16.125C12 18.4032 13.8468 20.25 16.125 20.25C18.4032 20.25 20.25 18.4032 20.25 16.125V13L18 15\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 9.25V16.125C12 18.4032 10.1532 20.25 7.875 20.25C5.59683 20.25 3.75 18.4032 3.75 16.125V13L6 15\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\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,EAA6B,4BAEhBC,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UACC,GAAG,KACH,GAAG,MACH,EAAE,OACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0GACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sGACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,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 o from"react";import s from"react";import{Svg as a}from"react-native-svg";var t=({children:e,size:r=24,...p})=>s.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as C,Path as n}from"react-native-svg";var c=e=>o.createElement(t,{...e},o.createElement(C,{cx:"12",cy:"6.5",r:"2.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),o.createElement(n,{d:"M12 9.25V16.125C12 18.4032 13.8468 20.25 16.125 20.25C18.4032 20.25 20.25 18.4032 20.25 16.125V13L18 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),o.createElement(n,{d:"M12 9.25V16.125C12 18.4032 10.1532 20.25 7.875 20.25C5.59683 20.25 3.75 18.4032 3.75 16.125V13L6 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),I=c;export{c as IconAnchor,I 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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconAnchor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"12\"\n cy=\"6.5\"\n r=\"2.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 9.25V16.125C12 18.4032 13.8468 20.25 16.125 20.25C18.4032 20.25 20.25 18.4032 20.25 16.125V13L18 15\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 9.25V16.125C12 18.4032 10.1532 20.25 7.875 20.25C5.59683 20.25 3.75 18.4032 3.75 16.125V13L6 15\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,MACH,EAAE,OACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,0GACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sGACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconAnchor","props","React","CentralIconBase","IconAnchor_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var k=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!d.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(C=x(o,e))||C.enumerable});return r};var c=(r,o,t)=>(t=r!=null?f(I(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),P=r=>a(n({},"__esModule",{value:!0}),r);var h={};k(h,{IconHook:()=>u,default:()=>g});module.exports=P(h);var p=c(require("react"));var l=c(require("react")),m=require("react-native-svg"),i=({children:r,size:o=24,...t})=>l.default.createElement(m.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 s=require("react-native-svg"),u=r=>p.default.createElement(i,{...r},p.default.createElement(s.Circle,{cx:"9.25",cy:"5.75",r:"3",stroke:"currentColor",strokeWidth:"1.5"}),p.default.createElement(s.Path,{d:"M9.25 9V17.5C9.25 19.5711 10.9289 21.25 13 21.25C15.0711 21.25 16.75 19.5711 16.75 17.5V12L13.75 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),g=u;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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconHook: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"9.25\"\n cy=\"5.75\"\n r=\"3\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path\n d=\"M9.25 9V17.5C9.25 19.5711 10.9289 21.25 13 21.25C15.0711 21.25 16.75 19.5711 16.75 17.5V12L13.75 15\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,EAA6B,4BAEhBC,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UACC,GAAG,OACH,GAAG,OACH,EAAE,IACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sGACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,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 p from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(s,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as C,Path as a}from"react-native-svg";var c=o=>t.createElement(e,{...o},t.createElement(C,{cx:"9.25",cy:"5.75",r:"3",stroke:"currentColor",strokeWidth:"1.5"}),t.createElement(a,{d:"M9.25 9V17.5C9.25 19.5711 10.9289 21.25 13 21.25C15.0711 21.25 16.75 19.5711 16.75 17.5V12L13.75 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),k=c;export{c as IconHook,k 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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconHook: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle\n cx=\"9.25\"\n cy=\"5.75\"\n r=\"3\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path\n d=\"M9.25 9V17.5C9.25 19.5711 10.9289 21.25 13 21.25C15.0711 21.25 16.75 19.5711 16.75 17.5V12L13.75 15\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CACC,GAAG,OACH,GAAG,OACH,EAAE,IACF,OAAO,eACP,YAAY,MACd,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,sGACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconHook","props","React","CentralIconBase","IconHook_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var i=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},d=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!h.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=m(o,s))||p.enumerable});return r};var u=(r,o,e)=>(e=r!=null?l(f(r)):{},d(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>d(i({},"__esModule",{value:!0}),r);var x={};B(x,{IconLiveVoiceTranslate:()=>c,default:()=>M});module.exports=I(x);var n=u(require("react"));var k=u(require("react")),a=require("react-native-svg"),C=({children:r,size:o=24,...e})=>k.default.createElement(a.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(C,{...r},n.default.createElement(t.Path,{d:"M3.25 20.25C7.47403 19.2682 9.62706 16.8422 10.2168 12.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M4.9541 14.75C5.937 17.67 7.86405 19.4255 10.9541 20.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M2.75 12.25H11.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M7.25 12.25V10.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M21.25 8.75V10.75M17.75 3.75V15.75M14.25 6.75V8.75M10.75 4.75V7.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),M=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.25 20.25C7.47403 19.2682 9.62706 16.8422 10.2168 12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.9541 14.75C5.937 17.67 7.86405 19.4255 10.9541 20.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.75 12.25H11.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.25 12.25V10.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.25 8.75V10.75M17.75 3.75V15.75M14.25 6.75V8.75M10.75 4.75V7.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\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,2DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qEACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,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 i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...s})=>i.createElement(p,{...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 d=n=>o.createElement(t,{...n},o.createElement(e,{d:"M3.25 20.25C7.47403 19.2682 9.62706 16.8422 10.2168 12.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M4.9541 14.75C5.937 17.67 7.86405 19.4255 10.9541 20.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M2.75 12.25H11.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M7.25 12.25V10.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M21.25 8.75V10.75M17.75 3.75V15.75M14.25 6.75V8.75M10.75 4.75V7.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),h=d;export{d as IconLiveVoiceTranslate,h 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.25 20.25C7.47403 19.2682 9.62706 16.8422 10.2168 12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.9541 14.75C5.937 17.67 7.86405 19.4255 10.9541 20.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.75 12.25H11.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.25 12.25V10.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.25 8.75V10.75M17.75 3.75V15.75M14.25 6.75V8.75M10.75 4.75V7.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\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,2DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qEACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconLiveVoiceTranslate","props","React","CentralIconBase","IconLiveVoiceTranslate_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,M=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!M.call(r,n)&&n!==t&&p(r,n,{get:()=>o[n],enumerable:!(s=f(o,n))||s.enumerable});return r};var i=(r,o,t)=>(t=r!=null?d(I(r)):{},l(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),k=r=>l(p({},"__esModule",{value:!0}),r);var L={};h(L,{IconSwitchVoice:()=>u,default:()=>x});module.exports=k(L);var e=i(require("react"));var a=i(require("react")),c=require("react-native-svg"),m=({children:r,size:o=24,...t})=>a.default.createElement(c.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 C=require("react-native-svg"),u=r=>e.default.createElement(m,{...r},e.default.createElement(C.Path,{d:"M20.75 8.75V10.75M17.25 3.75V15.75M13.75 6.75V10.75M10.25 4.75V7.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(C.Path,{d:"M7 18.25C4.92893 18.25 3.25 16.5711 3.25 14.5C3.25 14.3305 3.26125 14.1636 3.28304 14M7 10.75C9.07107 10.75 10.75 12.4289 10.75 14.5C10.75 14.6695 10.7388 14.8364 10.717 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),e.default.createElement(C.Path,{d:"M7.5692 12.9776V8.87955C7.5692 8.37046 6.95369 8.11551 6.59371 8.47549L4.54469 10.5245C4.32153 10.7477 4.32153 11.1095 4.54469 11.3326L6.59371 13.3817C6.95369 13.7416 7.5692 13.4867 7.5692 12.9776Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M6.4308 20.5489V16.4508C6.4308 15.9418 7.04631 15.6868 7.40629 16.0468L9.45531 18.0958C9.67847 18.319 9.67847 18.6808 9.45531 18.9039L7.40629 20.9529C7.04631 21.3129 6.4308 21.058 6.4308 20.5489Z",fill:"currentColor"})),x=u;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=\"M20.75 8.75V10.75M17.25 3.75V15.75M13.75 6.75V10.75M10.25 4.75V7.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7 18.25C4.92893 18.25 3.25 16.5711 3.25 14.5C3.25 14.3305 3.26125 14.1636 3.28304 14M7 10.75C9.07107 10.75 10.75 12.4289 10.75 14.5C10.75 14.6695 10.7388 14.8364 10.717 15\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M7.5692 12.9776V8.87955C7.5692 8.37046 6.95369 8.11551 6.59371 8.47549L4.54469 10.5245C4.32153 10.7477 4.32153 11.1095 4.54469 11.3326L6.59371 13.3817C6.95369 13.7416 7.5692 13.4867 7.5692 12.9776Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.4308 20.5489V16.4508C6.4308 15.9418 7.04631 15.6868 7.40629 16.0468L9.45531 18.0958C9.67847 18.319 9.67847 18.6808 9.45531 18.9039L7.40629 20.9529C7.04631 21.3129 6.4308 21.058 6.4308 20.5489Z\"\n fill=\"currentColor\"\n />\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,sEACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+KACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wMACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sMACF,KAAK,eACP,CACF,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 o from"react";import p from"react";import{Svg as s}from"react-native-svg";var n=({children:e,size:r=24,...C})=>p.createElement(s,{...C,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 t}from"react-native-svg";var l=e=>o.createElement(n,{...e},o.createElement(t,{d:"M20.75 8.75V10.75M17.25 3.75V15.75M13.75 6.75V10.75M10.25 4.75V7.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M7 18.25C4.92893 18.25 3.25 16.5711 3.25 14.5C3.25 14.3305 3.26125 14.1636 3.28304 14M7 10.75C9.07107 10.75 10.75 12.4289 10.75 14.5C10.75 14.6695 10.7388 14.8364 10.717 15",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),o.createElement(t,{d:"M7.5692 12.9776V8.87955C7.5692 8.37046 6.95369 8.11551 6.59371 8.47549L4.54469 10.5245C4.32153 10.7477 4.32153 11.1095 4.54469 11.3326L6.59371 13.3817C6.95369 13.7416 7.5692 13.4867 7.5692 12.9776Z",fill:"currentColor"}),o.createElement(t,{d:"M6.4308 20.5489V16.4508C6.4308 15.9418 7.04631 15.6868 7.40629 16.0468L9.45531 18.0958C9.67847 18.319 9.67847 18.6808 9.45531 18.9039L7.40629 20.9529C7.04631 21.3129 6.4308 21.058 6.4308 20.5489Z",fill:"currentColor"})),M=l;export{l as IconSwitchVoice,M 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=\"M20.75 8.75V10.75M17.25 3.75V15.75M13.75 6.75V10.75M10.25 4.75V7.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7 18.25C4.92893 18.25 3.25 16.5711 3.25 14.5C3.25 14.3305 3.26125 14.1636 3.28304 14M7 10.75C9.07107 10.75 10.75 12.4289 10.75 14.5C10.75 14.6695 10.7388 14.8364 10.717 15\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M7.5692 12.9776V8.87955C7.5692 8.37046 6.95369 8.11551 6.59371 8.47549L4.54469 10.5245C4.32153 10.7477 4.32153 11.1095 4.54469 11.3326L6.59371 13.3817C6.95369 13.7416 7.5692 13.4867 7.5692 12.9776Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M6.4308 20.5489V16.4508C6.4308 15.9418 7.04631 15.6868 7.40629 16.0468L9.45531 18.0958C9.67847 18.319 9.67847 18.6808 9.45531 18.9039L7.40629 20.9529C7.04631 21.3129 6.4308 21.058 6.4308 20.5489Z\"\n fill=\"currentColor\"\n />\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,sEACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+KACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wMACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sMACF,KAAK,eACP,CACF,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
|
package/filtered-icons.json
CHANGED
|
@@ -448,6 +448,20 @@
|
|
|
448
448
|
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
449
449
|
"componentName": "IconAnalytics"
|
|
450
450
|
},
|
|
451
|
+
{
|
|
452
|
+
"category": "Code",
|
|
453
|
+
"svg": "<circle cx=\"12\" cy=\"6.5\" r=\"2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M12 9.25V16.125C12 18.4032 13.8468 20.25 16.125 20.25C18.4032 20.25 20.25 18.4032 20.25 16.125V13L18 15\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M12 9.25V16.125C12 18.4032 10.1532 20.25 7.875 20.25C5.59683 20.25 3.75 18.4032 3.75 16.125V13L6 15\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>",
|
|
454
|
+
"iconName": "anchor, webhooks",
|
|
455
|
+
"variant": {
|
|
456
|
+
"join": "round",
|
|
457
|
+
"filled": "off",
|
|
458
|
+
"radius": "3",
|
|
459
|
+
"stroke": "1.5"
|
|
460
|
+
},
|
|
461
|
+
"createdAt": "2025-11-24T12:02:01.057168+00:00",
|
|
462
|
+
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
463
|
+
"componentName": "IconAnchor"
|
|
464
|
+
},
|
|
451
465
|
{
|
|
452
466
|
"category": "Interface General",
|
|
453
467
|
"svg": "<path d=\"M17.75 11.75H21.25L19.1269 19.0842C18.7556 20.3671 17.5808 21.25 16.2453 21.25H12M6.25 11.75H2.75L4.87305 19.0842C5.24442 20.3671 6.41916 21.25 7.75474 21.25H12M12 21.25V8.25M12 8.25C13.5188 8.25 14.75 7.01878 14.75 5.5C14.75 3.98122 13.5188 2.75 12 2.75C10.4812 2.75 9.25 3.98122 9.25 5.5C9.25 7.01878 10.4812 8.25 12 8.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -11270,6 +11284,20 @@
|
|
|
11270
11284
|
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
11271
11285
|
"componentName": "IconHomeRoundDoor"
|
|
11272
11286
|
},
|
|
11287
|
+
{
|
|
11288
|
+
"category": "Code",
|
|
11289
|
+
"svg": "<circle cx=\"9.25\" cy=\"5.75\" r=\"3\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M9.25 9V17.5C9.25 19.5711 10.9289 21.25 13 21.25C15.0711 21.25 16.75 19.5711 16.75 17.5V12L13.75 15\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
11290
|
+
"iconName": "hook, phishing",
|
|
11291
|
+
"variant": {
|
|
11292
|
+
"join": "round",
|
|
11293
|
+
"filled": "off",
|
|
11294
|
+
"radius": "3",
|
|
11295
|
+
"stroke": "1.5"
|
|
11296
|
+
},
|
|
11297
|
+
"createdAt": "2025-11-24T12:02:01.057168+00:00",
|
|
11298
|
+
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
11299
|
+
"componentName": "IconHook"
|
|
11300
|
+
},
|
|
11273
11301
|
{
|
|
11274
11302
|
"category": "Typography",
|
|
11275
11303
|
"svg": "<path d=\"M3.75 20.25H20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.5 7.75C14.5335 7.75 13.75 8.5335 13.75 9.5V15.5C13.75 16.4665 14.5335 17.25 15.5 17.25C16.4665 17.25 17.25 16.4665 17.25 15.5V9.5C17.25 8.5335 16.4665 7.75 15.5 7.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 3.75C7.5335 3.75 6.75 4.5335 6.75 5.5V15.5C6.75 16.4665 7.5335 17.25 8.5 17.25C9.4665 17.25 10.25 16.4665 10.25 15.5V5.5C10.25 4.5335 9.4665 3.75 8.5 3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -12614,6 +12642,20 @@
|
|
|
12614
12642
|
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
12615
12643
|
"componentName": "IconLiveNoSignal"
|
|
12616
12644
|
},
|
|
12645
|
+
{
|
|
12646
|
+
"category": "AI & Magic",
|
|
12647
|
+
"svg": "<path d=\"M3.25 20.25C7.47403 19.2682 9.62706 16.8422 10.2168 12.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.9541 14.75C5.937 17.67 7.86405 19.4255 10.9541 20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.75 12.25H11.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.25 12.25V10.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.25 8.75V10.75M17.75 3.75V15.75M14.25 6.75V8.75M10.75 4.75V7.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
12648
|
+
"iconName": "live-voice-translate",
|
|
12649
|
+
"variant": {
|
|
12650
|
+
"join": "round",
|
|
12651
|
+
"filled": "off",
|
|
12652
|
+
"radius": "3",
|
|
12653
|
+
"stroke": "1.5"
|
|
12654
|
+
},
|
|
12655
|
+
"createdAt": "2025-11-21T15:01:55.597393+00:00",
|
|
12656
|
+
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
12657
|
+
"componentName": "IconLiveVoiceTranslate"
|
|
12658
|
+
},
|
|
12617
12659
|
{
|
|
12618
12660
|
"category": "Devices & Signals",
|
|
12619
12661
|
"svg": "<path d=\"M8.36647 8.36719C7.43652 9.29714 6.86133 10.5819 6.86133 12.0009C6.86133 13.42 7.43652 14.7047 8.36647 15.6347M15.634 15.6347C16.5639 14.7047 17.1391 13.42 17.1391 12.0009C17.1391 10.5819 16.5639 9.29714 15.634 8.36719M12.7502 12.0002C12.7502 12.4144 12.4144 12.7502 12.0002 12.7502C11.586 12.7502 11.2502 12.4144 11.2502 12.0002C11.2502 11.586 11.586 11.2502 12.0002 11.2502C12.4144 11.2502 12.7502 11.586 12.7502 12.0002Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -19572,6 +19614,20 @@
|
|
|
19572
19614
|
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
19573
19615
|
"componentName": "IconSushi"
|
|
19574
19616
|
},
|
|
19617
|
+
{
|
|
19618
|
+
"category": "AI & Magic",
|
|
19619
|
+
"svg": "<path d=\"M20.75 8.75V10.75M17.25 3.75V15.75M13.75 6.75V10.75M10.25 4.75V7.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 18.25C4.92893 18.25 3.25 16.5711 3.25 14.5C3.25 14.3305 3.26125 14.1636 3.28304 14M7 10.75C9.07107 10.75 10.75 12.4289 10.75 14.5C10.75 14.6695 10.7388 14.8364 10.717 15\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M7.5692 12.9776V8.87955C7.5692 8.37046 6.95369 8.11551 6.59371 8.47549L4.54469 10.5245C4.32153 10.7477 4.32153 11.1095 4.54469 11.3326L6.59371 13.3817C6.95369 13.7416 7.5692 13.4867 7.5692 12.9776Z\" fill=\"currentColor\"/><path d=\"M6.4308 20.5489V16.4508C6.4308 15.9418 7.04631 15.6868 7.40629 16.0468L9.45531 18.0958C9.67847 18.319 9.67847 18.6808 9.45531 18.9039L7.40629 20.9529C7.04631 21.3129 6.4308 21.058 6.4308 20.5489Z\" fill=\"currentColor\"/>",
|
|
19620
|
+
"iconName": "switch-voice, change-voice",
|
|
19621
|
+
"variant": {
|
|
19622
|
+
"join": "round",
|
|
19623
|
+
"filled": "off",
|
|
19624
|
+
"radius": "3",
|
|
19625
|
+
"stroke": "1.5"
|
|
19626
|
+
},
|
|
19627
|
+
"createdAt": "2025-11-24T12:02:01.057168+00:00",
|
|
19628
|
+
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
19629
|
+
"componentName": "IconSwitchVoice"
|
|
19630
|
+
},
|
|
19575
19631
|
{
|
|
19576
19632
|
"category": "Gaming",
|
|
19577
19633
|
"svg": "<path d=\"M8.25 11.0543L13.0883 4.89653C13.657 4.17266 14.5267 3.75 15.4472 3.75H20.25V8.55276C20.25 9.47334 19.8273 10.343 19.1035 10.9117L12.9457 15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M13.9611 16.8079L7.19329 10.0401C6.77184 9.61869 6.07135 9.665 5.69902 10.1304C4.8829 11.1506 4.80845 12.597 5.53313 13.684L6.40326 14.9892L3.55629 17.8353C2.83548 18.5559 2.83539 19.7244 3.55609 20.4451C4.27679 21.1658 5.4453 21.1657 6.16588 20.4449L9.01196 17.5979L10.3172 18.4681C11.4042 19.1927 12.8506 19.1183 13.8708 18.3022C14.3362 17.9298 14.3825 17.2294 13.9611 16.8079Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>",
|
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/round-outlined-radius-3-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.40",
|
|
4
4
|
"style": "round-outlined-radius-3-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-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":
|
|
14
|
+
"totalIcons": 1586,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
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":
|
|
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";
|