@central-icons-react-native/square-outlined-radius-0-stroke-1 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/IconBubbleQuestion/index.js +1 -1
- package/IconBubbleQuestion/index.js.map +1 -1
- package/IconBubbleQuestion/index.mjs +1 -1
- package/IconBubbleQuestion/index.mjs.map +1 -1
- 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 +48 -6
- 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 +28 -7
|
@@ -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)),v=r=>l(n({},"__esModule",{value:!0}),r);var d={};g(d,{IconAppearanceDarkMode:()=>i,default:()=>y});module.exports=v(d);var p=c(require("react"));var m=c(require("react")),s=require("react-native-svg"),f=({children:r,size:o=24,...e})=>m.default.createElement(s.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.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"}),p.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"})),y=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 <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 <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\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,QACC,EAAE,oLACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,CACxD,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(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"}),e.createElement(a,{cx:"12",cy:"12",r:"9.5",stroke:"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 <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 <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\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,cAACH,EAAA,CACC,EAAE,oLACF,KAAK,eACP,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,CACxD,EAIGM,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 y={};P(y,{IconAppearanceLightMode:()=>i,default:()=>v});module.exports=h(y);var p=c(require("react"));var m=c(require("react")),s=require("react-native-svg"),f=({children:r,size:o=24,...e})=>m.default.createElement(s.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.5",stroke:"currentColor"}),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"})),v=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.5\" stroke=\"currentColor\" />\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,MAAM,OAAO,eAAe,EACtD,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.5",stroke:"currentColor"}),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.5\" stroke=\"currentColor\" />\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,MAAM,OAAO,eAAe,EACtDI,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 B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of i(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=I(o,t))||C.enumerable});return r};var m=(r,o,e)=>(e=r!=null?B(x(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>s(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconBananas:()=>u,default:()=>d});module.exports=v(h);var p=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...e})=>l.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 a=require("react-native-svg"),u=r=>p.default.createElement(f,{...r},p.default.createElement(a.Path,{d:"M6.5 3.5L3.49988 4V7.74328C0.864313 11.3755 3.76345 18.3228 10.0457 19.9164C16.3279 21.5101 21.4999 17.0544 21.4999 13.7343L20.5927 12.8655C14.7255 15.8941 7.34105 15.8374 6.5 7.74328V3.5Z",stroke:"currentColor",strokeLinecap:"square"}),p.default.createElement(a.Path,{d:"M17.5016 14.1C19.0016 12.6 19.3391 10.7159 19.5016 10L18.5016 9.25C18.5016 9.25 13.0015 15 6.60156 8",stroke:"currentColor"})),d=u;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=\"M6.5 3.5L3.49988 4V7.74328C0.864313 11.3755 3.76345 18.3228 10.0457 19.9164C16.3279 21.5101 21.4999 17.0544 21.4999 13.7343L20.5927 12.8655C14.7255 15.8941 7.34105 15.8374 6.5 7.74328V3.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M17.5016 14.1C19.0016 12.6 19.3391 10.7159 19.5016 10L18.5016 9.25C18.5016 9.25 13.0015 15 6.60156 8\"\n stroke=\"currentColor\"\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,+LACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uGACF,OAAO,eACT,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 e from"react";import a from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...p})=>a.createElement(C,{...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 s=o=>e.createElement(t,{...o},e.createElement(n,{d:"M6.5 3.5L3.49988 4V7.74328C0.864313 11.3755 3.76345 18.3228 10.0457 19.9164C16.3279 21.5101 21.4999 17.0544 21.4999 13.7343L20.5927 12.8655C14.7255 15.8941 7.34105 15.8374 6.5 7.74328V3.5Z",stroke:"currentColor",strokeLinecap:"square"}),e.createElement(n,{d:"M17.5016 14.1C19.0016 12.6 19.3391 10.7159 19.5016 10L18.5016 9.25C18.5016 9.25 13.0015 15 6.60156 8",stroke:"currentColor"})),P=s;export{s 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=\"M6.5 3.5L3.49988 4V7.74328C0.864313 11.3755 3.76345 18.3228 10.0457 19.9164C16.3279 21.5101 21.4999 17.0544 21.4999 13.7343L20.5927 12.8655C14.7255 15.8941 7.34105 15.8374 6.5 7.74328V3.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M17.5016 14.1C19.0016 12.6 19.3391 10.7159 19.5016 10L18.5016 9.25C18.5016 9.25 13.0015 15 6.60156 8\"\n stroke=\"currentColor\"\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,+LACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uGACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBananas","props","React","CentralIconBase","IconBananas_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var a=Object.create;var e=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,u=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var L in o)e(r,L,{get:o[L],enumerable:!0})},M=(r,o,L,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of c(o))!u.call(r,t)&&t!==L&&e(r,t,{get:()=>o[t],enumerable:!(p=m(o,t))||p.enumerable});return r};var Z=(r,o,L)=>(L=r!=null?a(f(r)):{},M(o||!r||!r.__esModule?e(L,"default",{value:r,enumerable:!0}):L,r)),B=r=>M(e({},"__esModule",{value:!0}),r);var x={};i(x,{IconBubbleQuestion:()=>s,default:()=>I});module.exports=B(x);var n=Z(require("react"));var l=Z(require("react")),H=require("react-native-svg"),V=({children:r,size:o=24,...L})=>l.default.createElement(H.Svg,{...L,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"),s=r=>n.default.createElement(V,{...r},n.default.createElement(C.Path,{d:"M3.5 3.5L3.5 3L3 3V3.5H3.5ZM20.5 3.50002H21V3.00002L20.5 3.00002V3.50002ZM20.5 18.5V19H21V18.5H20.5ZM3.5 18.5H3V19L3.5 19L3.5 18.5ZM11.9979 21L11.6767 21.3832L11.996 21.6509L12.3169 21.3851L11.9979 21ZM15.0155 18.5V18H14.8353L14.6965 18.115L15.0155 18.5ZM9.0155 18.5L9.3367 18.1168L9.19735 18L9.0155 18L9.0155 18.5ZM11.522 11.9133V12.4133H12.522V11.9133H11.522ZM12.8816 10.6136L13.1626 11.0271L13.1627 11.0271L12.8816 10.6136ZM3.5 4L20.5 4.00002V3.00002L3.5 3L3.5 4ZM20 3.50002V18.5H21V3.50002H20ZM4 18.5V3.5H3V18.5H4ZM20.5 18H15.0155V19H20.5V18ZM14.6965 18.115L11.6789 20.615L12.3169 21.3851L15.3345 18.8851L14.6965 18.115ZM12.3191 20.6168L9.3367 18.1168L8.6943 18.8832L11.6767 21.3832L12.3191 20.6168ZM9.0155 18L3.5 18L3.5 19L9.0155 19L9.0155 18ZM12.522 11.9133C12.522 11.4956 12.7738 11.2914 13.1626 11.0271L12.6005 10.2C12.2306 10.4515 11.522 10.9226 11.522 11.9133H12.522ZM13.1627 11.0271C13.5663 10.7526 14.1237 10.2947 14.1237 9.42767H13.1237C13.1237 9.773 12.9389 9.96998 12.6005 10.2001L13.1627 11.0271ZM14.1237 9.42767C14.1237 8.31932 13.2331 7.41331 12.1237 7.41331V8.41331C12.6718 8.41331 13.1237 8.8626 13.1237 9.42767H14.1237ZM12.1237 7.41331C11.0143 7.41331 10.1237 8.31932 10.1237 9.42767H11.1237C11.1237 8.8626 11.5755 8.41331 12.1237 8.41331V7.41331Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"
|
|
1
|
+
"use strict";var a=Object.create;var e=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,u=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var L in o)e(r,L,{get:o[L],enumerable:!0})},M=(r,o,L,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of c(o))!u.call(r,t)&&t!==L&&e(r,t,{get:()=>o[t],enumerable:!(p=m(o,t))||p.enumerable});return r};var Z=(r,o,L)=>(L=r!=null?a(f(r)):{},M(o||!r||!r.__esModule?e(L,"default",{value:r,enumerable:!0}):L,r)),B=r=>M(e({},"__esModule",{value:!0}),r);var x={};i(x,{IconBubbleQuestion:()=>s,default:()=>I});module.exports=B(x);var n=Z(require("react"));var l=Z(require("react")),H=require("react-native-svg"),V=({children:r,size:o=24,...L})=>l.default.createElement(H.Svg,{...L,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"),s=r=>n.default.createElement(V,{...r},n.default.createElement(C.Path,{d:"M3.5 3.5L3.5 3L3 3V3.5H3.5ZM20.5 3.50002H21V3.00002L20.5 3.00002V3.50002ZM20.5 18.5V19H21V18.5H20.5ZM3.5 18.5H3V19L3.5 19L3.5 18.5ZM11.9979 21L11.6767 21.3832L11.996 21.6509L12.3169 21.3851L11.9979 21ZM15.0155 18.5V18H14.8353L14.6965 18.115L15.0155 18.5ZM9.0155 18.5L9.3367 18.1168L9.19735 18L9.0155 18L9.0155 18.5ZM11.522 11.9133V12.4133H12.522V11.9133H11.522ZM12.8816 10.6136L13.1626 11.0271L13.1627 11.0271L12.8816 10.6136ZM3.5 4L20.5 4.00002V3.00002L3.5 3L3.5 4ZM20 3.50002V18.5H21V3.50002H20ZM4 18.5V3.5H3V18.5H4ZM20.5 18H15.0155V19H20.5V18ZM14.6965 18.115L11.6789 20.615L12.3169 21.3851L15.3345 18.8851L14.6965 18.115ZM12.3191 20.6168L9.3367 18.1168L8.6943 18.8832L11.6767 21.3832L12.3191 20.6168ZM9.0155 18L3.5 18L3.5 19L9.0155 19L9.0155 18ZM12.522 11.9133C12.522 11.4956 12.7738 11.2914 13.1626 11.0271L12.6005 10.2C12.2306 10.4515 11.522 10.9226 11.522 11.9133H12.522ZM13.1627 11.0271C13.5663 10.7526 14.1237 10.2947 14.1237 9.42767H13.1237C13.1237 9.773 12.9389 9.96998 12.6005 10.2001L13.1627 11.0271ZM14.1237 9.42767C14.1237 8.31932 13.2331 7.41331 12.1237 7.41331V8.41331C12.6718 8.41331 13.1237 8.8626 13.1237 9.42767H14.1237ZM12.1237 7.41331C11.0143 7.41331 10.1237 8.31932 10.1237 9.42767H11.1237C11.1237 8.8626 11.5755 8.41331 12.1237 8.41331V7.41331Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M12 13.375C12.3452 13.375 12.625 13.6548 12.625 14C12.625 14.3452 12.3452 14.625 12 14.625C11.6548 14.625 11.375 14.3452 11.375 14C11.375 13.6548 11.6548 13.375 12 13.375Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"})),I=s;0&&(module.exports={IconBubbleQuestion});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconBubbleQuestion/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 IconBubbleQuestion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.5 3.5L3.5 3L3 3V3.5H3.5ZM20.5 3.50002H21V3.00002L20.5 3.00002V3.50002ZM20.5 18.5V19H21V18.5H20.5ZM3.5 18.5H3V19L3.5 19L3.5 18.5ZM11.9979 21L11.6767 21.3832L11.996 21.6509L12.3169 21.3851L11.9979 21ZM15.0155 18.5V18H14.8353L14.6965 18.115L15.0155 18.5ZM9.0155 18.5L9.3367 18.1168L9.19735 18L9.0155 18L9.0155 18.5ZM11.522 11.9133V12.4133H12.522V11.9133H11.522ZM12.8816 10.6136L13.1626 11.0271L13.1627 11.0271L12.8816 10.6136ZM3.5 4L20.5 4.00002V3.00002L3.5 3L3.5 4ZM20 3.50002V18.5H21V3.50002H20ZM4 18.5V3.5H3V18.5H4ZM20.5 18H15.0155V19H20.5V18ZM14.6965 18.115L11.6789 20.615L12.3169 21.3851L15.3345 18.8851L14.6965 18.115ZM12.3191 20.6168L9.3367 18.1168L8.6943 18.8832L11.6767 21.3832L12.3191 20.6168ZM9.0155 18L3.5 18L3.5 19L9.0155 19L9.0155 18ZM12.522 11.9133C12.522 11.4956 12.7738 11.2914 13.1626 11.0271L12.6005 10.2C12.2306 10.4515 11.522 10.9226 11.522 11.9133H12.522ZM13.1627 11.0271C13.5663 10.7526 14.1237 10.2947 14.1237 9.42767H13.1237C13.1237 9.773 12.9389 9.96998 12.6005 10.2001L13.1627 11.0271ZM14.1237 9.42767C14.1237 8.31932 13.2331 7.41331 12.1237 7.41331V8.41331C12.6718 8.41331 13.1237 8.8626 13.1237 9.42767H14.1237ZM12.1237 7.41331C11.0143 7.41331 10.1237 8.31932 10.1237 9.42767H11.1237C11.1237 8.8626 11.5755 8.41331 12.1237 8.41331V7.41331Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconBubbleQuestion/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 IconBubbleQuestion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.5 3.5L3.5 3L3 3V3.5H3.5ZM20.5 3.50002H21V3.00002L20.5 3.00002V3.50002ZM20.5 18.5V19H21V18.5H20.5ZM3.5 18.5H3V19L3.5 19L3.5 18.5ZM11.9979 21L11.6767 21.3832L11.996 21.6509L12.3169 21.3851L11.9979 21ZM15.0155 18.5V18H14.8353L14.6965 18.115L15.0155 18.5ZM9.0155 18.5L9.3367 18.1168L9.19735 18L9.0155 18L9.0155 18.5ZM11.522 11.9133V12.4133H12.522V11.9133H11.522ZM12.8816 10.6136L13.1626 11.0271L13.1627 11.0271L12.8816 10.6136ZM3.5 4L20.5 4.00002V3.00002L3.5 3L3.5 4ZM20 3.50002V18.5H21V3.50002H20ZM4 18.5V3.5H3V18.5H4ZM20.5 18H15.0155V19H20.5V18ZM14.6965 18.115L11.6789 20.615L12.3169 21.3851L15.3345 18.8851L14.6965 18.115ZM12.3191 20.6168L9.3367 18.1168L8.6943 18.8832L11.6767 21.3832L12.3191 20.6168ZM9.0155 18L3.5 18L3.5 19L9.0155 19L9.0155 18ZM12.522 11.9133C12.522 11.4956 12.7738 11.2914 13.1626 11.0271L12.6005 10.2C12.2306 10.4515 11.522 10.9226 11.522 11.9133H12.522ZM13.1627 11.0271C13.5663 10.7526 14.1237 10.2947 14.1237 9.42767H13.1237C13.1237 9.773 12.9389 9.96998 12.6005 10.2001L13.1627 11.0271ZM14.1237 9.42767C14.1237 8.31932 13.2331 7.41331 12.1237 7.41331V8.41331C12.6718 8.41331 13.1237 8.8626 13.1237 9.42767H14.1237ZM12.1237 7.41331C11.0143 7.41331 10.1237 8.31932 10.1237 9.42767H11.1237C11.1237 8.8626 11.5755 8.41331 12.1237 8.41331V7.41331Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 13.375C12.3452 13.375 12.625 13.6548 12.625 14C12.625 14.3452 12.3452 14.625 12 14.625C11.6548 14.625 11.375 14.3452 11.375 14C11.375 13.6548 11.6548 13.375 12 13.375Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"0.25\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBubbleQuestion;\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,QACC,EAAE,uvCACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8KACF,KAAK,eACL,OAAO,eACP,YAAY,OACd,CACF,EAIGE,EAAQJ","names":["IconBubbleQuestion_exports","__export","IconBubbleQuestion","IconBubbleQuestion_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBubbleQuestion","props","React","CentralIconBase","IconBubbleQuestion_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import L from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.createElement(p,{...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 e}from"react-native-svg";var M=o=>L.createElement(t,{...o},L.createElement(e,{d:"M3.5 3.5L3.5 3L3 3V3.5H3.5ZM20.5 3.50002H21V3.00002L20.5 3.00002V3.50002ZM20.5 18.5V19H21V18.5H20.5ZM3.5 18.5H3V19L3.5 19L3.5 18.5ZM11.9979 21L11.6767 21.3832L11.996 21.6509L12.3169 21.3851L11.9979 21ZM15.0155 18.5V18H14.8353L14.6965 18.115L15.0155 18.5ZM9.0155 18.5L9.3367 18.1168L9.19735 18L9.0155 18L9.0155 18.5ZM11.522 11.9133V12.4133H12.522V11.9133H11.522ZM12.8816 10.6136L13.1626 11.0271L13.1627 11.0271L12.8816 10.6136ZM3.5 4L20.5 4.00002V3.00002L3.5 3L3.5 4ZM20 3.50002V18.5H21V3.50002H20ZM4 18.5V3.5H3V18.5H4ZM20.5 18H15.0155V19H20.5V18ZM14.6965 18.115L11.6789 20.615L12.3169 21.3851L15.3345 18.8851L14.6965 18.115ZM12.3191 20.6168L9.3367 18.1168L8.6943 18.8832L11.6767 21.3832L12.3191 20.6168ZM9.0155 18L3.5 18L3.5 19L9.0155 19L9.0155 18ZM12.522 11.9133C12.522 11.4956 12.7738 11.2914 13.1626 11.0271L12.6005 10.2C12.2306 10.4515 11.522 10.9226 11.522 11.9133H12.522ZM13.1627 11.0271C13.5663 10.7526 14.1237 10.2947 14.1237 9.42767H13.1237C13.1237 9.773 12.9389 9.96998 12.6005 10.2001L13.1627 11.0271ZM14.1237 9.42767C14.1237 8.31932 13.2331 7.41331 12.1237 7.41331V8.41331C12.6718 8.41331 13.1237 8.8626 13.1237 9.42767H14.1237ZM12.1237 7.41331C11.0143 7.41331 10.1237 8.31932 10.1237 9.42767H11.1237C11.1237 8.8626 11.5755 8.41331 12.1237 8.41331V7.41331Z",fill:"currentColor"}),L.createElement(e,{d:"
|
|
1
|
+
import L from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.createElement(p,{...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 e}from"react-native-svg";var M=o=>L.createElement(t,{...o},L.createElement(e,{d:"M3.5 3.5L3.5 3L3 3V3.5H3.5ZM20.5 3.50002H21V3.00002L20.5 3.00002V3.50002ZM20.5 18.5V19H21V18.5H20.5ZM3.5 18.5H3V19L3.5 19L3.5 18.5ZM11.9979 21L11.6767 21.3832L11.996 21.6509L12.3169 21.3851L11.9979 21ZM15.0155 18.5V18H14.8353L14.6965 18.115L15.0155 18.5ZM9.0155 18.5L9.3367 18.1168L9.19735 18L9.0155 18L9.0155 18.5ZM11.522 11.9133V12.4133H12.522V11.9133H11.522ZM12.8816 10.6136L13.1626 11.0271L13.1627 11.0271L12.8816 10.6136ZM3.5 4L20.5 4.00002V3.00002L3.5 3L3.5 4ZM20 3.50002V18.5H21V3.50002H20ZM4 18.5V3.5H3V18.5H4ZM20.5 18H15.0155V19H20.5V18ZM14.6965 18.115L11.6789 20.615L12.3169 21.3851L15.3345 18.8851L14.6965 18.115ZM12.3191 20.6168L9.3367 18.1168L8.6943 18.8832L11.6767 21.3832L12.3191 20.6168ZM9.0155 18L3.5 18L3.5 19L9.0155 19L9.0155 18ZM12.522 11.9133C12.522 11.4956 12.7738 11.2914 13.1626 11.0271L12.6005 10.2C12.2306 10.4515 11.522 10.9226 11.522 11.9133H12.522ZM13.1627 11.0271C13.5663 10.7526 14.1237 10.2947 14.1237 9.42767H13.1237C13.1237 9.773 12.9389 9.96998 12.6005 10.2001L13.1627 11.0271ZM14.1237 9.42767C14.1237 8.31932 13.2331 7.41331 12.1237 7.41331V8.41331C12.6718 8.41331 13.1237 8.8626 13.1237 9.42767H14.1237ZM12.1237 7.41331C11.0143 7.41331 10.1237 8.31932 10.1237 9.42767H11.1237C11.1237 8.8626 11.5755 8.41331 12.1237 8.41331V7.41331Z",fill:"currentColor"}),L.createElement(e,{d:"M12 13.375C12.3452 13.375 12.625 13.6548 12.625 14C12.625 14.3452 12.3452 14.625 12 14.625C11.6548 14.625 11.375 14.3452 11.375 14C11.375 13.6548 11.6548 13.375 12 13.375Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"})),u=M;export{M as IconBubbleQuestion,u as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconBubbleQuestion/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 IconBubbleQuestion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.5 3.5L3.5 3L3 3V3.5H3.5ZM20.5 3.50002H21V3.00002L20.5 3.00002V3.50002ZM20.5 18.5V19H21V18.5H20.5ZM3.5 18.5H3V19L3.5 19L3.5 18.5ZM11.9979 21L11.6767 21.3832L11.996 21.6509L12.3169 21.3851L11.9979 21ZM15.0155 18.5V18H14.8353L14.6965 18.115L15.0155 18.5ZM9.0155 18.5L9.3367 18.1168L9.19735 18L9.0155 18L9.0155 18.5ZM11.522 11.9133V12.4133H12.522V11.9133H11.522ZM12.8816 10.6136L13.1626 11.0271L13.1627 11.0271L12.8816 10.6136ZM3.5 4L20.5 4.00002V3.00002L3.5 3L3.5 4ZM20 3.50002V18.5H21V3.50002H20ZM4 18.5V3.5H3V18.5H4ZM20.5 18H15.0155V19H20.5V18ZM14.6965 18.115L11.6789 20.615L12.3169 21.3851L15.3345 18.8851L14.6965 18.115ZM12.3191 20.6168L9.3367 18.1168L8.6943 18.8832L11.6767 21.3832L12.3191 20.6168ZM9.0155 18L3.5 18L3.5 19L9.0155 19L9.0155 18ZM12.522 11.9133C12.522 11.4956 12.7738 11.2914 13.1626 11.0271L12.6005 10.2C12.2306 10.4515 11.522 10.9226 11.522 11.9133H12.522ZM13.1627 11.0271C13.5663 10.7526 14.1237 10.2947 14.1237 9.42767H13.1237C13.1237 9.773 12.9389 9.96998 12.6005 10.2001L13.1627 11.0271ZM14.1237 9.42767C14.1237 8.31932 13.2331 7.41331 12.1237 7.41331V8.41331C12.6718 8.41331 13.1237 8.8626 13.1237 9.42767H14.1237ZM12.1237 7.41331C11.0143 7.41331 10.1237 8.31932 10.1237 9.42767H11.1237C11.1237 8.8626 11.5755 8.41331 12.1237 8.41331V7.41331Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconBubbleQuestion/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 IconBubbleQuestion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.5 3.5L3.5 3L3 3V3.5H3.5ZM20.5 3.50002H21V3.00002L20.5 3.00002V3.50002ZM20.5 18.5V19H21V18.5H20.5ZM3.5 18.5H3V19L3.5 19L3.5 18.5ZM11.9979 21L11.6767 21.3832L11.996 21.6509L12.3169 21.3851L11.9979 21ZM15.0155 18.5V18H14.8353L14.6965 18.115L15.0155 18.5ZM9.0155 18.5L9.3367 18.1168L9.19735 18L9.0155 18L9.0155 18.5ZM11.522 11.9133V12.4133H12.522V11.9133H11.522ZM12.8816 10.6136L13.1626 11.0271L13.1627 11.0271L12.8816 10.6136ZM3.5 4L20.5 4.00002V3.00002L3.5 3L3.5 4ZM20 3.50002V18.5H21V3.50002H20ZM4 18.5V3.5H3V18.5H4ZM20.5 18H15.0155V19H20.5V18ZM14.6965 18.115L11.6789 20.615L12.3169 21.3851L15.3345 18.8851L14.6965 18.115ZM12.3191 20.6168L9.3367 18.1168L8.6943 18.8832L11.6767 21.3832L12.3191 20.6168ZM9.0155 18L3.5 18L3.5 19L9.0155 19L9.0155 18ZM12.522 11.9133C12.522 11.4956 12.7738 11.2914 13.1626 11.0271L12.6005 10.2C12.2306 10.4515 11.522 10.9226 11.522 11.9133H12.522ZM13.1627 11.0271C13.5663 10.7526 14.1237 10.2947 14.1237 9.42767H13.1237C13.1237 9.773 12.9389 9.96998 12.6005 10.2001L13.1627 11.0271ZM14.1237 9.42767C14.1237 8.31932 13.2331 7.41331 12.1237 7.41331V8.41331C12.6718 8.41331 13.1237 8.8626 13.1237 9.42767H14.1237ZM12.1237 7.41331C11.0143 7.41331 10.1237 8.31932 10.1237 9.42767H11.1237C11.1237 8.8626 11.5755 8.41331 12.1237 8.41331V7.41331Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 13.375C12.3452 13.375 12.625 13.6548 12.625 14C12.625 14.3452 12.3452 14.625 12 14.625C11.6548 14.625 11.375 14.3452 11.375 14C11.375 13.6548 11.6548 13.375 12 13.375Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"0.25\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBubbleQuestion;\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,CACC,EAAE,uvCACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8KACF,KAAK,eACL,OAAO,eACP,YAAY,OACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBubbleQuestion","props","React","CentralIconBase","IconBubbleQuestion_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 u=Object.getOwnPropertyNames;var M=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,V)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of u(o))!B.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(V=i(o,t))||V.enumerable});return r};var l=(r,o,e)=>(e=r!=null?f(M(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,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 s=l(require("react")),m=require("react-native-svg"),C=({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 H=require("react-native-svg"),c=r=>p.default.createElement(C,{...r},p.default.createElement(H.Path,{d:"M21.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5 4.5V4H2V4.5H2.5ZM2.5 19.5H2V20H2.5V19.5ZM21.5 4.5H21V19.5H21.5H22V4.5H21.5ZM2.5 4.5V5H21.5V4.5V4H2.5V4.5ZM2.5 19.5H3V4.5H2.5H2V19.5H2.5ZM21.5 19.5V19H2.5V19.5V20H21.5V19.5Z",fill:"currentColor"}),p.default.createElement(H.Path,{d:"M21.294 5.39545L11.9995 13L2.70508 5.39545",stroke:"currentColor",strokeLinecap:"square"})),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.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5
|
|
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.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5 4.5V4H2V4.5H2.5ZM2.5 19.5H2V20H2.5V19.5ZM21.5 4.5H21V19.5H21.5H22V4.5H21.5ZM2.5 4.5V5H21.5V4.5V4H2.5V4.5ZM2.5 19.5H3V4.5H2.5H2V19.5H2.5ZM21.5 19.5V19H2.5V19.5V20H21.5V19.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.294 5.39545L11.9995 13L2.70508 5.39545\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\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,uOACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6CACF,OAAO,eACP,cAAc,SAChB,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 e from"react";import
|
|
1
|
+
import e from"react";import H from"react";import{Svg as V}from"react-native-svg";var t=({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=>e.createElement(t,{...o},e.createElement(n,{d:"M21.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5 4.5V4H2V4.5H2.5ZM2.5 19.5H2V20H2.5V19.5ZM21.5 4.5H21V19.5H21.5H22V4.5H21.5ZM2.5 4.5V5H21.5V4.5V4H2.5V4.5ZM2.5 19.5H3V4.5H2.5H2V19.5H2.5ZM21.5 19.5V19H2.5V19.5V20H21.5V19.5Z",fill:"currentColor"}),e.createElement(n,{d:"M21.294 5.39545L11.9995 13L2.70508 5.39545",stroke:"currentColor",strokeLinecap:"square"})),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.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5
|
|
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.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5 4.5V4H2V4.5H2.5ZM2.5 19.5H2V20H2.5V19.5ZM21.5 4.5H21V19.5H21.5H22V4.5H21.5ZM2.5 4.5V5H21.5V4.5V4H2.5V4.5ZM2.5 19.5H3V4.5H2.5H2V19.5H2.5ZM21.5 19.5V19H2.5V19.5V20H21.5V19.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.294 5.39545L11.9995 13L2.70508 5.39545\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\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,uOACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6CACF,OAAO,eACP,cAAc,SAChB,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 M=Object.getOwnPropertyDescriptor;var i=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 i(o))!B.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(V=M(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.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5 4.5V4H2V4.5H2.5ZM2.5 19.5H2V20H2.5V19.5ZM21.5 4.5H21V19.5H21.5H22V4.5H21.5ZM2.5 4.5V5H21.5V4.5V4H2.5V4.5ZM2.5 19.5H3V4.5H2.5H2V19.5H2.5ZM21.5 19.5V19H2.5V19.5V20H21.5V19.5Z",fill:"currentColor"}),p.default.createElement(H.Path,{d:"M21.5 7.25L12 12.0714L2.5 7.25",stroke:"currentColor"})),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.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5
|
|
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.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5 4.5V4H2V4.5H2.5ZM2.5 19.5H2V20H2.5V19.5ZM21.5 4.5H21V19.5H21.5H22V4.5H21.5ZM2.5 4.5V5H21.5V4.5V4H2.5V4.5ZM2.5 19.5H3V4.5H2.5H2V19.5H2.5ZM21.5 19.5V19H2.5V19.5V20H21.5V19.5Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M21.5 7.25L12 12.0714L2.5 7.25\" stroke=\"currentColor\" />\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,uOACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iCAAiC,OAAO,eAAe,CACjE,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.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5 4.5V4H2V4.5H2.5ZM2.5 19.5H2V20H2.5V19.5ZM21.5 4.5H21V19.5H21.5H22V4.5H21.5ZM2.5 4.5V5H21.5V4.5V4H2.5V4.5ZM2.5 19.5H3V4.5H2.5H2V19.5H2.5ZM21.5 19.5V19H2.5V19.5V20H21.5V19.5Z",fill:"currentColor"}),t.createElement(n,{d:"M21.5 7.25L12 12.0714L2.5 7.25",stroke:"currentColor"})),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.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5
|
|
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.5 4.5H22V4H21.5V4.5ZM21.5 19.5V20H22V19.5H21.5ZM2.5 4.5V4H2V4.5H2.5ZM2.5 19.5H2V20H2.5V19.5ZM21.5 4.5H21V19.5H21.5H22V4.5H21.5ZM2.5 4.5V5H21.5V4.5V4H2.5V4.5ZM2.5 19.5H3V4.5H2.5H2V19.5H2.5ZM21.5 19.5V19H2.5V19.5V20H21.5V19.5Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M21.5 7.25L12 12.0714L2.5 7.25\" stroke=\"currentColor\" />\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,uOACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,iCAAiC,OAAO,eAAe,CACjE,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 i=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=B(o,t))||s.enumerable});return r};var m=(r,o,e)=>(e=r!=null?i(x(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>C(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconEmail3:()=>f,default:()=>d});module.exports=v(h);var p=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),u=({children:r,size:o=24,...e})=>l.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 a=require("react-native-svg"),f=r=>p.default.createElement(u,{...r},p.default.createElement(a.Path,{d:"M21.5 4.5H2.5V19.5H21.5V4.5Z",stroke:"currentColor",strokeLinecap:"square"}),p.default.createElement(a.Path,{d:"M2.7168 8.2829C5.2705 10.2976 8.49494 11.5 12.0002 11.5C15.5054 11.5 18.7299 10.2976 21.2836 8.2829",stroke:"currentColor",strokeLinecap:"square"})),d=f;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=\"M2.
|
|
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=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M2.7168 8.2829C5.2705 10.2976 8.49494 11.5 12.0002 11.5C15.5054 11.5 18.7299 10.2976 21.2836 8.2829\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\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,QACC,EAAE,+BACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sGACF,OAAO,eACP,cAAc,SAChB,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 e from"react";import a from"react";import{Svg as s}from"react-native-svg";var t=({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=>e.createElement(t,{...o},e.createElement(n,{d:"M21.5 4.5H2.5V19.5H21.5V4.5Z",stroke:"currentColor",strokeLinecap:"square"}),e.createElement(n,{d:"M2.7168 8.2829C5.2705 10.2976 8.49494 11.5 12.0002 11.5C15.5054 11.5 18.7299 10.2976 21.2836 8.2829",stroke:"currentColor",strokeLinecap:"square"})),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=\"M2.
|
|
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=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M2.7168 8.2829C5.2705 10.2976 8.49494 11.5 12.0002 11.5C15.5054 11.5 18.7299 10.2976 21.2836 8.2829\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\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,CACC,EAAE,+BACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sGACF,OAAO,eACP,cAAc,SAChB,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 m=Object.create;var l=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,M=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of c(o))!M.call(r,p)&&p!==e&&l(r,p,{get:()=>o[p],enumerable:!(i=h(o,p))||i.enumerable});return r};var V=(r,o,e)=>(e=r!=null?m(u(r)):{},C(o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>C(l({},"__esModule",{value:!0}),r);var B={};P(B,{IconEmailNotification:()=>f,default:()=>Z});module.exports=d(B);var n=V(require("react"));var H=V(require("react")),s=require("react-native-svg"),a=({children:r,size:o=24,...e})=>H.default.createElement(s.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),f=r=>n.default.createElement(a,{...r},n.default.createElement(t.G,{"clip-Path":"url(#clip0_5658_58353)"},n.default.createElement(t.Path,{d:"M23.5 6C23.5 7.933 21.933 9.5 20 9.5C18.067 9.5 16.5 7.933 16.5 6C16.5 4.067 18.067 2.5 20 2.5C21.933 2.5 23.5 4.067 23.5 6Z",stroke:"currentColor",strokeWidth:"1.07692"}),n.default.createElement(t.Path,{d:"M2.5 4.5V3.96154H1.96154V4.5H2.5ZM13.5 5.03846H14.0385V3.96154H13.5V4.5V5.03846ZM2.5 19.5H1.96154V20.0385H2.5V19.5ZM21.5 19.5V20.0385H22.0385V19.5H21.5ZM2.5 4.5V5.03846H13.5V4.5V3.96154H2.5V4.5ZM2.5 19.5H3.03846V4.5H2.5H1.96154V19.5H2.5ZM21.5 19.5V18.9615H2.5V19.5V20.0385H21.5V19.5ZM21.5 12.5H20.9615V19.5H21.5H22.0385V12.5H21.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M2.5 8.10876C5.08682 10.2282 8.39489 11.5 12 11.5C13.3852 11.5 14.7266 11.3122 16 10.9608",stroke:"currentColor",strokeWidth:"1.07692"})),n.default.createElement(t.Defs,null,n.default.createElement(t.ClipPath,{id:"clip0_5658_58353"},n.default.createElement(t.Rect,{width:"24",height:"24",fill:"white"})))),Z=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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_5658_58353)\">\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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_5658_58353)\">\n <Path\n d=\"M23.5 6C23.5 7.933 21.933 9.5 20 9.5C18.067 9.5 16.5 7.933 16.5 6C16.5 4.067 18.067 2.5 20 2.5C21.933 2.5 23.5 4.067 23.5 6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.07692\"\n />\n <Path\n d=\"M2.5 4.5V3.96154H1.96154V4.5H2.5ZM13.5 5.03846H14.0385V3.96154H13.5V4.5V5.03846ZM2.5 19.5H1.96154V20.0385H2.5V19.5ZM21.5 19.5V20.0385H22.0385V19.5H21.5ZM2.5 4.5V5.03846H13.5V4.5V3.96154H2.5V4.5ZM2.5 19.5H3.03846V4.5H2.5H1.96154V19.5H2.5ZM21.5 19.5V18.9615H2.5V19.5V20.0385H21.5V19.5ZM21.5 12.5H20.9615V19.5H21.5H22.0385V12.5H21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.5 8.10876C5.08682 10.2282 8.39489 11.5 12 11.5C13.3852 11.5 14.7266 11.3122 16 10.9608\"\n stroke=\"currentColor\"\n strokeWidth=\"1.07692\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_5658_58353\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\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,EAA8C,4BAEjCC,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,KAAE,YAAU,0BACX,EAAAA,QAAA,cAAC,QACC,EAAE,+HACF,OAAO,eACP,YAAY,UACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6UACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4FACF,OAAO,eACP,YAAY,UACd,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,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 r from"react";import l from"react";import{Svg as i}from"react-native-svg";var n=({children:t,size:o=24,...p})=>l.createElement(i,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{ClipPath as C,Defs as V,G as H,Path as e,Rect as s}from"react-native-svg";var a=t=>r.createElement(n,{...t},r.createElement(H,{"clip-Path":"url(#clip0_5658_58353)"},r.createElement(e,{d:"M23.5 6C23.5 7.933 21.933 9.5 20 9.5C18.067 9.5 16.5 7.933 16.5 6C16.5 4.067 18.067 2.5 20 2.5C21.933 2.5 23.5 4.067 23.5 6Z",stroke:"currentColor",strokeWidth:"1.07692"}),r.createElement(e,{d:"M2.5 4.5V3.96154H1.96154V4.5H2.5ZM13.5 5.03846H14.0385V3.96154H13.5V4.5V5.03846ZM2.5 19.5H1.96154V20.0385H2.5V19.5ZM21.5 19.5V20.0385H22.0385V19.5H21.5ZM2.5 4.5V5.03846H13.5V4.5V3.96154H2.5V4.5ZM2.5 19.5H3.03846V4.5H2.5H1.96154V19.5H2.5ZM21.5 19.5V18.9615H2.5V19.5V20.0385H21.5V19.5ZM21.5 12.5H20.9615V19.5H21.5H22.0385V12.5H21.5Z",fill:"currentColor"}),r.createElement(e,{d:"M2.5 8.10876C5.08682 10.2282 8.39489 11.5 12 11.5C13.3852 11.5 14.7266 11.3122 16 10.9608",stroke:"currentColor",strokeWidth:"1.07692"})),r.createElement(V,null,r.createElement(C,{id:"clip0_5658_58353"},r.createElement(s,{width:"24",height:"24",fill:"white"})))),B=a;export{a as IconEmailNotification,B 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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_5658_58353)\">\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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G clip-Path=\"url(#clip0_5658_58353)\">\n <Path\n d=\"M23.5 6C23.5 7.933 21.933 9.5 20 9.5C18.067 9.5 16.5 7.933 16.5 6C16.5 4.067 18.067 2.5 20 2.5C21.933 2.5 23.5 4.067 23.5 6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.07692\"\n />\n <Path\n d=\"M2.5 4.5V3.96154H1.96154V4.5H2.5ZM13.5 5.03846H14.0385V3.96154H13.5V4.5V5.03846ZM2.5 19.5H1.96154V20.0385H2.5V19.5ZM21.5 19.5V20.0385H22.0385V19.5H21.5ZM2.5 4.5V5.03846H13.5V4.5V3.96154H2.5V4.5ZM2.5 19.5H3.03846V4.5H2.5H1.96154V19.5H2.5ZM21.5 19.5V18.9615H2.5V19.5V20.0385H21.5V19.5ZM21.5 12.5H20.9615V19.5H21.5H22.0385V12.5H21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M2.5 8.10876C5.08682 10.2282 8.39489 11.5 12 11.5C13.3852 11.5 14.7266 11.3122 16 10.9608\"\n stroke=\"currentColor\"\n strokeWidth=\"1.07692\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_5658_58353\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\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,YAAAG,EAAU,QAAAC,EAAM,KAAAC,EAAG,QAAAC,EAAM,QAAAC,MAAY,mBAEvC,IAAMC,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACL,EAAA,CAAE,YAAU,0BACXK,EAAA,cAACJ,EAAA,CACC,EAAE,+HACF,OAAO,eACP,YAAY,UACd,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,6UACF,KAAK,eACP,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,4FACF,OAAO,eACP,YAAY,UACd,CACF,EACAI,EAAA,cAACN,EAAA,KACCM,EAAA,cAACP,EAAA,CAAS,GAAG,oBACXO,EAAA,cAACH,EAAA,CAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","ClipPath","Defs","G","Path","Rect","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
|