@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.146 → 1.1.148
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/IconAppearanceDarkMode/index.d.ts +4 -0
- package/IconAppearanceDarkMode/index.js +2 -0
- package/IconAppearanceDarkMode/index.js.map +1 -0
- package/IconAppearanceDarkMode/index.mjs +2 -0
- package/IconAppearanceDarkMode/index.mjs.map +1 -0
- package/IconAppearanceLightMode/index.d.ts +4 -0
- package/IconAppearanceLightMode/index.js +2 -0
- package/IconAppearanceLightMode/index.js.map +1 -0
- package/IconAppearanceLightMode/index.mjs +2 -0
- package/IconAppearanceLightMode/index.mjs.map +1 -0
- package/IconBananas/index.d.ts +4 -0
- package/IconBananas/index.js +2 -0
- package/IconBananas/index.js.map +1 -0
- package/IconBananas/index.mjs +2 -0
- package/IconBananas/index.mjs.map +1 -0
- package/IconEmail1/index.js +1 -1
- package/IconEmail1/index.js.map +1 -1
- package/IconEmail1/index.mjs +1 -1
- package/IconEmail1/index.mjs.map +1 -1
- package/IconEmail2/index.js +1 -1
- package/IconEmail2/index.js.map +1 -1
- package/IconEmail2/index.mjs +1 -1
- package/IconEmail2/index.mjs.map +1 -1
- package/IconEmail3/index.js +1 -1
- package/IconEmail3/index.js.map +1 -1
- package/IconEmail3/index.mjs +1 -1
- package/IconEmail3/index.mjs.map +1 -1
- package/IconEmailNotification/index.js +1 -1
- package/IconEmailNotification/index.js.map +1 -1
- package/IconEmailNotification/index.mjs +1 -1
- package/IconEmailNotification/index.mjs.map +1 -1
- package/IconStackOverflow/index.js +1 -1
- package/IconStackOverflow/index.js.map +1 -1
- package/IconStackOverflow/index.mjs +1 -1
- package/IconStackOverflow/index.mjs.map +1 -1
- package/README.md +3 -0
- package/filtered-icons.json +47 -5
- package/icons/index.d.ts +3 -0
- package/icons-index.json +10 -4
- package/index.d.ts +3 -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 +27 -6
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=x(o,t))||a.enumerable});return r};var c=(r,o,e)=>(e=r!=null?u(I(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>l(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconAppearanceDarkMode:()=>i,default:()=>h});module.exports=d(v);var p=c(require("react"));var s=c(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>s.default.createElement(m.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 C=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(C.Path,{d:"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z",fill:"currentColor"})),h=i;0&&(module.exports={IconAppearanceDarkMode});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceDarkMode/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 IconAppearanceDarkMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceDarkMode;\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,EAA6B,4BAEhBC,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,oLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAppearanceDarkMode_exports","__export","IconAppearanceDarkMode","IconAppearanceDarkMode_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAppearanceDarkMode","props","React","CentralIconBase","IconAppearanceDarkMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...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 a,Path as l}from"react-native-svg";var c=o=>e.createElement(t,{...o},e.createElement(a,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),e.createElement(l,{d:"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z",fill:"currentColor"})),g=c;export{c as IconAppearanceDarkMode,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceDarkMode/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 IconAppearanceDarkMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceDarkMode;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEI,EAAA,cAACH,EAAA,CACC,EAAE,oLACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconAppearanceDarkMode","props","React","CentralIconBase","IconAppearanceDarkMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!g.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=x(o,t))||a.enumerable});return r};var c=(r,o,e)=>(e=r!=null?u(I(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>l(n({},"__esModule",{value:!0}),r);var v={};P(v,{IconAppearanceLightMode:()=>i,default:()=>d});module.exports=h(v);var p=c(require("react"));var s=c(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>s.default.createElement(m.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 C=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(C.Path,{d:"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z",fill:"currentColor"})),d=i;0&&(module.exports={IconAppearanceLightMode});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceLightMode/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 IconAppearanceLightMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceLightMode;\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,6BAAAE,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,EAAqDC,GAE9D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,uLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAppearanceLightMode_exports","__export","IconAppearanceLightMode","IconAppearanceLightMode_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAppearanceLightMode","props","React","CentralIconBase","IconAppearanceLightMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...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 a,Path as l}from"react-native-svg";var c=o=>e.createElement(t,{...o},e.createElement(a,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),e.createElement(l,{d:"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z",fill:"currentColor"})),P=c;export{c as IconAppearanceLightMode,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceLightMode/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 IconAppearanceLightMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceLightMode;\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,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEI,EAAA,cAACH,EAAA,CACC,EAAE,uLACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconAppearanceLightMode","props","React","CentralIconBase","IconAppearanceLightMode_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 x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(s=B(o,e))||s.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(x(r)):{},C(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>C(n({},"__esModule",{value:!0}),r);var k={};d(k,{IconBananas:()=>i,default:()=>h});module.exports=g(k);var p=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>l.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 a=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(a.Path,{d:"M17.5 14.25C19 12.75 19.3375 10.9659 19.5 10.25L18.5 9.5C14.8876 11.2225 10.25 12.0991 6.75 8.5",stroke:"currentColor",strokeWidth:"1.90004"}),p.default.createElement(a.Path,{d:"M6.50088 4L3.50088 4.49851V7.99328C0.870065 11.6255 3.79644 18.5728 10.0674 20.1664C16.3383 21.7601 21.5009 17.3044 21.5009 13.9843L20.5954 13.1155C14.7387 16.1441 7.34051 15.8441 6.50098 7.75L6.50088 4Z",stroke:"currentColor",strokeWidth:"1.90004",strokeLinecap:"square"})),h=i;0&&(module.exports={IconBananas});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBananas/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 IconBananas: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 14.25C19 12.75 19.3375 10.9659 19.5 10.25L18.5 9.5C14.8876 11.2225 10.25 12.0991 6.75 8.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.90004\"\n />\n <Path\n d=\"M6.50088 4L3.50088 4.49851V7.99328C0.870065 11.6255 3.79644 18.5728 10.0674 20.1664C16.3383 21.7601 21.5009 17.3044 21.5009 13.9843L20.5954 13.1155C14.7387 16.1441 7.34051 15.8441 6.50098 7.75L6.50088 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.90004\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBananas;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kGACF,OAAO,eACP,YAAY,UACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8MACF,OAAO,eACP,YAAY,UACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconBananas_exports","__export","IconBananas","IconBananas_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBananas","props","React","CentralIconBase","IconBananas_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import a from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...p})=>a.createElement(s,{...p,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 n}from"react-native-svg";var C=o=>t.createElement(e,{...o},t.createElement(n,{d:"M17.5 14.25C19 12.75 19.3375 10.9659 19.5 10.25L18.5 9.5C14.8876 11.2225 10.25 12.0991 6.75 8.5",stroke:"currentColor",strokeWidth:"1.90004"}),t.createElement(n,{d:"M6.50088 4L3.50088 4.49851V7.99328C0.870065 11.6255 3.79644 18.5728 10.0674 20.1664C16.3383 21.7601 21.5009 17.3044 21.5009 13.9843L20.5954 13.1155C14.7387 16.1441 7.34051 15.8441 6.50098 7.75L6.50088 4Z",stroke:"currentColor",strokeWidth:"1.90004",strokeLinecap:"square"})),P=C;export{C as IconBananas,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBananas/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 IconBananas: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 14.25C19 12.75 19.3375 10.9659 19.5 10.25L18.5 9.5C14.8876 11.2225 10.25 12.0991 6.75 8.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.90004\"\n />\n <Path\n d=\"M6.50088 4L3.50088 4.49851V7.99328C0.870065 11.6255 3.79644 18.5728 10.0674 20.1664C16.3383 21.7601 21.5009 17.3044 21.5009 13.9843L20.5954 13.1155C14.7387 16.1441 7.34051 15.8441 6.50098 7.75L6.50088 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.90004\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBananas;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kGACF,OAAO,eACP,YAAY,UACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8MACF,OAAO,eACP,YAAY,UACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBananas","props","React","CentralIconBase","IconBananas_default"]}
|
package/IconEmail1/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var M=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,V)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of M(o))!B.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(V=i(o,e))||V.enumerable});return r};var l=(r,o,t)=>(t=r!=null?f(u(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),Z=r=>a(n({},"__esModule",{value:!0}),r);var P={};I(P,{IconEmail1:()=>c,default:()=>x});module.exports=Z(P);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),C=({children:r,size:o=24,...t})=>m.default.createElement(s.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var H=require("react-native-svg"),c=r=>p.default.createElement(C,{...r},p.default.createElement(H.Path,{d:"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3 5V4H2V5H3ZM3 19H2V20H3V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z",fill:"currentColor"}),p.default.createElement(H.Path,{d:"M3.5 6.04547L12 13L20.5 6.04547",stroke:"currentColor",strokeWidth:"2"})),x=c;0&&(module.exports={IconEmail1});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconEmail1/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEmail1/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 IconEmail1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3
|
|
1
|
+
{"version":3,"sources":["../src/IconEmail1/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 IconEmail1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3 5V4H2V5H3ZM3 19H2V20H3V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.5 6.04547L12 13L20.5 6.04547\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmail1;\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,uJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconEmail1_exports","__export","IconEmail1","IconEmail1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconEmail1","props","React","CentralIconBase","IconEmail1_default"]}
|
package/IconEmail1/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import t from"react";import H from"react";import{Svg as V}from"react-native-svg";var e=({children:o,size:r=24,...p})=>H.createElement(V,{...p,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 n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3 5V4H2V5H3ZM3 19H2V20H3V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z",fill:"currentColor"}),t.createElement(n,{d:"M3.5 6.04547L12 13L20.5 6.04547",stroke:"currentColor",strokeWidth:"2"})),B=a;export{a as IconEmail1,B as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconEmail1/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEmail1/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 IconEmail1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3
|
|
1
|
+
{"version":3,"sources":["../src/IconEmail1/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 IconEmail1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3 5V4H2V5H3ZM3 19H2V20H3V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.5 6.04547L12 13L20.5 6.04547\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmail1;\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,uJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kCACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmail1","props","React","CentralIconBase","IconEmail1_default"]}
|
package/IconEmail2/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var M=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,V)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of M(o))!B.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(V=i(o,e))||V.enumerable});return r};var l=(r,o,t)=>(t=r!=null?f(u(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),Z=r=>a(n({},"__esModule",{value:!0}),r);var P={};I(P,{IconEmail2:()=>c,default:()=>x});module.exports=Z(P);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),C=({children:r,size:o=24,...t})=>m.default.createElement(s.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var H=require("react-native-svg"),c=r=>p.default.createElement(C,{...r},p.default.createElement(H.Path,{d:"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3 5V4H2V5H3ZM3 19H2V20H3V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z",fill:"currentColor"}),p.default.createElement(H.Path,{d:"M3.28906 8.6441L12.0009 13L20.7127 8.6441",stroke:"currentColor",strokeWidth:"2"})),x=c;0&&(module.exports={IconEmail2});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconEmail2/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEmail2/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 IconEmail2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3
|
|
1
|
+
{"version":3,"sources":["../src/IconEmail2/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 IconEmail2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3 5V4H2V5H3ZM3 19H2V20H3V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.28906 8.6441L12.0009 13L20.7127 8.6441\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmail2;\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,uJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4CACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconEmail2_exports","__export","IconEmail2","IconEmail2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconEmail2","props","React","CentralIconBase","IconEmail2_default"]}
|
package/IconEmail2/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import t from"react";import H from"react";import{Svg as V}from"react-native-svg";var e=({children:o,size:r=24,...p})=>H.createElement(V,{...p,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 n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3 5V4H2V5H3ZM3 19H2V20H3V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z",fill:"currentColor"}),t.createElement(n,{d:"M3.28906 8.6441L12.0009 13L20.7127 8.6441",stroke:"currentColor",strokeWidth:"2"})),B=a;export{a as IconEmail2,B as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconEmail2/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEmail2/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 IconEmail2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3
|
|
1
|
+
{"version":3,"sources":["../src/IconEmail2/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 IconEmail2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3 5V4H2V5H3ZM3 19H2V20H3V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.28906 8.6441L12.0009 13L20.7127 8.6441\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmail2;\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,uJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4CACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmail2","props","React","CentralIconBase","IconEmail2_default"]}
|
package/IconEmail3/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=B(o,e))||a.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(x(r)):{},C(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>C(n({},"__esModule",{value:!0}),r);var v={};d(v,{IconEmail3:()=>i,default:()=>h});module.exports=g(v);var p=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>l.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 s=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(s.Path,{d:"M21 5H3V19H21V5Z",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(s.Path,{d:"M3.25195 9.18597C5.71447 10.957 8.73564 12 12.0004 12C15.2652 12 18.2864 10.957 20.7489 9.18597",stroke:"currentColor",strokeWidth:"2"})),h=i;0&&(module.exports={IconEmail3});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconEmail3/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEmail3/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 IconEmail3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.
|
|
1
|
+
{"version":3,"sources":["../src/IconEmail3/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 IconEmail3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M21 5H3V19H21V5Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M3.25195 9.18597C5.71447 10.957 8.73564 12 12.0004 12C15.2652 12 18.2864 10.957 20.7489 9.18597\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmail3;\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,QAAK,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,EACjE,EAAAA,QAAA,cAAC,QACC,EAAE,kGACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconEmail3_exports","__export","IconEmail3","IconEmail3_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconEmail3","props","React","CentralIconBase","IconEmail3_default"]}
|
package/IconEmail3/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import t from"react";import s from"react";import{Svg as a}from"react-native-svg";var e=({children:o,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"},o);import{Path as n}from"react-native-svg";var C=o=>t.createElement(e,{...o},t.createElement(n,{d:"M21 5H3V19H21V5Z",stroke:"currentColor",strokeWidth:"2"}),t.createElement(n,{d:"M3.25195 9.18597C5.71447 10.957 8.73564 12 12.0004 12C15.2652 12 18.2864 10.957 20.7489 9.18597",stroke:"currentColor",strokeWidth:"2"})),P=C;export{C as IconEmail3,P as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconEmail3/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEmail3/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 IconEmail3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.
|
|
1
|
+
{"version":3,"sources":["../src/IconEmail3/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 IconEmail3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M21 5H3V19H21V5Z\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M3.25195 9.18597C5.71447 10.957 8.73564 12 12.0004 12C15.2652 12 18.2864 10.957 20.7489 9.18597\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmail3;\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,CAAK,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,EACjEG,EAAA,cAACH,EAAA,CACC,EAAE,kGACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmail3","props","React","CentralIconBase","IconEmail3_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!h.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(s=d(o,e))||s.enumerable});return r};var l=(r,o,t)=>(t=r!=null?u(I(r)):{},a(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),P=r=>a(p({},"__esModule",{value:!0}),r);var k={};x(k,{IconEmailNotification:()=>f,default:()=>g});module.exports=P(k);var n=l(require("react"));var m=l(require("react")),i=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.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 C=require("react-native-svg"),f=r=>n.default.createElement(c,{...r},n.default.createElement(C.Path,{d:"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(C.Path,{d:"M14 5H3V19H21V12",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(C.Path,{d:"M16.0014 11.4609C14.7281 11.8123 13.387 12 12.0019 12C8.74424 12 5.72912 10.9615 3.26953 9.19751",stroke:"currentColor",strokeWidth:"2"})),g=f;0&&(module.exports={IconEmailNotification});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEmailNotification/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 IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconEmailNotification/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 IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path d=\"M14 5H3V19H21V12\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M16.0014 11.4609C14.7281 11.8123 13.387 12 12.0019 12C8.74424 12 5.72912 10.9615 3.26953 9.19751\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmailNotification;\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,2BAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iHACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,EACjE,EAAAA,QAAA,cAAC,QACC,EAAE,mGACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconEmailNotification_exports","__export","IconEmailNotification","IconEmailNotification_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconEmailNotification","props","React","CentralIconBase","IconEmailNotification_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import o from"react";import C from"react";import{Svg as s}from"react-native-svg";var n=({children:t,size:r=24,...p})=>C.createElement(s,{...p,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 a=t=>o.createElement(n,{...t},o.createElement(e,{d:"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M14 5H3V19H21V12",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M16.0014 11.4609C14.7281 11.8123 13.387 12 12.0019 12C8.74424 12 5.72912 10.9615 3.26953 9.19751",stroke:"currentColor",strokeWidth:"2"})),h=a;export{a as IconEmailNotification,h as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEmailNotification/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 IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconEmailNotification/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 IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path d=\"M14 5H3V19H21V12\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M16.0014 11.4609C14.7281 11.8123 13.387 12 12.0019 12C8.74424 12 5.72912 10.9615 3.26953 9.19751\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmailNotification;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iHACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAI,EACjEG,EAAA,cAACH,EAAA,CACC,EAAE,mGACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmailNotification","props","React","CentralIconBase","IconEmailNotification_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)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 i(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(C=I(o,e))||C.enumerable});return r};var L=(r,o,t)=>(t=r!=null?B(u(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var S={};P(S,{IconStackOverflow:()=>f,default:()=>v});module.exports=g(S);var p=L(require("react"));var l=L(require("react")),m=require("react-native-svg"),s=({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 c=require("react-native-svg"),f=r=>p.default.createElement(s,{...r},p.default.createElement(c.Path,{d:"M21.0056 10.0319C20.0787 10.7255 19.262 11.5292 18.5556 12.4431L18.5847 12.4528V12.4625L18.5556 12.4431C17.8635 13.3368 17.2854 14.3133 16.8347 15.35L16.8153 15.3986C16.3719 16.4296 16.0679 17.5151 15.9111 18.6264V18.6458C15.8269 19.2421 15.7847 19.8514 15.7847 20.4736C15.7847 21.0083 15.8528 21.4847 15.9111 22H3V18.6264H14.1806L14.2486 18.2083L3.48611 15.35L4.39028 12.0444L15.2889 14.9417L15.4444 14.6111L5.64444 9.03056L7.375 6.05556L17.3111 11.7236L17.5542 11.4417L9.41667 3.42083L11.8667 1L21.0056 10.0319Z",fill:"currentColor"})),v=f;0&&(module.exports={IconStackOverflow});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconStackOverflow/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path
|
|
1
|
+
{"version":3,"sources":["../src/IconStackOverflow/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 IconStackOverflow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.0056 10.0319C20.0787 10.7255 19.262 11.5292 18.5556 12.4431L18.5847 12.4528V12.4625L18.5556 12.4431C17.8635 13.3368 17.2854 14.3133 16.8347 15.35L16.8153 15.3986C16.3719 16.4296 16.0679 17.5151 15.9111 18.6264V18.6458C15.8269 19.2421 15.7847 19.8514 15.7847 20.4736C15.7847 21.0083 15.8528 21.4847 15.9111 22H3V18.6264H14.1806L14.2486 18.2083L3.48611 15.35L4.39028 12.0444L15.2889 14.9417L15.4444 14.6111L5.64444 9.03056L7.375 6.05556L17.3111 11.7236L17.5542 11.4417L9.41667 3.42083L11.8667 1L21.0056 10.0319Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackOverflow;\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,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,ogBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconStackOverflow_exports","__export","IconStackOverflow","IconStackOverflow_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconStackOverflow","props","React","CentralIconBase","IconStackOverflow_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...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 a}from"react-native-svg";var L=o=>e.createElement(t,{...o},e.createElement(a,{d:"M21.0056 10.0319C20.0787 10.7255 19.262 11.5292 18.5556 12.4431L18.5847 12.4528V12.4625L18.5556 12.4431C17.8635 13.3368 17.2854 14.3133 16.8347 15.35L16.8153 15.3986C16.3719 16.4296 16.0679 17.5151 15.9111 18.6264V18.6458C15.8269 19.2421 15.7847 19.8514 15.7847 20.4736C15.7847 21.0083 15.8528 21.4847 15.9111 22H3V18.6264H14.1806L14.2486 18.2083L3.48611 15.35L4.39028 12.0444L15.2889 14.9417L15.4444 14.6111L5.64444 9.03056L7.375 6.05556L17.3111 11.7236L17.5542 11.4417L9.41667 3.42083L11.8667 1L21.0056 10.0319Z",fill:"currentColor"})),x=L;export{L as IconStackOverflow,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconStackOverflow/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path
|
|
1
|
+
{"version":3,"sources":["../src/IconStackOverflow/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 IconStackOverflow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.0056 10.0319C20.0787 10.7255 19.262 11.5292 18.5556 12.4431L18.5847 12.4528V12.4625L18.5556 12.4431C17.8635 13.3368 17.2854 14.3133 16.8347 15.35L16.8153 15.3986C16.3719 16.4296 16.0679 17.5151 15.9111 18.6264V18.6458C15.8269 19.2421 15.7847 19.8514 15.7847 20.4736C15.7847 21.0083 15.8528 21.4847 15.9111 22H3V18.6264H14.1806L14.2486 18.2083L3.48611 15.35L4.39028 12.0444L15.2889 14.9417L15.4444 14.6111L5.64444 9.03056L7.375 6.05556L17.3111 11.7236L17.5542 11.4417L9.41667 3.42083L11.8667 1L21.0056 10.0319Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackOverflow;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,ogBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconStackOverflow","props","React","CentralIconBase","IconStackOverflow_default"]}
|
package/README.md
CHANGED
|
@@ -856,6 +856,7 @@ Below is a complete list of available icons:
|
|
|
856
856
|
- IconApples
|
|
857
857
|
- IconAvocado
|
|
858
858
|
- IconBanana
|
|
859
|
+
- IconBananas
|
|
859
860
|
- IconBirthdayCake
|
|
860
861
|
- IconBottle
|
|
861
862
|
- IconBreakfast
|
|
@@ -986,6 +987,8 @@ Below is a complete list of available icons:
|
|
|
986
987
|
|
|
987
988
|
- IconAnchor1
|
|
988
989
|
- IconAnchor2
|
|
990
|
+
- IconAppearanceDarkMode
|
|
991
|
+
- IconAppearanceLightMode
|
|
989
992
|
- IconArchive1
|
|
990
993
|
- IconArrowBoxLeft
|
|
991
994
|
- IconArrowBoxRight
|
package/filtered-icons.json
CHANGED
|
@@ -826,6 +826,34 @@
|
|
|
826
826
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
827
827
|
"componentName": "IconApiConnection"
|
|
828
828
|
},
|
|
829
|
+
{
|
|
830
|
+
"category": "Interface General",
|
|
831
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z\" fill=\"currentColor\"/>",
|
|
832
|
+
"iconName": "appearance-dark-mode, switch",
|
|
833
|
+
"variant": {
|
|
834
|
+
"join": "square",
|
|
835
|
+
"filled": "off",
|
|
836
|
+
"radius": "0",
|
|
837
|
+
"stroke": "2"
|
|
838
|
+
},
|
|
839
|
+
"createdAt": "2026-02-26T08:00:56.772353+00:00",
|
|
840
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
841
|
+
"componentName": "IconAppearanceDarkMode"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"category": "Interface General",
|
|
845
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z\" fill=\"currentColor\"/>",
|
|
846
|
+
"iconName": "appearance-light-mode, switch",
|
|
847
|
+
"variant": {
|
|
848
|
+
"join": "square",
|
|
849
|
+
"filled": "off",
|
|
850
|
+
"radius": "0",
|
|
851
|
+
"stroke": "2"
|
|
852
|
+
},
|
|
853
|
+
"createdAt": "2026-02-26T08:00:56.772353+00:00",
|
|
854
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
855
|
+
"componentName": "IconAppearanceLightMode"
|
|
856
|
+
},
|
|
829
857
|
{
|
|
830
858
|
"category": "Social Media & Brands",
|
|
831
859
|
"svg": "<path d=\"M20.0035 7.15814C19.3171 7.5784 18.7485 8.16594 18.351 8.86579C17.9534 9.56563 17.74 10.3549 17.7305 11.1597C17.7332 12.0655 18.0016 12.9506 18.5024 13.7054C19.0032 14.4602 19.7144 15.0515 20.5479 15.4061C20.2193 16.4664 19.7329 17.4712 19.1051 18.3868C18.2069 19.6798 17.2677 20.9727 15.8387 20.9727C14.4096 20.9727 14.0421 20.1425 12.3952 20.1425C10.7892 20.1425 10.2175 21 8.91088 21C7.60426 21 6.69246 19.8022 5.6444 18.3323C4.25999 16.2732 3.49913 13.8583 3.45312 11.3774C3.45312 7.29427 6.10722 5.13028 8.72032 5.13028C10.1086 5.13028 11.2656 6.04208 12.1366 6.04208C12.9669 6.04208 14.2599 5.07572 15.8387 5.07572C16.6504 5.05478 17.4548 5.23375 18.1811 5.59689C18.9074 5.96003 19.5332 6.49619 20.0035 7.15814ZM15.0901 3.34726C15.7861 2.52858 16.18 1.49589 16.2062 0.421702C16.2074 0.280092 16.1937 0.13875 16.1654 0C14.9699 0.116777 13.8644 0.686551 13.0757 1.59245C12.3731 2.37851 11.9643 3.38362 11.9188 4.43697C11.9193 4.56507 11.933 4.69278 11.9597 4.81808C12.0539 4.8359 12.1496 4.84503 12.2455 4.84536C12.7964 4.80152 13.3327 4.64611 13.8217 4.38858C14.3108 4.13104 14.7423 3.77676 15.0901 3.34726Z\" fill=\"currentColor\"/>",
|
|
@@ -2604,6 +2632,20 @@
|
|
|
2604
2632
|
"packageName": "square-outlined-radius-0-stroke-2",
|
|
2605
2633
|
"componentName": "IconBanana"
|
|
2606
2634
|
},
|
|
2635
|
+
{
|
|
2636
|
+
"category": "Food",
|
|
2637
|
+
"svg": "<path d=\"M17.5 14.25C19 12.75 19.3375 10.9659 19.5 10.25L18.5 9.5C14.8876 11.2225 10.25 12.0991 6.75 8.5\" stroke=\"currentColor\" stroke-width=\"1.90004\"/><path d=\"M6.50088 4L3.50088 4.49851V7.99328C0.870065 11.6255 3.79644 18.5728 10.0674 20.1664C16.3383 21.7601 21.5009 17.3044 21.5009 13.9843L20.5954 13.1155C14.7387 16.1441 7.34051 15.8441 6.50098 7.75L6.50088 4Z\" stroke=\"currentColor\" stroke-width=\"1.90004\" stroke-linecap=\"square\"/>",
|
|
2638
|
+
"iconName": "bananas, fruits",
|
|
2639
|
+
"variant": {
|
|
2640
|
+
"join": "square",
|
|
2641
|
+
"filled": "off",
|
|
2642
|
+
"radius": "0",
|
|
2643
|
+
"stroke": "2"
|
|
2644
|
+
},
|
|
2645
|
+
"createdAt": "2026-02-26T11:00:43.869424+00:00",
|
|
2646
|
+
"packageName": "square-outlined-radius-0-stroke-2",
|
|
2647
|
+
"componentName": "IconBananas"
|
|
2648
|
+
},
|
|
2607
2649
|
{
|
|
2608
2650
|
"category": "Building",
|
|
2609
2651
|
"svg": "<path d=\"M12 2.5L3 7V9H21V7L12 2.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M21 20H3L4 17H20L21 20Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M19 9V17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M15 17V9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M5 9V17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M9 17V9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
|
@@ -9312,7 +9354,7 @@
|
|
|
9312
9354
|
},
|
|
9313
9355
|
{
|
|
9314
9356
|
"category": "Communication",
|
|
9315
|
-
"svg": "<path d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3
|
|
9357
|
+
"svg": "<path d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3 5V4H2V5H3ZM3 19H2V20H3V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z\" fill=\"currentColor\"/><path d=\"M3.5 6.04547L12 13L20.5 6.04547\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
9316
9358
|
"iconName": "email-1, envelope",
|
|
9317
9359
|
"variant": {
|
|
9318
9360
|
"join": "square",
|
|
@@ -9340,7 +9382,7 @@
|
|
|
9340
9382
|
},
|
|
9341
9383
|
{
|
|
9342
9384
|
"category": "Communication",
|
|
9343
|
-
"svg": "<path d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3
|
|
9385
|
+
"svg": "<path d=\"M21 5H22V4H21V5ZM21 19V20H22V19H21ZM3 5V4H2V5H3ZM3 19H2V20H3V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z\" fill=\"currentColor\"/><path d=\"M3.28906 8.6441L12.0009 13L20.7127 8.6441\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
9344
9386
|
"iconName": "email-2, envelope",
|
|
9345
9387
|
"variant": {
|
|
9346
9388
|
"join": "square",
|
|
@@ -9354,7 +9396,7 @@
|
|
|
9354
9396
|
},
|
|
9355
9397
|
{
|
|
9356
9398
|
"category": "Communication",
|
|
9357
|
-
"svg": "<path d=\"M3.
|
|
9399
|
+
"svg": "<path d=\"M21 5H3V19H21V5Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M3.25195 9.18597C5.71447 10.957 8.73564 12 12.0004 12C15.2652 12 18.2864 10.957 20.7489 9.18597\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
9358
9400
|
"iconName": "email-3, envelope",
|
|
9359
9401
|
"variant": {
|
|
9360
9402
|
"join": "square",
|
|
@@ -9368,7 +9410,7 @@
|
|
|
9368
9410
|
},
|
|
9369
9411
|
{
|
|
9370
9412
|
"category": "Communication",
|
|
9371
|
-
"svg": "<path d=\"
|
|
9413
|
+
"svg": "<path d=\"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M14 5H3V19H21V12\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M16.0014 11.4609C14.7281 11.8123 13.387 12 12.0019 12C8.74424 12 5.72912 10.9615 3.26953 9.19751\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
9372
9414
|
"iconName": "email-notification, badge, envelope",
|
|
9373
9415
|
"variant": {
|
|
9374
9416
|
"join": "square",
|
|
@@ -21870,7 +21912,7 @@
|
|
|
21870
21912
|
},
|
|
21871
21913
|
{
|
|
21872
21914
|
"category": "Social Media & Brands",
|
|
21873
|
-
"svg": "<
|
|
21915
|
+
"svg": "<path d=\"M21.0056 10.0319C20.0787 10.7255 19.262 11.5292 18.5556 12.4431L18.5847 12.4528V12.4625L18.5556 12.4431C17.8635 13.3368 17.2854 14.3133 16.8347 15.35L16.8153 15.3986C16.3719 16.4296 16.0679 17.5151 15.9111 18.6264V18.6458C15.8269 19.2421 15.7847 19.8514 15.7847 20.4736C15.7847 21.0083 15.8528 21.4847 15.9111 22H3V18.6264H14.1806L14.2486 18.2083L3.48611 15.35L4.39028 12.0444L15.2889 14.9417L15.4444 14.6111L5.64444 9.03056L7.375 6.05556L17.3111 11.7236L17.5542 11.4417L9.41667 3.42083L11.8667 1L21.0056 10.0319Z\" fill=\"currentColor\"/>",
|
|
21874
21916
|
"iconName": "stack-overflow",
|
|
21875
21917
|
"variant": {
|
|
21876
21918
|
"join": "square",
|
package/icons/index.d.ts
CHANGED
|
@@ -58,6 +58,8 @@ export type CentralIconName =
|
|
|
58
58
|
| "IconAnvil"
|
|
59
59
|
| "IconApiAggregate"
|
|
60
60
|
| "IconApiConnection"
|
|
61
|
+
| "IconAppearanceDarkMode"
|
|
62
|
+
| "IconAppearanceLightMode"
|
|
61
63
|
| "IconApple"
|
|
62
64
|
| "IconAppleIntelligence"
|
|
63
65
|
| "IconAppleIntelligenceIcon"
|
|
@@ -185,6 +187,7 @@ export type CentralIconName =
|
|
|
185
187
|
| "IconBag3"
|
|
186
188
|
| "IconBalloon"
|
|
187
189
|
| "IconBanana"
|
|
190
|
+
| "IconBananas"
|
|
188
191
|
| "IconBank"
|
|
189
192
|
| "IconBank2"
|
|
190
193
|
| "IconBanknote1"
|