@central-icons-react-native/round-outlined-radius-1-stroke-1 1.1.145 → 1.1.147
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/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/IconHeartDonation/index.d.ts +4 -0
- package/IconHeartDonation/index.js +2 -0
- package/IconHeartDonation/index.js.map +1 -0
- package/IconHeartDonation/index.mjs +2 -0
- package/IconHeartDonation/index.mjs.map +1 -0
- 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 +9 -3
- 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"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var f=Object.create;var t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var k=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!L.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(s=d(o,n))||s.enumerable});return r};var l=(r,o,e)=>(e=r!=null?f(I(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(t({},"__esModule",{value:!0}),r);var g={};k(g,{IconBubbleQuestion:()=>m,default:()=>P});module.exports=x(g);var C=l(require("react"));var i=l(require("react")),u=require("react-native-svg"),c=({children:r,size:o=24,...e})=>i.default.createElement(u.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),m=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{d:"M12.022 11.9133C12.022 11.2091 12.5022 10.8714 12.8816 10.6136C13.2526 10.3613 13.6237 10.0339 13.6237 9.42768C13.6237 8.59098 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59098 10.6237 9.42768M9.29422 18.7337L11.3593 20.4647C11.7292 20.7748 12.2679 20.7763 12.6397 20.4684L14.738 18.73C14.9173 18.5813 15.143 18.5 15.3759 18.5H19.5C20.0523 18.5 20.5 18.0523 20.5 17.5V4.50002C20.5 3.94774 20.0523 3.50002 19.5 3.50002L4.5 3.5C3.94772 3.5 3.5 3.94771 3.5 4.5V17.5C3.5 18.0523 3.94771 18.5 4.5 18.5L8.65182 18.5C8.88675 18.5 9.11418 18.5827 9.29422 18.7337Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(p.Path,{d:"
|
|
1
|
+
"use strict";var f=Object.create;var t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var k=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!L.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(s=d(o,n))||s.enumerable});return r};var l=(r,o,e)=>(e=r!=null?f(I(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(t({},"__esModule",{value:!0}),r);var g={};k(g,{IconBubbleQuestion:()=>m,default:()=>P});module.exports=x(g);var C=l(require("react"));var i=l(require("react")),u=require("react-native-svg"),c=({children:r,size:o=24,...e})=>i.default.createElement(u.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),m=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{d:"M12.022 11.9133C12.022 11.2091 12.5022 10.8714 12.8816 10.6136C13.2526 10.3613 13.6237 10.0339 13.6237 9.42768C13.6237 8.59098 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59098 10.6237 9.42768M9.29422 18.7337L11.3593 20.4647C11.7292 20.7748 12.2679 20.7763 12.6397 20.4684L14.738 18.73C14.9173 18.5813 15.143 18.5 15.3759 18.5H19.5C20.0523 18.5 20.5 18.0523 20.5 17.5V4.50002C20.5 3.94774 20.0523 3.50002 19.5 3.50002L4.5 3.5C3.94772 3.5 3.5 3.94771 3.5 4.5V17.5C3.5 18.0523 3.94771 18.5 4.5 18.5L8.65182 18.5C8.88675 18.5 9.11418 18.5827 9.29422 18.7337Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(p.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",strokeLinecap:"round",strokeLinejoin:"round"})),P=m;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=\"M12.022 11.9133C12.022 11.2091 12.5022 10.8714 12.8816 10.6136C13.2526 10.3613 13.6237 10.0339 13.6237 9.42768C13.6237 8.59098 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59098 10.6237 9.42768M9.29422 18.7337L11.3593 20.4647C11.7292 20.7748 12.2679 20.7763 12.6397 20.4684L14.738 18.73C14.9173 18.5813 15.143 18.5 15.3759 18.5H19.5C20.0523 18.5 20.5 18.0523 20.5 17.5V4.50002C20.5 3.94774 20.0523 3.50002 19.5 3.50002L4.5 3.5C3.94772 3.5 3.5 3.94771 3.5 4.5V17.5C3.5 18.0523 3.94771 18.5 4.5 18.5L8.65182 18.5C8.88675 18.5 9.11418 18.5827 9.29422 18.7337Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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=\"M12.022 11.9133C12.022 11.2091 12.5022 10.8714 12.8816 10.6136C13.2526 10.3613 13.6237 10.0339 13.6237 9.42768C13.6237 8.59098 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59098 10.6237 9.42768M9.29422 18.7337L11.3593 20.4647C11.7292 20.7748 12.2679 20.7763 12.6397 20.4684L14.738 18.73C14.9173 18.5813 15.143 18.5 15.3759 18.5H19.5C20.0523 18.5 20.5 18.0523 20.5 17.5V4.50002C20.5 3.94774 20.0523 3.50002 19.5 3.50002L4.5 3.5C3.94772 3.5 3.5 3.94771 3.5 4.5V17.5C3.5 18.0523 3.94771 18.5 4.5 18.5L8.65182 18.5C8.88675 18.5 9.11418 18.5827 9.29422 18.7337Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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 strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,4jBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8KACF,KAAK,eACL,OAAO,eACP,YAAY,OACZ,cAAc,QACd,eAAe,QACjB,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 e from"react";import p from"react";import{Svg as s}from"react-native-svg";var n=({children:o,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{d:"M12.022 11.9133C12.022 11.2091 12.5022 10.8714 12.8816 10.6136C13.2526 10.3613 13.6237 10.0339 13.6237 9.42768C13.6237 8.59098 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59098 10.6237 9.42768M9.29422 18.7337L11.3593 20.4647C11.7292 20.7748 12.2679 20.7763 12.6397 20.4684L14.738 18.73C14.9173 18.5813 15.143 18.5 15.3759 18.5H19.5C20.0523 18.5 20.5 18.0523 20.5 17.5V4.50002C20.5 3.94774 20.0523 3.50002 19.5 3.50002L4.5 3.5C3.94772 3.5 3.5 3.94771 3.5 4.5V17.5C3.5 18.0523 3.94771 18.5 4.5 18.5L8.65182 18.5C8.88675 18.5 9.11418 18.5827 9.29422 18.7337Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"
|
|
1
|
+
import e from"react";import p from"react";import{Svg as s}from"react-native-svg";var n=({children:o,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{d:"M12.022 11.9133C12.022 11.2091 12.5022 10.8714 12.8816 10.6136C13.2526 10.3613 13.6237 10.0339 13.6237 9.42768C13.6237 8.59098 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59098 10.6237 9.42768M9.29422 18.7337L11.3593 20.4647C11.7292 20.7748 12.2679 20.7763 12.6397 20.4684L14.738 18.73C14.9173 18.5813 15.143 18.5 15.3759 18.5H19.5C20.0523 18.5 20.5 18.0523 20.5 17.5V4.50002C20.5 3.94774 20.0523 3.50002 19.5 3.50002L4.5 3.5C3.94772 3.5 3.5 3.94771 3.5 4.5V17.5C3.5 18.0523 3.94771 18.5 4.5 18.5L8.65182 18.5C8.88675 18.5 9.11418 18.5827 9.29422 18.7337Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{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",strokeLinecap:"round",strokeLinejoin:"round"})),L=a;export{a as IconBubbleQuestion,L 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=\"M12.022 11.9133C12.022 11.2091 12.5022 10.8714 12.8816 10.6136C13.2526 10.3613 13.6237 10.0339 13.6237 9.42768C13.6237 8.59098 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59098 10.6237 9.42768M9.29422 18.7337L11.3593 20.4647C11.7292 20.7748 12.2679 20.7763 12.6397 20.4684L14.738 18.73C14.9173 18.5813 15.143 18.5 15.3759 18.5H19.5C20.0523 18.5 20.5 18.0523 20.5 17.5V4.50002C20.5 3.94774 20.0523 3.50002 19.5 3.50002L4.5 3.5C3.94772 3.5 3.5 3.94771 3.5 4.5V17.5C3.5 18.0523 3.94771 18.5 4.5 18.5L8.65182 18.5C8.88675 18.5 9.11418 18.5827 9.29422 18.7337Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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=\"M12.022 11.9133C12.022 11.2091 12.5022 10.8714 12.8816 10.6136C13.2526 10.3613 13.6237 10.0339 13.6237 9.42768C13.6237 8.59098 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59098 10.6237 9.42768M9.29422 18.7337L11.3593 20.4647C11.7292 20.7748 12.2679 20.7763 12.6397 20.4684L14.738 18.73C14.9173 18.5813 15.143 18.5 15.3759 18.5H19.5C20.0523 18.5 20.5 18.0523 20.5 17.5V4.50002C20.5 3.94774 20.0523 3.50002 19.5 3.50002L4.5 3.5C3.94772 3.5 3.5 3.94771 3.5 4.5V17.5C3.5 18.0523 3.94771 18.5 4.5 18.5L8.65182 18.5C8.88675 18.5 9.11418 18.5827 9.29422 18.7337Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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 strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,4jBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8KACF,KAAK,eACL,OAAO,eACP,YAAY,OACZ,cAAc,QACd,eAAe,QACjB,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 s=Object.create;var e=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var i=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var u=(L,C)=>{for(var r in C)e(L,r,{get:C[r],enumerable:!0})},Z=(L,C,r,M)=>{if(C&&typeof C=="object"||typeof C=="function")for(let o of c(C))!f.call(L,o)&&o!==r&&e(L,o,{get:()=>C[o],enumerable:!(M=m(C,o))||M.enumerable});return L};var p=(L,C,r)=>(r=L!=null?s(i(L)):{},Z(C||!L||!L.__esModule?e(r,"default",{value:L,enumerable:!0}):r,L)),B=L=>Z(e({},"__esModule",{value:!0}),L);var x={};u(x,{IconEmail1:()=>l,default:()=>I});module.exports=B(x);var n=p(require("react"));var V=p(require("react")),H=require("react-native-svg"),a=({children:L,size:C=24,...r})=>V.default.createElement(H.Svg,{...r,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},L);var t=require("react-native-svg"),l=L=>n.default.createElement(a,{...L},n.default.createElement(t.Path,{d:"M21.391 5.04601L20.9455 5.273V5.273L21.391 5.04601ZM20.954 4.60899L21.181 4.16349L21.181 4.16349L20.954 4.60899ZM3.04601 4.60899L2.81901 4.16349L2.81901 4.16349L3.04601 4.60899ZM2.60899 5.04601L2.16349 4.81901L2.16349 4.81901L2.60899 5.04601ZM2.60899 18.954L2.16349 19.181H2.16349L2.60899 18.954ZM3.04601 19.391L3.273 18.9455L3.273 18.9455L3.04601 19.391ZM20.954 19.391L21.181 19.8365L21.181 19.8365L20.954 19.391ZM21.391 18.954L20.9455 18.727V18.727L21.391 18.954ZM21.5 6.1H21V17.9H21.5H22V6.1H21.5ZM21.5 6.1H22C22 5.82822 22.0004 5.59432 21.9847 5.40249C21.9686 5.20481 21.9329 5.0082 21.8365 4.81901L21.391 5.04601L20.9455 5.273C20.9581 5.29773 20.9769 5.34809 20.988 5.48392C20.9996 5.62559 21 5.81172 21 6.1H21.5ZM21.391 5.04601L21.8365 4.81902C21.6927 4.53677 21.4632 4.3073 21.181 4.16349L20.954 4.60899L20.727 5.0545C20.8211 5.10243 20.8976 5.17892 20.9455 5.273L21.391 5.04601ZM19.9 4.5V5C20.1883 5 20.3744 5.00039 20.5161 5.01196C20.6519 5.02306 20.7023 5.0419 20.727 5.0545L20.954 4.60899L21.181 4.16349C20.9918 4.06709 20.7952 4.03144 20.5975 4.01528C20.4057 3.99961 20.1718 4 19.9 4V4.5ZM4.1 4.5V5H19.9V4.5V4H4.1V4.5ZM4.1 4.5V4C3.82822 4 3.59432 3.99961 3.40249 4.01528C3.20481 4.03144 3.0082 4.06709 2.81901 4.16349L3.04601 4.60899L3.273 5.0545C3.29773 5.0419 3.34809 5.02306 3.48392 5.01196C3.62559 5.00039 3.81172 5 4.1 5V4.5ZM2.60899 5.04601L3.0545 5.273C3.10243 5.17892 3.17892 5.10243 3.273 5.0545L3.04601 4.60899L2.81901 4.16349C2.53677 4.3073 2.3073 4.53677 2.16349 4.81901L2.60899 5.04601ZM2.5 6.1H3C3 5.81172 3.00039 5.62559 3.01196 5.48392C3.02306 5.34809 3.0419 5.29773 3.0545 5.273L2.60899 5.04601L2.16349 4.81901C2.06709 5.0082 2.03144 5.20481 2.01528 5.40249C1.99961 5.59432 2 5.82822 2 6.1H2.5ZM2.5 17.9H3V6.1H2.5H2V17.9H2.5ZM2.5 17.9H2C2 18.1718 1.99961 18.4057 2.01528 18.5975C2.03144 18.7952 2.06709 18.9918 2.16349 19.181L2.60899 18.954L3.0545 18.727C3.0419 18.7023 3.02306 18.6519 3.01196 18.5161C3.00039 18.3744 3 18.1883 3 17.9H2.5ZM3.04601 19.391L3.273 18.9455C3.17892 18.8976 3.10243 18.8211 3.0545 18.727L2.60899 18.954L2.16349 19.181C2.3073 19.4632 2.53677 19.6927 2.81902 19.8365L3.04601 19.391ZM4.1 19.5V19C3.81172 19 3.62559 18.9996 3.48392 18.988C3.34809 18.9769 3.29773 18.9581 3.273 18.9455L3.04601 19.391L2.81901 19.8365C3.0082 19.9329 3.20481 19.9686 3.40249 19.9847C3.59432 20.0004 3.82822 20 4.1 20V19.5ZM19.9 19.5V19H4.1V19.5V20H19.9V19.5ZM19.9 19.5V20C20.1718 20 20.4057 20.0004 20.5975 19.9847C20.7952 19.9686 20.9918 19.9329 21.181 19.8365L20.954 19.391L20.727 18.9455C20.7023 18.9581 20.6519 18.9769 20.5161 18.988C20.3744 18.9996 20.1883 19 19.9 19V19.5ZM21.391 18.954L20.9455 18.727C20.8976 18.8211 20.8211 18.8976 20.727 18.9455L20.954 19.391L21.181 19.8365C21.4632 19.6927 21.6927 19.4632 21.8365 19.181L21.391 18.954ZM21.5 17.9H21C21 18.1883 20.9996 18.3744 20.988 18.5161C20.9769 18.6519 20.9581 18.7023 20.9455 18.727L21.391 18.954L21.8365 19.181C21.9329 18.9918 21.9686 18.7952 21.9847 18.5975C22.0004 18.4057 22 18.1718 22 17.9H21.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M21.5 5.22729L12.6332 12.4819C12.2649 12.7833 11.7351 12.7833 11.3668 12.4819L2.5 5.22729",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=l;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=\"
|
|
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.391 5.04601L20.9455 5.273V5.273L21.391 5.04601ZM20.954 4.60899L21.181 4.16349L21.181 4.16349L20.954 4.60899ZM3.04601 4.60899L2.81901 4.16349L2.81901 4.16349L3.04601 4.60899ZM2.60899 5.04601L2.16349 4.81901L2.16349 4.81901L2.60899 5.04601ZM2.60899 18.954L2.16349 19.181H2.16349L2.60899 18.954ZM3.04601 19.391L3.273 18.9455L3.273 18.9455L3.04601 19.391ZM20.954 19.391L21.181 19.8365L21.181 19.8365L20.954 19.391ZM21.391 18.954L20.9455 18.727V18.727L21.391 18.954ZM21.5 6.1H21V17.9H21.5H22V6.1H21.5ZM21.5 6.1H22C22 5.82822 22.0004 5.59432 21.9847 5.40249C21.9686 5.20481 21.9329 5.0082 21.8365 4.81901L21.391 5.04601L20.9455 5.273C20.9581 5.29773 20.9769 5.34809 20.988 5.48392C20.9996 5.62559 21 5.81172 21 6.1H21.5ZM21.391 5.04601L21.8365 4.81902C21.6927 4.53677 21.4632 4.3073 21.181 4.16349L20.954 4.60899L20.727 5.0545C20.8211 5.10243 20.8976 5.17892 20.9455 5.273L21.391 5.04601ZM19.9 4.5V5C20.1883 5 20.3744 5.00039 20.5161 5.01196C20.6519 5.02306 20.7023 5.0419 20.727 5.0545L20.954 4.60899L21.181 4.16349C20.9918 4.06709 20.7952 4.03144 20.5975 4.01528C20.4057 3.99961 20.1718 4 19.9 4V4.5ZM4.1 4.5V5H19.9V4.5V4H4.1V4.5ZM4.1 4.5V4C3.82822 4 3.59432 3.99961 3.40249 4.01528C3.20481 4.03144 3.0082 4.06709 2.81901 4.16349L3.04601 4.60899L3.273 5.0545C3.29773 5.0419 3.34809 5.02306 3.48392 5.01196C3.62559 5.00039 3.81172 5 4.1 5V4.5ZM2.60899 5.04601L3.0545 5.273C3.10243 5.17892 3.17892 5.10243 3.273 5.0545L3.04601 4.60899L2.81901 4.16349C2.53677 4.3073 2.3073 4.53677 2.16349 4.81901L2.60899 5.04601ZM2.5 6.1H3C3 5.81172 3.00039 5.62559 3.01196 5.48392C3.02306 5.34809 3.0419 5.29773 3.0545 5.273L2.60899 5.04601L2.16349 4.81901C2.06709 5.0082 2.03144 5.20481 2.01528 5.40249C1.99961 5.59432 2 5.82822 2 6.1H2.5ZM2.5 17.9H3V6.1H2.5H2V17.9H2.5ZM2.5 17.9H2C2 18.1718 1.99961 18.4057 2.01528 18.5975C2.03144 18.7952 2.06709 18.9918 2.16349 19.181L2.60899 18.954L3.0545 18.727C3.0419 18.7023 3.02306 18.6519 3.01196 18.5161C3.00039 18.3744 3 18.1883 3 17.9H2.5ZM3.04601 19.391L3.273 18.9455C3.17892 18.8976 3.10243 18.8211 3.0545 18.727L2.60899 18.954L2.16349 19.181C2.3073 19.4632 2.53677 19.6927 2.81902 19.8365L3.04601 19.391ZM4.1 19.5V19C3.81172 19 3.62559 18.9996 3.48392 18.988C3.34809 18.9769 3.29773 18.9581 3.273 18.9455L3.04601 19.391L2.81901 19.8365C3.0082 19.9329 3.20481 19.9686 3.40249 19.9847C3.59432 20.0004 3.82822 20 4.1 20V19.5ZM19.9 19.5V19H4.1V19.5V20H19.9V19.5ZM19.9 19.5V20C20.1718 20 20.4057 20.0004 20.5975 19.9847C20.7952 19.9686 20.9918 19.9329 21.181 19.8365L20.954 19.391L20.727 18.9455C20.7023 18.9581 20.6519 18.9769 20.5161 18.988C20.3744 18.9996 20.1883 19 19.9 19V19.5ZM21.391 18.954L20.9455 18.727C20.8976 18.8211 20.8211 18.8976 20.727 18.9455L20.954 19.391L21.181 19.8365C21.4632 19.6927 21.6927 19.4632 21.8365 19.181L21.391 18.954ZM21.5 17.9H21C21 18.1883 20.9996 18.3744 20.988 18.5161C20.9769 18.6519 20.9581 18.7023 20.9455 18.727L21.391 18.954L21.8365 19.181C21.9329 18.9918 21.9686 18.7952 21.9847 18.5975C22.0004 18.4057 22 18.1718 22 17.9H21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.5 5.22729L12.6332 12.4819C12.2649 12.7833 11.7351 12.7833 11.3668 12.4819L2.5 5.22729\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,w7FACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 r from"react";import t from"react";import{Svg as M}from"react-native-svg";var o=({children:C,size:L=24,...n})=>t.createElement(M,{...n,width:typeof L=="number"?`${L}px`:L,height:typeof L=="number"?`${L}px`:L,viewBox:"0 0 24 24",fill:"none"},C);import{Path as e}from"react-native-svg";var Z=C=>r.createElement(o,{...C},r.createElement(e,{d:"M21.391 5.04601L20.9455 5.273V5.273L21.391 5.04601ZM20.954 4.60899L21.181 4.16349L21.181 4.16349L20.954 4.60899ZM3.04601 4.60899L2.81901 4.16349L2.81901 4.16349L3.04601 4.60899ZM2.60899 5.04601L2.16349 4.81901L2.16349 4.81901L2.60899 5.04601ZM2.60899 18.954L2.16349 19.181H2.16349L2.60899 18.954ZM3.04601 19.391L3.273 18.9455L3.273 18.9455L3.04601 19.391ZM20.954 19.391L21.181 19.8365L21.181 19.8365L20.954 19.391ZM21.391 18.954L20.9455 18.727V18.727L21.391 18.954ZM21.5 6.1H21V17.9H21.5H22V6.1H21.5ZM21.5 6.1H22C22 5.82822 22.0004 5.59432 21.9847 5.40249C21.9686 5.20481 21.9329 5.0082 21.8365 4.81901L21.391 5.04601L20.9455 5.273C20.9581 5.29773 20.9769 5.34809 20.988 5.48392C20.9996 5.62559 21 5.81172 21 6.1H21.5ZM21.391 5.04601L21.8365 4.81902C21.6927 4.53677 21.4632 4.3073 21.181 4.16349L20.954 4.60899L20.727 5.0545C20.8211 5.10243 20.8976 5.17892 20.9455 5.273L21.391 5.04601ZM19.9 4.5V5C20.1883 5 20.3744 5.00039 20.5161 5.01196C20.6519 5.02306 20.7023 5.0419 20.727 5.0545L20.954 4.60899L21.181 4.16349C20.9918 4.06709 20.7952 4.03144 20.5975 4.01528C20.4057 3.99961 20.1718 4 19.9 4V4.5ZM4.1 4.5V5H19.9V4.5V4H4.1V4.5ZM4.1 4.5V4C3.82822 4 3.59432 3.99961 3.40249 4.01528C3.20481 4.03144 3.0082 4.06709 2.81901 4.16349L3.04601 4.60899L3.273 5.0545C3.29773 5.0419 3.34809 5.02306 3.48392 5.01196C3.62559 5.00039 3.81172 5 4.1 5V4.5ZM2.60899 5.04601L3.0545 5.273C3.10243 5.17892 3.17892 5.10243 3.273 5.0545L3.04601 4.60899L2.81901 4.16349C2.53677 4.3073 2.3073 4.53677 2.16349 4.81901L2.60899 5.04601ZM2.5 6.1H3C3 5.81172 3.00039 5.62559 3.01196 5.48392C3.02306 5.34809 3.0419 5.29773 3.0545 5.273L2.60899 5.04601L2.16349 4.81901C2.06709 5.0082 2.03144 5.20481 2.01528 5.40249C1.99961 5.59432 2 5.82822 2 6.1H2.5ZM2.5 17.9H3V6.1H2.5H2V17.9H2.5ZM2.5 17.9H2C2 18.1718 1.99961 18.4057 2.01528 18.5975C2.03144 18.7952 2.06709 18.9918 2.16349 19.181L2.60899 18.954L3.0545 18.727C3.0419 18.7023 3.02306 18.6519 3.01196 18.5161C3.00039 18.3744 3 18.1883 3 17.9H2.5ZM3.04601 19.391L3.273 18.9455C3.17892 18.8976 3.10243 18.8211 3.0545 18.727L2.60899 18.954L2.16349 19.181C2.3073 19.4632 2.53677 19.6927 2.81902 19.8365L3.04601 19.391ZM4.1 19.5V19C3.81172 19 3.62559 18.9996 3.48392 18.988C3.34809 18.9769 3.29773 18.9581 3.273 18.9455L3.04601 19.391L2.81901 19.8365C3.0082 19.9329 3.20481 19.9686 3.40249 19.9847C3.59432 20.0004 3.82822 20 4.1 20V19.5ZM19.9 19.5V19H4.1V19.5V20H19.9V19.5ZM19.9 19.5V20C20.1718 20 20.4057 20.0004 20.5975 19.9847C20.7952 19.9686 20.9918 19.9329 21.181 19.8365L20.954 19.391L20.727 18.9455C20.7023 18.9581 20.6519 18.9769 20.5161 18.988C20.3744 18.9996 20.1883 19 19.9 19V19.5ZM21.391 18.954L20.9455 18.727C20.8976 18.8211 20.8211 18.8976 20.727 18.9455L20.954 19.391L21.181 19.8365C21.4632 19.6927 21.6927 19.4632 21.8365 19.181L21.391 18.954ZM21.5 17.9H21C21 18.1883 20.9996 18.3744 20.988 18.5161C20.9769 18.6519 20.9581 18.7023 20.9455 18.727L21.391 18.954L21.8365 19.181C21.9329 18.9918 21.9686 18.7952 21.9847 18.5975C22.0004 18.4057 22 18.1718 22 17.9H21.5Z",fill:"currentColor"}),r.createElement(e,{d:"M21.5 5.22729L12.6332 12.4819C12.2649 12.7833 11.7351 12.7833 11.3668 12.4819L2.5 5.22729",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),f=Z;export{Z as IconEmail1,f 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=\"
|
|
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.391 5.04601L20.9455 5.273V5.273L21.391 5.04601ZM20.954 4.60899L21.181 4.16349L21.181 4.16349L20.954 4.60899ZM3.04601 4.60899L2.81901 4.16349L2.81901 4.16349L3.04601 4.60899ZM2.60899 5.04601L2.16349 4.81901L2.16349 4.81901L2.60899 5.04601ZM2.60899 18.954L2.16349 19.181H2.16349L2.60899 18.954ZM3.04601 19.391L3.273 18.9455L3.273 18.9455L3.04601 19.391ZM20.954 19.391L21.181 19.8365L21.181 19.8365L20.954 19.391ZM21.391 18.954L20.9455 18.727V18.727L21.391 18.954ZM21.5 6.1H21V17.9H21.5H22V6.1H21.5ZM21.5 6.1H22C22 5.82822 22.0004 5.59432 21.9847 5.40249C21.9686 5.20481 21.9329 5.0082 21.8365 4.81901L21.391 5.04601L20.9455 5.273C20.9581 5.29773 20.9769 5.34809 20.988 5.48392C20.9996 5.62559 21 5.81172 21 6.1H21.5ZM21.391 5.04601L21.8365 4.81902C21.6927 4.53677 21.4632 4.3073 21.181 4.16349L20.954 4.60899L20.727 5.0545C20.8211 5.10243 20.8976 5.17892 20.9455 5.273L21.391 5.04601ZM19.9 4.5V5C20.1883 5 20.3744 5.00039 20.5161 5.01196C20.6519 5.02306 20.7023 5.0419 20.727 5.0545L20.954 4.60899L21.181 4.16349C20.9918 4.06709 20.7952 4.03144 20.5975 4.01528C20.4057 3.99961 20.1718 4 19.9 4V4.5ZM4.1 4.5V5H19.9V4.5V4H4.1V4.5ZM4.1 4.5V4C3.82822 4 3.59432 3.99961 3.40249 4.01528C3.20481 4.03144 3.0082 4.06709 2.81901 4.16349L3.04601 4.60899L3.273 5.0545C3.29773 5.0419 3.34809 5.02306 3.48392 5.01196C3.62559 5.00039 3.81172 5 4.1 5V4.5ZM2.60899 5.04601L3.0545 5.273C3.10243 5.17892 3.17892 5.10243 3.273 5.0545L3.04601 4.60899L2.81901 4.16349C2.53677 4.3073 2.3073 4.53677 2.16349 4.81901L2.60899 5.04601ZM2.5 6.1H3C3 5.81172 3.00039 5.62559 3.01196 5.48392C3.02306 5.34809 3.0419 5.29773 3.0545 5.273L2.60899 5.04601L2.16349 4.81901C2.06709 5.0082 2.03144 5.20481 2.01528 5.40249C1.99961 5.59432 2 5.82822 2 6.1H2.5ZM2.5 17.9H3V6.1H2.5H2V17.9H2.5ZM2.5 17.9H2C2 18.1718 1.99961 18.4057 2.01528 18.5975C2.03144 18.7952 2.06709 18.9918 2.16349 19.181L2.60899 18.954L3.0545 18.727C3.0419 18.7023 3.02306 18.6519 3.01196 18.5161C3.00039 18.3744 3 18.1883 3 17.9H2.5ZM3.04601 19.391L3.273 18.9455C3.17892 18.8976 3.10243 18.8211 3.0545 18.727L2.60899 18.954L2.16349 19.181C2.3073 19.4632 2.53677 19.6927 2.81902 19.8365L3.04601 19.391ZM4.1 19.5V19C3.81172 19 3.62559 18.9996 3.48392 18.988C3.34809 18.9769 3.29773 18.9581 3.273 18.9455L3.04601 19.391L2.81901 19.8365C3.0082 19.9329 3.20481 19.9686 3.40249 19.9847C3.59432 20.0004 3.82822 20 4.1 20V19.5ZM19.9 19.5V19H4.1V19.5V20H19.9V19.5ZM19.9 19.5V20C20.1718 20 20.4057 20.0004 20.5975 19.9847C20.7952 19.9686 20.9918 19.9329 21.181 19.8365L20.954 19.391L20.727 18.9455C20.7023 18.9581 20.6519 18.9769 20.5161 18.988C20.3744 18.9996 20.1883 19 19.9 19V19.5ZM21.391 18.954L20.9455 18.727C20.8976 18.8211 20.8211 18.8976 20.727 18.9455L20.954 19.391L21.181 19.8365C21.4632 19.6927 21.6927 19.4632 21.8365 19.181L21.391 18.954ZM21.5 17.9H21C21 18.1883 20.9996 18.3744 20.988 18.5161C20.9769 18.6519 20.9581 18.7023 20.9455 18.727L21.391 18.954L21.8365 19.181C21.9329 18.9918 21.9686 18.7952 21.9847 18.5975C22.0004 18.4057 22 18.1718 22 17.9H21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.5 5.22729L12.6332 12.4819C12.2649 12.7833 11.7351 12.7833 11.3668 12.4819L2.5 5.22729\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,w7FACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4FACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 i=Object.create;var t=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var M=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},V=(r,o,e,H)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of u(o))!B.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(H=f(o,n))||H.enumerable});return r};var a=(r,o,e)=>(e=r!=null?i(M(r)):{},V(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),Z=r=>V(t({},"__esModule",{value:!0}),r);var P={};I(P,{IconEmail2:()=>c,default:()=>x});module.exports=Z(P);var p=a(require("react"));var l=a(require("react")),s=require("react-native-svg"),m=({children:r,size:o=24,...e})=>l.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"),c=r=>p.default.createElement(m,{...r},p.default.createElement(C.Path,{d:"M21.5 5.5H21V18.5H21.5H22V5.5H21.5ZM3.5 4.5V5H20.5V4.5V4H3.5V4.5ZM2.5 18.5H3V5.5H2.5H2V18.5H2.5ZM20.5 19.5V19H3.5V19.5V20H20.5V19.5ZM2.5 18.5H2C2 19.3284 2.67157 20 3.5 20V19.5V19C3.22386 19 3 18.7761 3 18.5H2.5ZM3.5 4.5V4C2.67157 4 2 4.67157 2 5.5H2.5H3C3 5.22386 3.22386 5 3.5 5V4.5ZM21.5 18.5H21C21 18.7761 20.7761 19 20.5 19V19.5V20C21.3284 20 22 19.3284 22 18.5H21.5ZM21.5 5.5H22C22 4.67157 21.3284 4 20.5 4V4.5V5C20.7761 5 21 5.22386 21 5.5H21.5Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M21.5 7.25L12.4525 11.8417C12.1681 11.9861 11.8319 11.9861 11.5474 11.8417L2.5 7.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),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.
|
|
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 5.5H21V18.5H21.5H22V5.5H21.5ZM3.5 4.5V5H20.5V4.5V4H3.5V4.5ZM2.5 18.5H3V5.5H2.5H2V18.5H2.5ZM20.5 19.5V19H3.5V19.5V20H20.5V19.5ZM2.5 18.5H2C2 19.3284 2.67157 20 3.5 20V19.5V19C3.22386 19 3 18.7761 3 18.5H2.5ZM3.5 4.5V4C2.67157 4 2 4.67157 2 5.5H2.5H3C3 5.22386 3.22386 5 3.5 5V4.5ZM21.5 18.5H21C21 18.7761 20.7761 19 20.5 19V19.5V20C21.3284 20 22 19.3284 22 18.5H21.5ZM21.5 5.5H22C22 4.67157 21.3284 4 20.5 4V4.5V5C20.7761 5 21 5.22386 21 5.5H21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.5 7.25L12.4525 11.8417C12.1681 11.9861 11.8319 11.9861 11.5474 11.8417L2.5 7.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,ucACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 e from"react";import C from"react";import{Svg as
|
|
1
|
+
import e from"react";import C from"react";import{Svg as H}from"react-native-svg";var n=({children:o,size:r=24,...p})=>C.createElement(H,{...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 t}from"react-native-svg";var V=o=>e.createElement(n,{...o},e.createElement(t,{d:"M21.5 5.5H21V18.5H21.5H22V5.5H21.5ZM3.5 4.5V5H20.5V4.5V4H3.5V4.5ZM2.5 18.5H3V5.5H2.5H2V18.5H2.5ZM20.5 19.5V19H3.5V19.5V20H20.5V19.5ZM2.5 18.5H2C2 19.3284 2.67157 20 3.5 20V19.5V19C3.22386 19 3 18.7761 3 18.5H2.5ZM3.5 4.5V4C2.67157 4 2 4.67157 2 5.5H2.5H3C3 5.22386 3.22386 5 3.5 5V4.5ZM21.5 18.5H21C21 18.7761 20.7761 19 20.5 19V19.5V20C21.3284 20 22 19.3284 22 18.5H21.5ZM21.5 5.5H22C22 4.67157 21.3284 4 20.5 4V4.5V5C20.7761 5 21 5.22386 21 5.5H21.5Z",fill:"currentColor"}),e.createElement(t,{d:"M21.5 7.25L12.4525 11.8417C12.1681 11.9861 11.8319 11.9861 11.5474 11.8417L2.5 7.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=V;export{V 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.
|
|
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 5.5H21V18.5H21.5H22V5.5H21.5ZM3.5 4.5V5H20.5V4.5V4H3.5V4.5ZM2.5 18.5H3V5.5H2.5H2V18.5H2.5ZM20.5 19.5V19H3.5V19.5V20H20.5V19.5ZM2.5 18.5H2C2 19.3284 2.67157 20 3.5 20V19.5V19C3.22386 19 3 18.7761 3 18.5H2.5ZM3.5 4.5V4C2.67157 4 2 4.67157 2 5.5H2.5H3C3 5.22386 3.22386 5 3.5 5V4.5ZM21.5 18.5H21C21 18.7761 20.7761 19 20.5 19V19.5V20C21.3284 20 22 19.3284 22 18.5H21.5ZM21.5 5.5H22C22 4.67157 21.3284 4 20.5 4V4.5V5C20.7761 5 21 5.22386 21 5.5H21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.5 7.25L12.4525 11.8417C12.1681 11.9861 11.8319 11.9861 11.5474 11.8417L2.5 7.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,ucACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sFACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 f=Object.create;var t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!x.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(s=d(o,n))||s.enumerable});return r};var m=(r,o,e)=>(e=r!=null?f(I(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(t({},"__esModule",{value:!0}),r);var v={};P(v,{IconEmail3:()=>u,default:()=>k});module.exports=g(v);var C=m(require("react"));var i=m(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...e})=>i.default.createElement(l.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),u=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{d:"M19.9 4.5H4.1C3.53995 4.5 3.25992 4.5 3.04601 4.60899C2.85785 4.70487 2.70487 4.85785 2.60899 5.04601C2.5 5.25992 2.5 5.53995 2.5 6.1V17.9C2.5 18.4601 2.5 18.7401 2.60899 18.954C2.70487 19.1422 2.85785 19.2951 3.04601 19.391C3.25992 19.5 3.53995 19.5 4.1 19.5H19.9C20.4601 19.5 20.7401 19.5 20.954 19.391C21.1422 19.2951 21.2951 19.1422 21.391 18.954C21.5 18.7401 21.5 18.4601 21.5 17.9V6.1C21.5 5.53995 21.5 5.25992 21.391 5.04601C21.2951 4.85785 21.1422 4.70487 20.954 4.60899C20.7401 4.5 20.4601 4.5 19.9 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(p.Path,{d:"M21.5 8.10889C18.9132 10.2283 15.6051 11.5001 12 11.5001C8.39489 11.5001 5.08682 10.2283 2.5 8.10889",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),k=u;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=\"
|
|
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=\"M19.9 4.5H4.1C3.53995 4.5 3.25992 4.5 3.04601 4.60899C2.85785 4.70487 2.70487 4.85785 2.60899 5.04601C2.5 5.25992 2.5 5.53995 2.5 6.1V17.9C2.5 18.4601 2.5 18.7401 2.60899 18.954C2.70487 19.1422 2.85785 19.2951 3.04601 19.391C3.25992 19.5 3.53995 19.5 4.1 19.5H19.9C20.4601 19.5 20.7401 19.5 20.954 19.391C21.1422 19.2951 21.2951 19.1422 21.391 18.954C21.5 18.7401 21.5 18.4601 21.5 17.9V6.1C21.5 5.53995 21.5 5.25992 21.391 5.04601C21.2951 4.85785 21.1422 4.70487 20.954 4.60899C20.7401 4.5 20.4601 4.5 19.9 4.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.5 8.10889C18.9132 10.2283 15.6051 11.5001 12 11.5001C8.39489 11.5001 5.08682 10.2283 2.5 8.10889\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,mgBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 p from"react";import{Svg as s}from"react-native-svg";var n=({children:o,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{d:"M19.9 4.5H4.1C3.53995 4.5 3.25992 4.5 3.04601 4.60899C2.85785 4.70487 2.70487 4.85785 2.60899 5.04601C2.5 5.25992 2.5 5.53995 2.5 6.1V17.9C2.5 18.4601 2.5 18.7401 2.60899 18.954C2.70487 19.1422 2.85785 19.2951 3.04601 19.391C3.25992 19.5 3.53995 19.5 4.1 19.5H19.9C20.4601 19.5 20.7401 19.5 20.954 19.391C21.1422 19.2951 21.2951 19.1422 21.391 18.954C21.5 18.7401 21.5 18.4601 21.5 17.9V6.1C21.5 5.53995 21.5 5.25992 21.391 5.04601C21.2951 4.85785 21.1422 4.70487 20.954 4.60899C20.7401 4.5 20.4601 4.5 19.9 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M21.5 8.10889C18.9132 10.2283 15.6051 11.5001 12 11.5001C8.39489 11.5001 5.08682 10.2283 2.5 8.10889",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),x=a;export{a as IconEmail3,x 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=\"
|
|
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=\"M19.9 4.5H4.1C3.53995 4.5 3.25992 4.5 3.04601 4.60899C2.85785 4.70487 2.70487 4.85785 2.60899 5.04601C2.5 5.25992 2.5 5.53995 2.5 6.1V17.9C2.5 18.4601 2.5 18.7401 2.60899 18.954C2.70487 19.1422 2.85785 19.2951 3.04601 19.391C3.25992 19.5 3.53995 19.5 4.1 19.5H19.9C20.4601 19.5 20.7401 19.5 20.954 19.391C21.1422 19.2951 21.2951 19.1422 21.391 18.954C21.5 18.7401 21.5 18.4601 21.5 17.9V6.1C21.5 5.53995 21.5 5.25992 21.391 5.04601C21.2951 4.85785 21.1422 4.70487 20.954 4.60899C20.7401 4.5 20.4601 4.5 19.9 4.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.5 8.10889C18.9132 10.2283 15.6051 11.5001 12 11.5001C8.39489 11.5001 5.08682 10.2283 2.5 8.10889\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,mgBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 e=Object.defineProperty;var Z=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var c=Object.getPrototypeOf,u=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var t in o)e(r,t,{get:o[t],enumerable:!0})},p=(r,o,t,H)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of f(o))!u.call(r,n)&&n!==t&&e(r,n,{get:()=>o[n],enumerable:!(H=Z(o,n))||H.enumerable});return r};var l=(r,o,t)=>(t=r!=null?M(c(r)):{},p(o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>p(e({},"__esModule",{value:!0}),r);var L={};B(L,{IconEmailNotification:()=>s,default:()=>x});module.exports=I(L);var C=l(require("react"));var a=l(require("react")),i=require("react-native-svg"),m=({children:r,size:o=24,...t})=>a.default.createElement(i.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var V=require("react-native-svg"),s=r=>C.default.createElement(m,{...r},C.default.createElement(V.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",strokeLinejoin:"round"}),C.default.createElement(V.Path,{d:"M13.5 5H14V4H13.5V4.5V5ZM22 12.5C22 12.2239 21.7761 12 21.5 12C21.2239 12 21 12.2239 21 12.5H21.5H22ZM3.5 4.5V5H13.5V4.5V4H3.5V4.5ZM2.5 5.5H3C3 5.22386 3.22386 5 3.5 5V4.5V4C2.67157 4 2 4.67157 2 5.5H2.5ZM2.5 18.5H3V5.5H2.5H2V18.5H2.5ZM2.5 18.5H2C2 19.3284 2.67157 20 3.5 20V19.5V19C3.22386 19 3 18.7761 3 18.5H2.5ZM20.5 19.5V19H3.5V19.5V20H20.5V19.5ZM20.5 19.5V20C21.3284 20 22 19.3284 22 18.5H21.5H21C21 18.7761 20.7761 19 20.5 19V19.5ZM21.5 12.5H21V18.5H21.5H22V12.5H21.5Z",fill:"currentColor"}),C.default.createElement(V.Path,{d:"M16.133 11.4427C16.3992 11.3693 16.5554 11.0939 16.482 10.8277C16.4085 10.5616 16.1332 10.4053 15.867 10.4788L16 10.9608L16.133 11.4427ZM12 11.5V11C8.5146 11 5.31762 9.77089 2.81688 7.722L2.5 8.10876L2.18312 8.49553C4.85603 10.6855 8.27517 12 12 12V11.5ZM16 10.9608L15.867 10.4788C14.6365 10.8184 13.3398 11 12 11V11.5V12C13.4306 12 14.8167 11.8061 16.133 11.4427L16 10.9608Z",fill:"currentColor"})),x=s;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.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 strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.5 5H14V4H13.5V4.5V5ZM22 12.5C22 12.2239 21.7761 12 21.5 12C21.2239 12 21 12.2239 21 12.5H21.5H22ZM3.5 4.5V5H13.5V4.5V4H3.5V4.5ZM2.5 5.5H3C3 5.22386 3.22386 5 3.5 5V4.5V4C2.67157 4 2 4.67157 2 5.5H2.5ZM2.5 18.5H3V5.5H2.5H2V18.5H2.5ZM2.5 18.5H2C2 19.3284 2.67157 20 3.5 20V19.5V19C3.22386 19 3 18.7761 3 18.5H2.5ZM20.5 19.5V19H3.5V19.5V20H20.5V19.5ZM20.5 19.5V20C21.3284 20 22 19.3284 22 18.5H21.5H21C21 18.7761 20.7761 19 20.5 19V19.5ZM21.5 12.5H21V18.5H21.5H22V12.5H21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.133 11.4427C16.3992 11.3693 16.5554 11.0939 16.482 10.8277C16.4085 10.5616 16.1332 10.4053 15.867 10.4788L16 10.9608L16.133 11.4427ZM12 11.5V11C8.5146 11 5.31762 9.77089 2.81688 7.722L2.5 8.10876L2.18312 8.49553C4.85603 10.6855 8.27517 12 12 12V11.5ZM16 10.9608L15.867 10.4788C14.6365 10.8184 13.3398 11 12 11V11.5V12C13.4306 12 14.8167 11.8061 16.133 11.4427L16 10.9608Z\"\n fill=\"currentColor\"\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,+HACF,OAAO,eACP,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8dACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0XACF,KAAK,eACP,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 V from"react";import{Svg as H}from"react-native-svg";var C=({children:t,size:r=24,...e})=>V.createElement(H,{...e,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 n}from"react-native-svg";var p=t=>o.createElement(C,{...t},o.createElement(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",stroke:"currentColor",strokeLinejoin:"round"}),o.createElement(n,{d:"M13.5 5H14V4H13.5V4.5V5ZM22 12.5C22 12.2239 21.7761 12 21.5 12C21.2239 12 21 12.2239 21 12.5H21.5H22ZM3.5 4.5V5H13.5V4.5V4H3.5V4.5ZM2.5 5.5H3C3 5.22386 3.22386 5 3.5 5V4.5V4C2.67157 4 2 4.67157 2 5.5H2.5ZM2.5 18.5H3V5.5H2.5H2V18.5H2.5ZM2.5 18.5H2C2 19.3284 2.67157 20 3.5 20V19.5V19C3.22386 19 3 18.7761 3 18.5H2.5ZM20.5 19.5V19H3.5V19.5V20H20.5V19.5ZM20.5 19.5V20C21.3284 20 22 19.3284 22 18.5H21.5H21C21 18.7761 20.7761 19 20.5 19V19.5ZM21.5 12.5H21V18.5H21.5H22V12.5H21.5Z",fill:"currentColor"}),o.createElement(n,{d:"M16.133 11.4427C16.3992 11.3693 16.5554 11.0939 16.482 10.8277C16.4085 10.5616 16.1332 10.4053 15.867 10.4788L16 10.9608L16.133 11.4427ZM12 11.5V11C8.5146 11 5.31762 9.77089 2.81688 7.722L2.5 8.10876L2.18312 8.49553C4.85603 10.6855 8.27517 12 12 12V11.5ZM16 10.9608L15.867 10.4788C14.6365 10.8184 13.3398 11 12 11V11.5V12C13.4306 12 14.8167 11.8061 16.133 11.4427L16 10.9608Z",fill:"currentColor"})),u=p;export{p as IconEmailNotification,u 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.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 strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.5 5H14V4H13.5V4.5V5ZM22 12.5C22 12.2239 21.7761 12 21.5 12C21.2239 12 21 12.2239 21 12.5H21.5H22ZM3.5 4.5V5H13.5V4.5V4H3.5V4.5ZM2.5 5.5H3C3 5.22386 3.22386 5 3.5 5V4.5V4C2.67157 4 2 4.67157 2 5.5H2.5ZM2.5 18.5H3V5.5H2.5H2V18.5H2.5ZM2.5 18.5H2C2 19.3284 2.67157 20 3.5 20V19.5V19C3.22386 19 3 18.7761 3 18.5H2.5ZM20.5 19.5V19H3.5V19.5V20H20.5V19.5ZM20.5 19.5V20C21.3284 20 22 19.3284 22 18.5H21.5H21C21 18.7761 20.7761 19 20.5 19V19.5ZM21.5 12.5H21V18.5H21.5H22V12.5H21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.133 11.4427C16.3992 11.3693 16.5554 11.0939 16.482 10.8277C16.4085 10.5616 16.1332 10.4053 15.867 10.4788L16 10.9608L16.133 11.4427ZM12 11.5V11C8.5146 11 5.31762 9.77089 2.81688 7.722L2.5 8.10876L2.18312 8.49553C4.85603 10.6855 8.27517 12 12 12V11.5ZM16 10.9608L15.867 10.4788C14.6365 10.8184 13.3398 11 12 11V11.5V12C13.4306 12 14.8167 11.8061 16.133 11.4427L16 10.9608Z\"\n fill=\"currentColor\"\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,+HACF,OAAO,eACP,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8dACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0XACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmailNotification","props","React","CentralIconBase","IconEmailNotification_default"]}
|