@central-icons-react-native/round-outlined-radius-2-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.59097 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59097 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.5H18.5C19.6046 18.5 20.5 17.6046 20.5 16.5V5.50002C20.5 4.39545 19.6046 3.50002 18.5 3.50002L5.5 3.5C4.39543 3.5 3.5 4.39543 3.5 5.5V16.5C3.5 17.6046 4.39543 18.5 5.49999 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.59097 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59097 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.5H18.5C19.6046 18.5 20.5 17.6046 20.5 16.5V5.50002C20.5 4.39545 19.6046 3.50002 18.5 3.50002L5.5 3.5C4.39543 3.5 3.5 4.39543 3.5 5.5V16.5C3.5 17.6046 4.39543 18.5 5.49999 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.59097 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59097 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.5H18.5C19.6046 18.5 20.5 17.6046 20.5 16.5V5.50002C20.5 4.39545 19.6046 3.50002 18.5 3.50002L5.5 3.5C4.39543 3.5 3.5 4.39543 3.5 5.5V16.5C3.5 17.6046 4.39543 18.5 5.49999 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.59097 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59097 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.5H18.5C19.6046 18.5 20.5 17.6046 20.5 16.5V5.50002C20.5 4.39545 19.6046 3.50002 18.5 3.50002L5.5 3.5C4.39543 3.5 3.5 4.39543 3.5 5.5V16.5C3.5 17.6046 4.39543 18.5 5.49999 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,gkBACF,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.59097 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59097 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.5H18.5C19.6046 18.5 20.5 17.6046 20.5 16.5V5.50002C20.5 4.39545 19.6046 3.50002 18.5 3.50002L5.5 3.5C4.39543 3.5 3.5 4.39543 3.5 5.5V16.5C3.5 17.6046 4.39543 18.5 5.49999 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.59097 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59097 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.5H18.5C19.6046 18.5 20.5 17.6046 20.5 16.5V5.50002C20.5 4.39545 19.6046 3.50002 18.5 3.50002L5.5 3.5C4.39543 3.5 3.5 4.39543 3.5 5.5V16.5C3.5 17.6046 4.39543 18.5 5.49999 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.59097 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59097 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.5H18.5C19.6046 18.5 20.5 17.6046 20.5 16.5V5.50002C20.5 4.39545 19.6046 3.50002 18.5 3.50002L5.5 3.5C4.39543 3.5 3.5 4.39543 3.5 5.5V16.5C3.5 17.6046 4.39543 18.5 5.49999 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.59097 12.9524 7.91333 12.1237 7.91333C11.2949 7.91333 10.6237 8.59097 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.5H18.5C19.6046 18.5 20.5 17.6046 20.5 16.5V5.50002C20.5 4.39545 19.6046 3.50002 18.5 3.50002L5.5 3.5C4.39543 3.5 3.5 4.39543 3.5 5.5V16.5C3.5 17.6046 4.39543 18.5 5.49999 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,gkBACF,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 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 L={};P(L,{IconEmail1:()=>u,default:()=>k});module.exports=g(L);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:"M21.5 16.3V7.7C21.5 6.5799 21.5 6.01984 21.282 5.59202C21.2598 5.54836 21.236 5.50565 21.2107 5.46395C21.0183 5.14624 20.7406 4.88749 20.408 4.71799C19.9802 4.5 19.4201 4.5 18.3 4.5H5.7C4.5799 4.5 4.01984 4.5 3.59202 4.71799C3.25935 4.88749 2.98167 5.14624 2.78927 5.46395C2.76401 5.50565 2.74023 5.54836 2.71799 5.59202C2.5 6.01984 2.5 6.57989 2.5 7.7V16.3C2.5 17.4201 2.5 17.9802 2.71799 18.408C2.90973 18.7843 3.21569 19.0903 3.59202 19.282C4.01984 19.5 4.57989 19.5 5.7 19.5H18.3C19.4201 19.5 19.9802 19.5 20.408 19.282C20.7843 19.0903 21.0903 18.7843 21.282 18.408C21.5 17.9802 21.5 17.4201 21.5 16.3Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(p.Path,{d:"M2.78906 5.46396L10.7333 11.9638C11.4701 12.5666 12.5295 12.5666 13.2663 11.9638L21.2105 5.46396",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),k=u;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.5 16.3V7.7C21.5 6.5799 21.5 6.01984 21.282 5.59202C21.2598 5.54836 21.236 5.50565 21.2107 5.46395C21.0183 5.14624 20.7406 4.88749 20.408 4.71799C19.9802 4.5 19.4201 4.5 18.3 4.5H5.7C4.5799 4.5 4.01984 4.5 3.59202 4.71799C3.25935 4.88749 2.98167 5.14624 2.78927 5.46395C2.76401 5.50565 2.74023 5.54836 2.71799 5.59202C2.5 6.01984 2.5 6.57989 2.5 7.7V16.3C2.5 17.4201 2.5 17.9802 2.71799 18.408C2.90973 18.7843 3.21569 19.0903 3.59202 19.282C4.01984 19.5 4.57989 19.5 5.7 19.5H18.3C19.4201 19.5 19.9802 19.5 20.408 19.282C20.7843 19.0903 21.0903 18.7843 21.282 18.408C21.5 17.9802 21.5 17.4201 21.5 16.3Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.78906 5.46396L10.7333 11.9638C11.4701 12.5666 12.5295 12.5666 13.2663 11.9638L21.2105 5.46396\"\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,imBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mGACF,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 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:"M21.5 16.3V7.7C21.5 6.5799 21.5 6.01984 21.282 5.59202C21.2598 5.54836 21.236 5.50565 21.2107 5.46395C21.0183 5.14624 20.7406 4.88749 20.408 4.71799C19.9802 4.5 19.4201 4.5 18.3 4.5H5.7C4.5799 4.5 4.01984 4.5 3.59202 4.71799C3.25935 4.88749 2.98167 5.14624 2.78927 5.46395C2.76401 5.50565 2.74023 5.54836 2.71799 5.59202C2.5 6.01984 2.5 6.57989 2.5 7.7V16.3C2.5 17.4201 2.5 17.9802 2.71799 18.408C2.90973 18.7843 3.21569 19.0903 3.59202 19.282C4.01984 19.5 4.57989 19.5 5.7 19.5H18.3C19.4201 19.5 19.9802 19.5 20.408 19.282C20.7843 19.0903 21.0903 18.7843 21.282 18.408C21.5 17.9802 21.5 17.4201 21.5 16.3Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M2.78906 5.46396L10.7333 11.9638C11.4701 12.5666 12.5295 12.5666 13.2663 11.9638L21.2105 5.46396",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),x=a;export{a as IconEmail1,x 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.5 16.3V7.7C21.5 6.5799 21.5 6.01984 21.282 5.59202C21.2598 5.54836 21.236 5.50565 21.2107 5.46395C21.0183 5.14624 20.7406 4.88749 20.408 4.71799C19.9802 4.5 19.4201 4.5 18.3 4.5H5.7C4.5799 4.5 4.01984 4.5 3.59202 4.71799C3.25935 4.88749 2.98167 5.14624 2.78927 5.46395C2.76401 5.50565 2.74023 5.54836 2.71799 5.59202C2.5 6.01984 2.5 6.57989 2.5 7.7V16.3C2.5 17.4201 2.5 17.9802 2.71799 18.408C2.90973 18.7843 3.21569 19.0903 3.59202 19.282C4.01984 19.5 4.57989 19.5 5.7 19.5H18.3C19.4201 19.5 19.9802 19.5 20.408 19.282C20.7843 19.0903 21.0903 18.7843 21.282 18.408C21.5 17.9802 21.5 17.4201 21.5 16.3Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.78906 5.46396L10.7333 11.9638C11.4701 12.5666 12.5295 12.5666 13.2663 11.9638L21.2105 5.46396\"\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,imBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mGACF,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 6.5H21V17.5H21.5H22V6.5H21.5ZM4.5 4.5V5H19.5V4.5V4H4.5V4.5ZM2.5 17.5H3V6.5H2.5H2V17.5H2.5ZM19.5 19.5V19H4.5V19.5V20H19.5V19.5ZM2.5 17.5H2C2 18.8807 3.11929 20 4.5 20V19.5V19C3.67157 19 3 18.3284 3 17.5H2.5ZM4.5 4.5V4C3.11929 4 2 5.11929 2 6.5H2.5H3C3 5.67157 3.67157 5 4.5 5V4.5ZM21.5 17.5H21C21 18.3284 20.3284 19 19.5 19V19.5V20C20.8807 20 22 18.8807 22 17.5H21.5ZM21.5 6.5H22C22 5.11929 20.8807 4 19.5 4V4.5V5C20.3284 5 21 5.67157 21 6.5H21.5Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M21.5 7.25L12.9051 11.6121C12.3362 11.9008 11.6637 11.9008 11.0948 11.6121L2.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 6.5H21V17.5H21.5H22V6.5H21.5ZM4.5 4.5V5H19.5V4.5V4H4.5V4.5ZM2.5 17.5H3V6.5H2.5H2V17.5H2.5ZM19.5 19.5V19H4.5V19.5V20H19.5V19.5ZM2.5 17.5H2C2 18.8807 3.11929 20 4.5 20V19.5V19C3.67157 19 3 18.3284 3 17.5H2.5ZM4.5 4.5V4C3.11929 4 2 5.11929 2 6.5H2.5H3C3 5.67157 3.67157 5 4.5 5V4.5ZM21.5 17.5H21C21 18.3284 20.3284 19 19.5 19V19.5V20C20.8807 20 22 18.8807 22 17.5H21.5ZM21.5 6.5H22C22 5.11929 20.8807 4 19.5 4V4.5V5C20.3284 5 21 5.67157 21 6.5H21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.5 7.25L12.9051 11.6121C12.3362 11.9008 11.6637 11.9008 11.0948 11.6121L2.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 6.5H21V17.5H21.5H22V6.5H21.5ZM4.5 4.5V5H19.5V4.5V4H4.5V4.5ZM2.5 17.5H3V6.5H2.5H2V17.5H2.5ZM19.5 19.5V19H4.5V19.5V20H19.5V19.5ZM2.5 17.5H2C2 18.8807 3.11929 20 4.5 20V19.5V19C3.67157 19 3 18.3284 3 17.5H2.5ZM4.5 4.5V4C3.11929 4 2 5.11929 2 6.5H2.5H3C3 5.67157 3.67157 5 4.5 5V4.5ZM21.5 17.5H21C21 18.3284 20.3284 19 19.5 19V19.5V20C20.8807 20 22 18.8807 22 17.5H21.5ZM21.5 6.5H22C22 5.11929 20.8807 4 19.5 4V4.5V5C20.3284 5 21 5.67157 21 6.5H21.5Z",fill:"currentColor"}),e.createElement(t,{d:"M21.5 7.25L12.9051 11.6121C12.3362 11.9008 11.6637 11.9008 11.0948 11.6121L2.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 6.5H21V17.5H21.5H22V6.5H21.5ZM4.5 4.5V5H19.5V4.5V4H4.5V4.5ZM2.5 17.5H3V6.5H2.5H2V17.5H2.5ZM19.5 19.5V19H4.5V19.5V20H19.5V19.5ZM2.5 17.5H2C2 18.8807 3.11929 20 4.5 20V19.5V19C3.67157 19 3 18.3284 3 17.5H2.5ZM4.5 4.5V4C3.11929 4 2 5.11929 2 6.5H2.5H3C3 5.67157 3.67157 5 4.5 5V4.5ZM21.5 17.5H21C21 18.3284 20.3284 19 19.5 19V19.5V20C20.8807 20 22 18.8807 22 17.5H21.5ZM21.5 6.5H22C22 5.11929 20.8807 4 19.5 4V4.5V5C20.3284 5 21 5.67157 21 6.5H21.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21.5 7.25L12.9051 11.6121C12.3362 11.9008 11.6637 11.9008 11.0948 11.6121L2.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:"M18.3 4.5H5.7C4.5799 4.5 4.01984 4.5 3.59202 4.71799C3.21569 4.90973 2.90973 5.21569 2.71799 5.59202C2.5 6.01984 2.5 6.57989 2.5 7.7V16.3C2.5 17.4201 2.5 17.9802 2.71799 18.408C2.90973 18.7843 3.21569 19.0903 3.59202 19.282C4.01984 19.5 4.57989 19.5 5.7 19.5H18.3C19.4201 19.5 19.9802 19.5 20.408 19.282C20.7843 19.0903 21.0903 18.7843 21.282 18.408C21.5 17.9802 21.5 17.4201 21.5 16.3V7.7C21.5 6.5799 21.5 6.01984 21.282 5.59202C21.0903 5.21569 20.7843 4.90973 20.408 4.71799C19.9802 4.5 19.4201 4.5 18.3 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=\"M18.3 4.5H5.7C4.5799 4.5 4.01984 4.5 3.59202 4.71799C3.21569 4.90973 2.90973 5.21569 2.71799 5.59202C2.5 6.01984 2.5 6.57989 2.5 7.7V16.3C2.5 17.4201 2.5 17.9802 2.71799 18.408C2.90973 18.7843 3.21569 19.0903 3.59202 19.282C4.01984 19.5 4.57989 19.5 5.7 19.5H18.3C19.4201 19.5 19.9802 19.5 20.408 19.282C20.7843 19.0903 21.0903 18.7843 21.282 18.408C21.5 17.9802 21.5 17.4201 21.5 16.3V7.7C21.5 6.5799 21.5 6.01984 21.282 5.59202C21.0903 5.21569 20.7843 4.90973 20.408 4.71799C19.9802 4.5 19.4201 4.5 18.3 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,igBACF,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:"M18.3 4.5H5.7C4.5799 4.5 4.01984 4.5 3.59202 4.71799C3.21569 4.90973 2.90973 5.21569 2.71799 5.59202C2.5 6.01984 2.5 6.57989 2.5 7.7V16.3C2.5 17.4201 2.5 17.9802 2.71799 18.408C2.90973 18.7843 3.21569 19.0903 3.59202 19.282C4.01984 19.5 4.57989 19.5 5.7 19.5H18.3C19.4201 19.5 19.9802 19.5 20.408 19.282C20.7843 19.0903 21.0903 18.7843 21.282 18.408C21.5 17.9802 21.5 17.4201 21.5 16.3V7.7C21.5 6.5799 21.5 6.01984 21.282 5.59202C21.0903 5.21569 20.7843 4.90973 20.408 4.71799C19.9802 4.5 19.4201 4.5 18.3 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=\"M18.3 4.5H5.7C4.5799 4.5 4.01984 4.5 3.59202 4.71799C3.21569 4.90973 2.90973 5.21569 2.71799 5.59202C2.5 6.01984 2.5 6.57989 2.5 7.7V16.3C2.5 17.4201 2.5 17.9802 2.71799 18.408C2.90973 18.7843 3.21569 19.0903 3.59202 19.282C4.01984 19.5 4.57989 19.5 5.7 19.5H18.3C19.4201 19.5 19.9802 19.5 20.408 19.282C20.7843 19.0903 21.0903 18.7843 21.282 18.408C21.5 17.9802 21.5 17.4201 21.5 16.3V7.7C21.5 6.5799 21.5 6.01984 21.282 5.59202C21.0903 5.21569 20.7843 4.90973 20.408 4.71799C19.9802 4.5 19.4201 4.5 18.3 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,igBACF,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.5H22ZM4.5 4.5V5H13.5V4.5V4H4.5V4.5ZM2.5 6.5H3C3 5.67157 3.67157 5 4.5 5V4.5V4C3.11929 4 2 5.11929 2 6.5H2.5ZM2.5 17.5H3V6.5H2.5H2V17.5H2.5ZM2.5 17.5H2C2 18.8807 3.11929 20 4.5 20V19.5V19C3.67157 19 3 18.3284 3 17.5H2.5ZM19.5 19.5V19H4.5V19.5V20H19.5V19.5ZM19.5 19.5V20C20.8807 20 22 18.8807 22 17.5H21.5H21C21 18.3284 20.3284 19 19.5 19V19.5ZM21.5 12.5H21V17.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.5H22ZM4.5 4.5V5H13.5V4.5V4H4.5V4.5ZM2.5 6.5H3C3 5.67157 3.67157 5 4.5 5V4.5V4C3.11929 4 2 5.11929 2 6.5H2.5ZM2.5 17.5H3V6.5H2.5H2V17.5H2.5ZM2.5 17.5H2C2 18.8807 3.11929 20 4.5 20V19.5V19C3.67157 19 3 18.3284 3 17.5H2.5ZM19.5 19.5V19H4.5V19.5V20H19.5V19.5ZM19.5 19.5V20C20.8807 20 22 18.8807 22 17.5H21.5H21C21 18.3284 20.3284 19 19.5 19V19.5ZM21.5 12.5H21V17.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.5H22ZM4.5 4.5V5H13.5V4.5V4H4.5V4.5ZM2.5 6.5H3C3 5.67157 3.67157 5 4.5 5V4.5V4C3.11929 4 2 5.11929 2 6.5H2.5ZM2.5 17.5H3V6.5H2.5H2V17.5H2.5ZM2.5 17.5H2C2 18.8807 3.11929 20 4.5 20V19.5V19C3.67157 19 3 18.3284 3 17.5H2.5ZM19.5 19.5V19H4.5V19.5V20H19.5V19.5ZM19.5 19.5V20C20.8807 20 22 18.8807 22 17.5H21.5H21C21 18.3284 20.3284 19 19.5 19V19.5ZM21.5 12.5H21V17.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.5H22ZM4.5 4.5V5H13.5V4.5V4H4.5V4.5ZM2.5 6.5H3C3 5.67157 3.67157 5 4.5 5V4.5V4C3.11929 4 2 5.11929 2 6.5H2.5ZM2.5 17.5H3V6.5H2.5H2V17.5H2.5ZM2.5 17.5H2C2 18.8807 3.11929 20 4.5 20V19.5V19C3.67157 19 3 18.3284 3 17.5H2.5ZM19.5 19.5V19H4.5V19.5V20H19.5V19.5ZM19.5 19.5V20C20.8807 20 22 18.8807 22 17.5H21.5H21C21 18.3284 20.3284 19 19.5 19V19.5ZM21.5 12.5H21V17.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"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=B(o,e))||a.enumerable});return r};var m=(r,o,t)=>(t=r!=null?f(x(r)):{},s(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>s(n({},"__esModule",{value:!0}),r);var h={};d(h,{IconHeartDonation:()=>u,default:()=>v});module.exports=g(h);var p=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),i=({children:r,size:o=24,...t})=>l.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),u=r=>p.default.createElement(i,{...r},p.default.createElement(C.Path,{d:"M12 5.37552C18.5042 -1.25346 29.6544 11.0575 12 21C-5.65441 11.0576 5.4957 -1.25346 12 5.37552Z",stroke:"currentColor",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M12.012 9.09756V8M12.012 16.2317V17M9.67969 14.4482C10.5159 16.0945 14.0699 16.0047 14.0699 14.1567C14.0699 11.8246 9.88875 12.9453 9.88875 10.561C9.88875 8.9544 12.4614 8.72364 13.6583 9.80164",stroke:"currentColor",strokeLinecap:"round"})),v=u;0&&(module.exports={IconHeartDonation});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHeartDonation/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 IconHeartDonation: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 5.37552C18.5042 -1.25346 29.6544 11.0575 12 21C-5.65441 11.0576 5.4957 -1.25346 12 5.37552Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.012 9.09756V8M12.012 16.2317V17M9.67969 14.4482C10.5159 16.0945 14.0699 16.0047 14.0699 14.1567C14.0699 11.8246 9.88875 12.9453 9.88875 10.561C9.88875 8.9544 12.4614 8.72364 13.6583 9.80164\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHeartDonation;\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,kGACF,OAAO,eACP,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oMACF,OAAO,eACP,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconHeartDonation_exports","__export","IconHeartDonation","IconHeartDonation_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconHeartDonation","props","React","CentralIconBase","IconHeartDonation_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...p})=>C.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var s=o=>t.createElement(e,{...o},t.createElement(n,{d:"M12 5.37552C18.5042 -1.25346 29.6544 11.0575 12 21C-5.65441 11.0576 5.4957 -1.25346 12 5.37552Z",stroke:"currentColor",strokeLinejoin:"round"}),t.createElement(n,{d:"M12.012 9.09756V8M12.012 16.2317V17M9.67969 14.4482C10.5159 16.0945 14.0699 16.0047 14.0699 14.1567C14.0699 11.8246 9.88875 12.9453 9.88875 10.561C9.88875 8.9544 12.4614 8.72364 13.6583 9.80164",stroke:"currentColor",strokeLinecap:"round"})),P=s;export{s as IconHeartDonation,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHeartDonation/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 IconHeartDonation: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 5.37552C18.5042 -1.25346 29.6544 11.0575 12 21C-5.65441 11.0576 5.4957 -1.25346 12 5.37552Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.012 9.09756V8M12.012 16.2317V17M9.67969 14.4482C10.5159 16.0945 14.0699 16.0047 14.0699 14.1567C14.0699 11.8246 9.88875 12.9453 9.88875 10.561C9.88875 8.9544 12.4614 8.72364 13.6583 9.80164\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHeartDonation;\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,kGACF,OAAO,eACP,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oMACF,OAAO,eACP,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconHeartDonation","props","React","CentralIconBase","IconHeartDonation_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"]}
|