@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.90 → 1.1.92
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/IconArrowSplitDown/index.d.ts +4 -0
- package/IconArrowSplitDown/index.js +2 -0
- package/IconArrowSplitDown/index.js.map +1 -0
- package/IconArrowSplitDown/index.mjs +2 -0
- package/IconArrowSplitDown/index.mjs.map +1 -0
- package/IconGemini/index.js +1 -1
- package/IconGemini/index.js.map +1 -1
- package/IconGemini/index.mjs +1 -1
- package/IconGemini/index.mjs.map +1 -1
- package/{IconVoice1 → IconImages41}/index.d.ts +2 -2
- package/IconImages41/index.js +2 -0
- package/IconImages41/index.js.map +1 -0
- package/IconImages41/index.mjs +2 -0
- package/IconImages41/index.mjs.map +1 -0
- package/IconStandingGlobe/index.d.ts +4 -0
- package/IconStandingGlobe/index.js +2 -0
- package/IconStandingGlobe/index.js.map +1 -0
- package/IconStandingGlobe/index.mjs +2 -0
- package/IconStandingGlobe/index.mjs.map +1 -0
- package/IconVoiceHigh/index.d.ts +4 -0
- package/IconVoiceHigh/index.js +2 -0
- package/IconVoiceHigh/index.js.map +1 -0
- package/{IconVoice1 → IconVoiceHigh}/index.mjs +1 -1
- package/IconVoiceHigh/index.mjs.map +1 -0
- package/IconVoiceMid/index.d.ts +4 -0
- package/IconVoiceMid/index.js +2 -0
- package/IconVoiceMid/index.js.map +1 -0
- package/IconVoiceMid/index.mjs +2 -0
- package/IconVoiceMid/index.mjs.map +1 -0
- package/README.md +5 -1
- package/filtered-icons.json +71 -15
- package/icons/index.d.ts +5 -1
- package/icons-index.json +16 -8
- package/index.d.ts +5 -1
- 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 +36 -8
- package/IconVoice1/index.js +0 -2
- package/IconVoice1/index.js.map +0 -1
- package/IconVoice1/index.mjs.map +0 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var s=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of h(o))!B.call(r,n)&&n!==t&&s(r,n,{get:()=>o[n],enumerable:!(l=f(o,n))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(k(r)):{},C(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>C(s({},"__esModule",{value:!0}),r);var g={};I(g,{IconArrowSplitDown:()=>d,default:()=>P});module.exports=x(g);var e=m(require("react"));var a=m(require("react")),i=require("react-native-svg"),c=({children:r,size:o=24,...t})=>a.default.createElement(i.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 p=require("react-native-svg"),d=r=>e.default.createElement(c,{...r},e.default.createElement(p.Path,{d:"M12 3V12L18 18",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(p.Path,{d:"M19 13V19H13",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(p.Path,{d:"M4.5 19.5L6.5 17.5",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(p.Path,{d:"M8 16L10 14",stroke:"currentColor",strokeWidth:"2"})),P=d;0&&(module.exports={IconArrowSplitDown});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowSplitDown/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 IconArrowSplitDown: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12 3V12L18 18\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M19 13V19H13\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M4.5 19.5L6.5 17.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M8 16L10 14\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitDown;\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,wBAAAE,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,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,EAC/D,EAAAA,QAAA,cAAC,QAAK,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,EAC7D,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAI,EACnE,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,YAAY,IAAI,CAC9D,EAIGE,EAAQJ","names":["IconArrowSplitDown_exports","__export","IconArrowSplitDown","IconArrowSplitDown_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArrowSplitDown","props","React","CentralIconBase","IconArrowSplitDown_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as l}from"react-native-svg";var n=({children:e,size:r=24,...p})=>s.createElement(l,{...p,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 C=e=>o.createElement(n,{...e},o.createElement(t,{d:"M12 3V12L18 18",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M19 13V19H13",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M4.5 19.5L6.5 17.5",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M8 16L10 14",stroke:"currentColor",strokeWidth:"2"})),B=C;export{C as IconArrowSplitDown,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowSplitDown/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 IconArrowSplitDown: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12 3V12L18 18\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M19 13V19H13\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M4.5 19.5L6.5 17.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path d=\"M8 16L10 14\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowSplitDown;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,EAC/DG,EAAA,cAACH,EAAA,CAAK,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,EAC7DG,EAAA,cAACH,EAAA,CAAK,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAI,EACnEG,EAAA,cAACH,EAAA,CAAK,EAAE,cAAc,OAAO,eAAe,YAAY,IAAI,CAC9D,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArrowSplitDown","props","React","CentralIconBase","IconArrowSplitDown_default"]}
|
package/IconGemini/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var B=Object.create;var e=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,C)=>{for(var o in C)e(r,o,{get:C[o],enumerable:!0})},a=(r,C,o,p)=>{if(C&&typeof C=="object"||typeof C=="function")for(let t of u(C))!P.call(r,t)&&t!==o&&e(r,t,{get:()=>C[t],enumerable:!(p=I(C,t))||p.enumerable});return r};var m=(r,C,o)=>(o=r!=null?B(x(r)):{},a(C||!r||!r.__esModule?e(o,"default",{value:r,enumerable:!0}):o,r)),v=r=>a(e({},"__esModule",{value:!0}),r);var y={};g(y,{IconGemini:()=>i,default:()=>h});module.exports=v(y);var n=m(require("react"));var l=m(require("react")),s=require("react-native-svg"),c=({children:r,size:C=24,...o})=>l.default.createElement(s.Svg,{...o,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(f.Path,{d:"M20.
|
|
1
|
+
"use strict";var B=Object.create;var e=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,C)=>{for(var o in C)e(r,o,{get:C[o],enumerable:!0})},a=(r,C,o,p)=>{if(C&&typeof C=="object"||typeof C=="function")for(let t of u(C))!P.call(r,t)&&t!==o&&e(r,t,{get:()=>C[t],enumerable:!(p=I(C,t))||p.enumerable});return r};var m=(r,C,o)=>(o=r!=null?B(x(r)):{},a(C||!r||!r.__esModule?e(o,"default",{value:r,enumerable:!0}):o,r)),v=r=>a(e({},"__esModule",{value:!0}),r);var y={};g(y,{IconGemini:()=>i,default:()=>h});module.exports=v(y);var n=m(require("react"));var l=m(require("react")),s=require("react-native-svg"),c=({children:r,size:C=24,...o})=>l.default.createElement(s.Svg,{...o,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),i=r=>n.default.createElement(c,{...r},n.default.createElement(f.Path,{d:"M20.2246 10.888C18.6066 10.1911 17.1915 9.23659 15.9769 8.02312C14.7634 6.80966 13.8077 5.39335 13.112 3.7754C12.846 3.15614 12.63 2.51778 12.4653 1.86392C12.4116 1.65034 12.2207 1.5 12 1.5C11.7793 1.5 11.5884 1.65034 11.5347 1.86392C11.37 2.51778 11.1552 3.15375 10.888 3.7754C10.1911 5.39335 9.23659 6.80966 8.02312 8.02312C6.80966 9.2354 5.39335 10.1911 3.7754 10.888C3.15614 11.154 2.51778 11.37 1.86392 11.5347C1.65034 11.5884 1.5 11.7793 1.5 12C1.5 12.2207 1.65034 12.4116 1.86392 12.4653C2.51778 12.63 3.15375 12.8448 3.7754 13.112C5.39335 13.8089 6.80847 14.7634 8.02312 15.9769C9.23659 17.1903 10.1923 18.6066 10.888 20.2246C11.1552 20.8451 11.37 21.4822 11.5347 22.1361C11.5607 22.2399 11.6206 22.332 11.7049 22.3979C11.7891 22.4638 11.893 22.4998 12 22.5C12.2207 22.5 12.4116 22.3497 12.4653 22.1361C12.63 21.4822 12.8448 20.8462 13.112 20.2246C13.8089 18.6066 14.7634 17.1915 15.9769 15.9769C17.1903 14.7634 18.6066 13.8077 20.2246 13.112C20.8451 12.8448 21.4822 12.63 22.1361 12.4653C22.2399 12.4393 22.332 12.3794 22.3979 12.2951C22.4638 12.2109 22.4998 12.107 22.5 12C22.5 11.7793 22.3497 11.5884 22.1361 11.5347C21.4822 11.37 20.8462 11.1552 20.2246 10.888Z",fill:"currentColor"})),h=i;0&&(module.exports={IconGemini});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconGemini/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconGemini/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 IconGemini: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.
|
|
1
|
+
{"version":3,"sources":["../src/IconGemini/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 IconGemini: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.2246 10.888C18.6066 10.1911 17.1915 9.23659 15.9769 8.02312C14.7634 6.80966 13.8077 5.39335 13.112 3.7754C12.846 3.15614 12.63 2.51778 12.4653 1.86392C12.4116 1.65034 12.2207 1.5 12 1.5C11.7793 1.5 11.5884 1.65034 11.5347 1.86392C11.37 2.51778 11.1552 3.15375 10.888 3.7754C10.1911 5.39335 9.23659 6.80966 8.02312 8.02312C6.80966 9.2354 5.39335 10.1911 3.7754 10.888C3.15614 11.154 2.51778 11.37 1.86392 11.5347C1.65034 11.5884 1.5 11.7793 1.5 12C1.5 12.2207 1.65034 12.4116 1.86392 12.4653C2.51778 12.63 3.15375 12.8448 3.7754 13.112C5.39335 13.8089 6.80847 14.7634 8.02312 15.9769C9.23659 17.1903 10.1923 18.6066 10.888 20.2246C11.1552 20.8451 11.37 21.4822 11.5347 22.1361C11.5607 22.2399 11.6206 22.332 11.7049 22.3979C11.7891 22.4638 11.893 22.4998 12 22.5C12.2207 22.5 12.4116 22.3497 12.4653 22.1361C12.63 21.4822 12.8448 20.8462 13.112 20.2246C13.8089 18.6066 14.7634 17.1915 15.9769 15.9769C17.1903 14.7634 18.6066 13.8077 20.2246 13.112C20.8451 12.8448 21.4822 12.63 22.1361 12.4653C22.2399 12.4393 22.332 12.3794 22.3979 12.2951C22.4638 12.2109 22.4998 12.107 22.5 12C22.5 11.7793 22.3497 11.5884 22.1361 11.5347C21.4822 11.37 20.8462 11.1552 20.2246 10.888Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGemini;\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,wpCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconGemini_exports","__export","IconGemini","IconGemini_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGemini","props","React","CentralIconBase","IconGemini_default"]}
|
package/IconGemini/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import t from"react";import n from"react";import{Svg as p}from"react-native-svg";var o=({children:C,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"},C);import{Path as a}from"react-native-svg";var m=C=>t.createElement(o,{...C},t.createElement(a,{d:"M20.
|
|
1
|
+
import t from"react";import n from"react";import{Svg as p}from"react-native-svg";var o=({children:C,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"},C);import{Path as a}from"react-native-svg";var m=C=>t.createElement(o,{...C},t.createElement(a,{d:"M20.2246 10.888C18.6066 10.1911 17.1915 9.23659 15.9769 8.02312C14.7634 6.80966 13.8077 5.39335 13.112 3.7754C12.846 3.15614 12.63 2.51778 12.4653 1.86392C12.4116 1.65034 12.2207 1.5 12 1.5C11.7793 1.5 11.5884 1.65034 11.5347 1.86392C11.37 2.51778 11.1552 3.15375 10.888 3.7754C10.1911 5.39335 9.23659 6.80966 8.02312 8.02312C6.80966 9.2354 5.39335 10.1911 3.7754 10.888C3.15614 11.154 2.51778 11.37 1.86392 11.5347C1.65034 11.5884 1.5 11.7793 1.5 12C1.5 12.2207 1.65034 12.4116 1.86392 12.4653C2.51778 12.63 3.15375 12.8448 3.7754 13.112C5.39335 13.8089 6.80847 14.7634 8.02312 15.9769C9.23659 17.1903 10.1923 18.6066 10.888 20.2246C11.1552 20.8451 11.37 21.4822 11.5347 22.1361C11.5607 22.2399 11.6206 22.332 11.7049 22.3979C11.7891 22.4638 11.893 22.4998 12 22.5C12.2207 22.5 12.4116 22.3497 12.4653 22.1361C12.63 21.4822 12.8448 20.8462 13.112 20.2246C13.8089 18.6066 14.7634 17.1915 15.9769 15.9769C17.1903 14.7634 18.6066 13.8077 20.2246 13.112C20.8451 12.8448 21.4822 12.63 22.1361 12.4653C22.2399 12.4393 22.332 12.3794 22.3979 12.2951C22.4638 12.2109 22.4998 12.107 22.5 12C22.5 11.7793 22.3497 11.5884 22.1361 11.5347C21.4822 11.37 20.8462 11.1552 20.2246 10.888Z",fill:"currentColor"})),P=m;export{m as IconGemini,P as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconGemini/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconGemini/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 IconGemini: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.
|
|
1
|
+
{"version":3,"sources":["../src/IconGemini/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 IconGemini: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.2246 10.888C18.6066 10.1911 17.1915 9.23659 15.9769 8.02312C14.7634 6.80966 13.8077 5.39335 13.112 3.7754C12.846 3.15614 12.63 2.51778 12.4653 1.86392C12.4116 1.65034 12.2207 1.5 12 1.5C11.7793 1.5 11.5884 1.65034 11.5347 1.86392C11.37 2.51778 11.1552 3.15375 10.888 3.7754C10.1911 5.39335 9.23659 6.80966 8.02312 8.02312C6.80966 9.2354 5.39335 10.1911 3.7754 10.888C3.15614 11.154 2.51778 11.37 1.86392 11.5347C1.65034 11.5884 1.5 11.7793 1.5 12C1.5 12.2207 1.65034 12.4116 1.86392 12.4653C2.51778 12.63 3.15375 12.8448 3.7754 13.112C5.39335 13.8089 6.80847 14.7634 8.02312 15.9769C9.23659 17.1903 10.1923 18.6066 10.888 20.2246C11.1552 20.8451 11.37 21.4822 11.5347 22.1361C11.5607 22.2399 11.6206 22.332 11.7049 22.3979C11.7891 22.4638 11.893 22.4998 12 22.5C12.2207 22.5 12.4116 22.3497 12.4653 22.1361C12.63 21.4822 12.8448 20.8462 13.112 20.2246C13.8089 18.6066 14.7634 17.1915 15.9769 15.9769C17.1903 14.7634 18.6066 13.8077 20.2246 13.112C20.8451 12.8448 21.4822 12.63 22.1361 12.4653C22.2399 12.4393 22.332 12.3794 22.3979 12.2951C22.4638 12.2109 22.4998 12.107 22.5 12C22.5 11.7793 22.3497 11.5884 22.1361 11.5347C21.4822 11.37 20.8462 11.1552 20.2246 10.888Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGemini;\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,wpCACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGemini","props","React","CentralIconBase","IconGemini_default"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconImages41: FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconImages41;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var C=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!d.call(r,n)&&n!==t&&C(r,n,{get:()=>o[n],enumerable:!(l=I(o,n))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(L(r)):{},s(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>s(C({},"__esModule",{value:!0}),r);var h={};g(h,{IconImages41:()=>i,default:()=>P});module.exports=x(h);var e=m(require("react"));var a=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...t})=>a.default.createElement(f.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 p=require("react-native-svg"),i=r=>e.default.createElement(c,{...r},e.default.createElement(p.Path,{d:"M20 4H4V20H20V4Z",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(p.Path,{d:"M12.5 17H11C8.79086 17 7 15.2091 7 13L7.29573 12.9261C9.36881 12.4078 11.4831 13.6105 12.0972 15.6572L12.5 17Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M11.5 17H13C15.2091 17 17 15.2091 17 13L16.7043 12.9261C14.6312 12.4078 12.5169 13.6105 11.9028 15.6572L11.5 17Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M9.5 7L10.75 8L12 7L13.25 8L14.5 7V10C14.5 11.3807 13.3807 12.5 12 12.5C10.6193 12.5 9.5 11.3807 9.5 10V7Z",fill:"currentColor"})),P=i;0&&(module.exports={IconImages41});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImages41/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 IconImages41: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M20 4H4V20H20V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12.5 17H11C8.79086 17 7 15.2091 7 13L7.29573 12.9261C9.36881 12.4078 11.4831 13.6105 12.0972 15.6572L12.5 17Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M11.5 17H13C15.2091 17 17 15.2091 17 13L16.7043 12.9261C14.6312 12.4078 12.5169 13.6105 11.9028 15.6572L11.5 17Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.5 7L10.75 8L12 7L13.25 8L14.5 7V10C14.5 11.3807 13.3807 12.5 12 12.5C10.6193 12.5 9.5 11.3807 9.5 10V7Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImages41;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,EACjE,EAAAA,QAAA,cAAC,QACC,EAAE,iHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconImages41_exports","__export","IconImages41","IconImages41_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconImages41","props","React","CentralIconBase","IconImages41_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import C from"react";import{Svg as l}from"react-native-svg";var n=({children:e,size:r=24,...p})=>C.createElement(l,{...p,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 s=e=>o.createElement(n,{...e},o.createElement(t,{d:"M20 4H4V20H20V4Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement(t,{d:"M12.5 17H11C8.79086 17 7 15.2091 7 13L7.29573 12.9261C9.36881 12.4078 11.4831 13.6105 12.0972 15.6572L12.5 17Z",fill:"currentColor"}),o.createElement(t,{d:"M11.5 17H13C15.2091 17 17 15.2091 17 13L16.7043 12.9261C14.6312 12.4078 12.5169 13.6105 11.9028 15.6572L11.5 17Z",fill:"currentColor"}),o.createElement(t,{d:"M9.5 7L10.75 8L12 7L13.25 8L14.5 7V10C14.5 11.3807 13.3807 12.5 12 12.5C10.6193 12.5 9.5 11.3807 9.5 10V7Z",fill:"currentColor"})),d=s;export{s as IconImages41,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImages41/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 IconImages41: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M20 4H4V20H20V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12.5 17H11C8.79086 17 7 15.2091 7 13L7.29573 12.9261C9.36881 12.4078 11.4831 13.6105 12.0972 15.6572L12.5 17Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M11.5 17H13C15.2091 17 17 15.2091 17 13L16.7043 12.9261C14.6312 12.4078 12.5169 13.6105 11.9028 15.6572L11.5 17Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.5 7L10.75 8L12 7L13.25 8L14.5 7V10C14.5 11.3807 13.3807 12.5 12 12.5C10.6193 12.5 9.5 11.3807 9.5 10V7Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImages41;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,EACjEG,EAAA,cAACH,EAAA,CACC,EAAE,iHACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mHACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6GACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconImages41","props","React","CentralIconBase","IconImages41_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var k=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of f(o))!x.call(r,s)&&s!==e&&p(r,s,{get:()=>o[s],enumerable:!(i=m(o,s))||i.enumerable});return r};var a=(r,o,e)=>(e=r!=null?k(h(r)):{},C(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>C(p({},"__esModule",{value:!0}),r);var P={};B(P,{IconStandingGlobe:()=>d,default:()=>g});module.exports=I(P);var t=a(require("react"));var c=a(require("react")),l=require("react-native-svg"),u=({children:r,size:o=24,...e})=>c.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 n=require("react-native-svg"),d=r=>t.default.createElement(u,{...r},t.default.createElement(n.Path,{d:"M6.29168 3C4.86656 4.59227 4 6.69494 4 9C4 13.9706 8.02944 18 13 18C15.6655 18 18.0604 16.8412 19.7083 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M9.5 21H16.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M13 21V19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Circle,{cx:"13",cy:"9",r:"6",stroke:"currentColor",strokeWidth:"2"})),g=d;0&&(module.exports={IconStandingGlobe});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStandingGlobe/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 IconStandingGlobe: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6.29168 3C4.86656 4.59227 4 6.69494 4 9C4 13.9706 8.02944 18 13 18C15.6655 18 18.0604 16.8412 19.7083 15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M9.5 21H16.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 21V19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"13\" cy=\"9\" r=\"6\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconStandingGlobe;\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,uBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4GACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,IAAI,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,CACrE,EAIGE,EAAQJ","names":["IconStandingGlobe_exports","__export","IconStandingGlobe","IconStandingGlobe_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconStandingGlobe","props","React","CentralIconBase","IconStandingGlobe_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as i}from"react-native-svg";var n=({children:e,size:r=24,...s})=>p.createElement(i,{...s,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 t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M6.29168 3C4.86656 4.59227 4 6.69494 4 9C4 13.9706 8.02944 18 13 18C15.6655 18 18.0604 16.8412 19.7083 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(t,{d:"M9.5 21H16.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement(t,{d:"M13 21V19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(C,{cx:"13",cy:"9",r:"6",stroke:"currentColor",strokeWidth:"2"})),B=a;export{a as IconStandingGlobe,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStandingGlobe/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 IconStandingGlobe: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6.29168 3C4.86656 4.59227 4 6.69494 4 9C4 13.9706 8.02944 18 13 18C15.6655 18 18.0604 16.8412 19.7083 15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M9.5 21H16.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 21V19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"13\" cy=\"9\" r=\"6\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconStandingGlobe;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4GACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,SACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,IAAI,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,CACrE,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconStandingGlobe","props","React","CentralIconBase","IconStandingGlobe_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(g(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>s(n({},"__esModule",{value:!0}),r);var v={};P(v,{IconVoiceHigh:()=>f,default:()=>V});module.exports=h(v);var p=m(require("react"));var c=m(require("react")),C=require("react-native-svg"),l=({children:r,size:o=24,...e})=>c.default.createElement(C.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 i=require("react-native-svg"),f=r=>p.default.createElement(l,{...r},p.default.createElement(i.Path,{d:"M8 4V20M4 10V14M12 8V16M16 6V18M20 10V14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),V=f;0&&(module.exports={IconVoiceHigh});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceHigh/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 IconVoiceHigh: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 4V20M4 10V14M12 8V16M16 6V18M20 10V14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceHigh;\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,mBAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2CACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconVoiceHigh_exports","__export","IconVoiceHigh","IconVoiceHigh_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceHigh","props","React","CentralIconBase","IconVoiceHigh_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...n,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 s}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(s,{d:"M8 4V20M4 10V14M12 8V16M16 6V18M20 10V14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),
|
|
1
|
+
import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...n,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 s}from"react-native-svg";var m=o=>t.createElement(e,{...o},t.createElement(s,{d:"M8 4V20M4 10V14M12 8V16M16 6V18M20 10V14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),x=m;export{m as IconVoiceHigh,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceHigh/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 IconVoiceHigh: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 4V20M4 10V14M12 8V16M16 6V18M20 10V14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceHigh;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2CACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceHigh","props","React","CentralIconBase","IconVoiceHigh_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(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 f(o))!B.call(r,s)&&s!==e&&p(r,s,{get:()=>o[s],enumerable:!(a=m(o,s))||a.enumerable});return r};var c=(r,o,e)=>(e=r!=null?d(h(r)):{},i(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>i(p({},"__esModule",{value:!0}),r);var g={};I(g,{IconVoiceMid:()=>l,default:()=>P});module.exports=x(g);var t=c(require("react"));var u=c(require("react")),C=require("react-native-svg"),k=({children:r,size:o=24,...e})=>u.default.createElement(C.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 n=require("react-native-svg"),l=r=>t.default.createElement(k,{...r},t.default.createElement(n.Path,{d:"M8 6V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M4 11V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M12 10V14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M16 8V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M20 11V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),P=l;0&&(module.exports={IconVoiceMid});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceMid/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 IconVoiceMid: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 6V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M4 11V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 10V14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M16 8V16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M20 11V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMid;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconVoiceMid_exports","__export","IconVoiceMid","IconVoiceMid_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceMid","props","React","CentralIconBase","IconVoiceMid_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as a}from"react-native-svg";var n=({children:t,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"},t);import{Path as e}from"react-native-svg";var i=t=>o.createElement(n,{...t},o.createElement(e,{d:"M8 6V18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(e,{d:"M4 11V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(e,{d:"M12 10V14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(e,{d:"M16 8V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),o.createElement(e,{d:"M20 11V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),B=i;export{i as IconVoiceMid,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceMid/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 IconVoiceMid: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8 6V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M4 11V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 10V14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M16 8V16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M20 11V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMid;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceMid","props","React","CentralIconBase","IconVoiceMid_default"]}
|
package/README.md
CHANGED
|
@@ -270,6 +270,7 @@ Below is a complete list of available icons:
|
|
|
270
270
|
- IconArrowShareRight
|
|
271
271
|
- IconArrowsHide
|
|
272
272
|
- IconArrowSplit
|
|
273
|
+
- IconArrowSplitDown
|
|
273
274
|
- IconArrowsRepeat
|
|
274
275
|
- IconArrowsRepeatCircle
|
|
275
276
|
- IconArrowsRepeatRightLeft
|
|
@@ -1198,6 +1199,7 @@ Below is a complete list of available icons:
|
|
|
1198
1199
|
- IconPinLocation
|
|
1199
1200
|
- IconRadar1
|
|
1200
1201
|
- IconSend
|
|
1202
|
+
- IconStandingGlobe
|
|
1201
1203
|
- IconWorld
|
|
1202
1204
|
|
|
1203
1205
|
### Nature & Energy
|
|
@@ -1319,6 +1321,7 @@ Below is a complete list of available icons:
|
|
|
1319
1321
|
- IconImages2
|
|
1320
1322
|
- IconImages3
|
|
1321
1323
|
- IconImages4
|
|
1324
|
+
- IconImages41
|
|
1322
1325
|
- IconImages5
|
|
1323
1326
|
- IconImagesCircle
|
|
1324
1327
|
- IconMinimize
|
|
@@ -1610,8 +1613,9 @@ Below is a complete list of available icons:
|
|
|
1610
1613
|
- IconStop
|
|
1611
1614
|
- IconStopCircle
|
|
1612
1615
|
- IconVocalMicrophone
|
|
1613
|
-
- IconVoice1
|
|
1614
1616
|
- IconVoice3
|
|
1617
|
+
- IconVoiceHigh
|
|
1618
|
+
- IconVoiceMid
|
|
1615
1619
|
- IconVoiceMode
|
|
1616
1620
|
- IconVoiceRecord
|
|
1617
1621
|
- IconVoiceSettings
|
package/filtered-icons.json
CHANGED
|
@@ -1736,6 +1736,20 @@
|
|
|
1736
1736
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
1737
1737
|
"componentName": "IconArrowSplit"
|
|
1738
1738
|
},
|
|
1739
|
+
{
|
|
1740
|
+
"category": "Arrows",
|
|
1741
|
+
"svg": "<path d=\"M12 3V12L18 18\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M19 13V19H13\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M4.5 19.5L6.5 17.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M8 16L10 14\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
1742
|
+
"iconName": "arrow-split-down, branch",
|
|
1743
|
+
"variant": {
|
|
1744
|
+
"join": "square",
|
|
1745
|
+
"filled": "off",
|
|
1746
|
+
"radius": "0",
|
|
1747
|
+
"stroke": "2"
|
|
1748
|
+
},
|
|
1749
|
+
"createdAt": "2026-01-16T11:00:58.280999+00:00",
|
|
1750
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
1751
|
+
"componentName": "IconArrowSplitDown"
|
|
1752
|
+
},
|
|
1739
1753
|
{
|
|
1740
1754
|
"category": "Arrows",
|
|
1741
1755
|
"svg": "<path d=\"M4 13V5H15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M13 2L16 5L13 8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M20 11V19H9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M11 22L8 19L11 16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
@@ -11216,7 +11230,7 @@
|
|
|
11216
11230
|
},
|
|
11217
11231
|
{
|
|
11218
11232
|
"category": "Social Media & Brands",
|
|
11219
|
-
"svg": "<path d=\"M20.
|
|
11233
|
+
"svg": "<path d=\"M20.2246 10.888C18.6066 10.1911 17.1915 9.23659 15.9769 8.02312C14.7634 6.80966 13.8077 5.39335 13.112 3.7754C12.846 3.15614 12.63 2.51778 12.4653 1.86392C12.4116 1.65034 12.2207 1.5 12 1.5C11.7793 1.5 11.5884 1.65034 11.5347 1.86392C11.37 2.51778 11.1552 3.15375 10.888 3.7754C10.1911 5.39335 9.23659 6.80966 8.02312 8.02312C6.80966 9.2354 5.39335 10.1911 3.7754 10.888C3.15614 11.154 2.51778 11.37 1.86392 11.5347C1.65034 11.5884 1.5 11.7793 1.5 12C1.5 12.2207 1.65034 12.4116 1.86392 12.4653C2.51778 12.63 3.15375 12.8448 3.7754 13.112C5.39335 13.8089 6.80847 14.7634 8.02312 15.9769C9.23659 17.1903 10.1923 18.6066 10.888 20.2246C11.1552 20.8451 11.37 21.4822 11.5347 22.1361C11.5607 22.2399 11.6206 22.332 11.7049 22.3979C11.7891 22.4638 11.893 22.4998 12 22.5C12.2207 22.5 12.4116 22.3497 12.4653 22.1361C12.63 21.4822 12.8448 20.8462 13.112 20.2246C13.8089 18.6066 14.7634 17.1915 15.9769 15.9769C17.1903 14.7634 18.6066 13.8077 20.2246 13.112C20.8451 12.8448 21.4822 12.63 22.1361 12.4653C22.2399 12.4393 22.332 12.3794 22.3979 12.2951C22.4638 12.2109 22.4998 12.107 22.5 12C22.5 11.7793 22.3497 11.5884 22.1361 11.5347C21.4822 11.37 20.8462 11.1552 20.2246 10.888Z\" fill=\"currentColor\"/>",
|
|
11220
11234
|
"iconName": "gemini",
|
|
11221
11235
|
"variant": {
|
|
11222
11236
|
"join": "square",
|
|
@@ -12390,6 +12404,20 @@
|
|
|
12390
12404
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
12391
12405
|
"componentName": "IconImages4"
|
|
12392
12406
|
},
|
|
12407
|
+
{
|
|
12408
|
+
"category": "Photography & Video",
|
|
12409
|
+
"svg": "<path d=\"M20 4H4V20H20V4Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M12.5 17H11C8.79086 17 7 15.2091 7 13L7.29573 12.9261C9.36881 12.4078 11.4831 13.6105 12.0972 15.6572L12.5 17Z\" fill=\"currentColor\"/><path d=\"M11.5 17H13C15.2091 17 17 15.2091 17 13L16.7043 12.9261C14.6312 12.4078 12.5169 13.6105 11.9028 15.6572L11.5 17Z\" fill=\"currentColor\"/><path d=\"M9.5 7L10.75 8L12 7L13.25 8L14.5 7V10C14.5 11.3807 13.3807 12.5 12 12.5C10.6193 12.5 9.5 11.3807 9.5 10V7Z\" fill=\"currentColor\"/>",
|
|
12410
|
+
"iconName": "images-4, photos, macro, shot, picture",
|
|
12411
|
+
"variant": {
|
|
12412
|
+
"join": "square",
|
|
12413
|
+
"filled": "off",
|
|
12414
|
+
"radius": "0",
|
|
12415
|
+
"stroke": "2"
|
|
12416
|
+
},
|
|
12417
|
+
"createdAt": "2026-01-16T11:00:58.280999+00:00",
|
|
12418
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
12419
|
+
"componentName": "IconImages41"
|
|
12420
|
+
},
|
|
12393
12421
|
{
|
|
12394
12422
|
"category": "Photography & Video",
|
|
12395
12423
|
"svg": "<path d=\"M12 7C12 8.38071 10.8807 9.5 9.5 9.5C8.11929 9.5 7 8.38071 7 7C7 5.61929 8.11929 4.5 9.5 4.5C10.8807 4.5 12 5.61929 12 7Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M5.93814 12.971C3.52211 12.971 2 19 2 19H22C20.2005 12.7523 18.2925 9.85949 16.5 10.008C13.5232 10.2546 12.2165 14.9189 10.5 14.9189C9.0731 14.9189 7.74143 12.971 5.93814 12.971Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
@@ -20300,6 +20328,20 @@
|
|
|
20300
20328
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
20301
20329
|
"componentName": "IconStamps"
|
|
20302
20330
|
},
|
|
20331
|
+
{
|
|
20332
|
+
"category": "Location",
|
|
20333
|
+
"svg": "<path d=\"M6.29168 3C4.86656 4.59227 4 6.69494 4 9C4 13.9706 8.02944 18 13 18C15.6655 18 18.0604 16.8412 19.7083 15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M9.5 21H16.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M13 21V19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"13\" cy=\"9\" r=\"6\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
20334
|
+
"iconName": "standing-globe, travel, language",
|
|
20335
|
+
"variant": {
|
|
20336
|
+
"join": "square",
|
|
20337
|
+
"filled": "off",
|
|
20338
|
+
"radius": "0",
|
|
20339
|
+
"stroke": "2"
|
|
20340
|
+
},
|
|
20341
|
+
"createdAt": "2026-01-16T11:00:58.280999+00:00",
|
|
20342
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
20343
|
+
"componentName": "IconStandingGlobe"
|
|
20344
|
+
},
|
|
20303
20345
|
{
|
|
20304
20346
|
"category": "Interface General",
|
|
20305
20347
|
"svg": "<path d=\"M12 2.5L14.792 8.15717L21.035 9.06434L16.5175 13.4678L17.584 19.6857L12 16.75L6.41604 19.6857L7.48248 13.4678L2.96497 9.06434L9.20802 8.15717L12 2.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
@@ -22778,20 +22820,6 @@
|
|
|
22778
22820
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
22779
22821
|
"componentName": "IconVocalMicrophone"
|
|
22780
22822
|
},
|
|
22781
|
-
{
|
|
22782
|
-
"category": "Sound & Music",
|
|
22783
|
-
"svg": "<path d=\"M8 4V20M4 10V14M12 8V16M16 6V18M20 10V14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
22784
|
-
"iconName": "voice-1, wave",
|
|
22785
|
-
"variant": {
|
|
22786
|
-
"join": "square",
|
|
22787
|
-
"filled": "off",
|
|
22788
|
-
"radius": "0",
|
|
22789
|
-
"stroke": "2"
|
|
22790
|
-
},
|
|
22791
|
-
"createdAt": "2025-02-15T21:11:33.882223+00:00",
|
|
22792
|
-
"packageName": "square-outlined-radius-0-stroke-2",
|
|
22793
|
-
"componentName": "IconVoice1"
|
|
22794
|
-
},
|
|
22795
22823
|
{
|
|
22796
22824
|
"category": "AI & Magic",
|
|
22797
22825
|
"svg": "<path d=\"M17.4 19.092C12.647 20.2301 7 12 3 12\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.80078 17.4C10.6508 17.4 14.4179 10.2 20.1008 10.2\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
@@ -22834,6 +22862,34 @@
|
|
|
22834
22862
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
22835
22863
|
"componentName": "IconVoiceAndVideo"
|
|
22836
22864
|
},
|
|
22865
|
+
{
|
|
22866
|
+
"category": "Sound & Music",
|
|
22867
|
+
"svg": "<path d=\"M8 4V20M4 10V14M12 8V16M16 6V18M20 10V14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
22868
|
+
"iconName": "voice-high, wave",
|
|
22869
|
+
"variant": {
|
|
22870
|
+
"join": "square",
|
|
22871
|
+
"filled": "off",
|
|
22872
|
+
"radius": "0",
|
|
22873
|
+
"stroke": "2"
|
|
22874
|
+
},
|
|
22875
|
+
"createdAt": "2025-02-15T21:11:33.882223+00:00",
|
|
22876
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
22877
|
+
"componentName": "IconVoiceHigh"
|
|
22878
|
+
},
|
|
22879
|
+
{
|
|
22880
|
+
"category": "Sound & Music",
|
|
22881
|
+
"svg": "<path d=\"M8 6V18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M4 11V13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M12 10V14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M16 8V16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M20 11V13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
22882
|
+
"iconName": "voice-mid, wave",
|
|
22883
|
+
"variant": {
|
|
22884
|
+
"join": "square",
|
|
22885
|
+
"filled": "off",
|
|
22886
|
+
"radius": "0",
|
|
22887
|
+
"stroke": "2"
|
|
22888
|
+
},
|
|
22889
|
+
"createdAt": "2026-01-16T11:00:58.280999+00:00",
|
|
22890
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
22891
|
+
"componentName": "IconVoiceMid"
|
|
22892
|
+
},
|
|
22837
22893
|
{
|
|
22838
22894
|
"category": "Sound & Music",
|
|
22839
22895
|
"svg": "<path d=\"M21 9V11M17.5 4V16M14 7V9.25M10.5 5V8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><rect x=\"2.5\" y=\"12\" width=\"11.5\" height=\"8\" rx=\"4\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"6.5\" cy=\"16\" r=\"1.75\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -123,6 +123,7 @@ export type CentralIconName =
|
|
|
123
123
|
| "IconArrowShareRight"
|
|
124
124
|
| "IconArrowsHide"
|
|
125
125
|
| "IconArrowSplit"
|
|
126
|
+
| "IconArrowSplitDown"
|
|
126
127
|
| "IconArrowsRepeat"
|
|
127
128
|
| "IconArrowsRepeatCircle"
|
|
128
129
|
| "IconArrowsRepeatRightLeft"
|
|
@@ -884,6 +885,7 @@ export type CentralIconName =
|
|
|
884
885
|
| "IconImages2"
|
|
885
886
|
| "IconImages3"
|
|
886
887
|
| "IconImages4"
|
|
888
|
+
| "IconImages41"
|
|
887
889
|
| "IconImages5"
|
|
888
890
|
| "IconImagesCircle"
|
|
889
891
|
| "IconImageSparkle"
|
|
@@ -1449,6 +1451,7 @@ export type CentralIconName =
|
|
|
1449
1451
|
| "IconStableVoice"
|
|
1450
1452
|
| "IconStage"
|
|
1451
1453
|
| "IconStamps"
|
|
1454
|
+
| "IconStandingGlobe"
|
|
1452
1455
|
| "IconStar"
|
|
1453
1456
|
| "IconStarLines"
|
|
1454
1457
|
| "IconStarWand"
|
|
@@ -1626,10 +1629,11 @@ export type CentralIconName =
|
|
|
1626
1629
|
| "IconVisualIntelligence"
|
|
1627
1630
|
| "IconVkontakte"
|
|
1628
1631
|
| "IconVocalMicrophone"
|
|
1629
|
-
| "IconVoice1"
|
|
1630
1632
|
| "IconVoice2"
|
|
1631
1633
|
| "IconVoice3"
|
|
1632
1634
|
| "IconVoiceAndVideo"
|
|
1635
|
+
| "IconVoiceHigh"
|
|
1636
|
+
| "IconVoiceMid"
|
|
1633
1637
|
| "IconVoiceMode"
|
|
1634
1638
|
| "IconVoiceRecord"
|
|
1635
1639
|
| "IconVoiceSettings"
|