@central-icons-react-native/round-outlined-radius-1-stroke-2 1.1.146 → 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/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 +2 -0
- package/filtered-icons.json +34 -6
- package/icons/index.d.ts +2 -0
- package/icons-index.json +7 -3
- package/index.d.ts +2 -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 +21 -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)),d=r=>l(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconAppearanceDarkMode:()=>i,default:()=>h});module.exports=d(v);var p=c(require("react"));var s=c(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>s.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(C.Path,{d:"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z",fill:"currentColor"})),h=i;0&&(module.exports={IconAppearanceDarkMode});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceDarkMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconAppearanceDarkMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceDarkMode;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,4BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA6B,4BAEhBC,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,oLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAppearanceDarkMode_exports","__export","IconAppearanceDarkMode","IconAppearanceDarkMode_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAppearanceDarkMode","props","React","CentralIconBase","IconAppearanceDarkMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as a,Path as l}from"react-native-svg";var c=o=>e.createElement(t,{...o},e.createElement(a,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),e.createElement(l,{d:"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z",fill:"currentColor"})),g=c;export{c as IconAppearanceDarkMode,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceDarkMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconAppearanceDarkMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceDarkMode;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEI,EAAA,cAACH,EAAA,CACC,EAAE,oLACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconAppearanceDarkMode","props","React","CentralIconBase","IconAppearanceDarkMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!g.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=x(o,t))||a.enumerable});return r};var c=(r,o,e)=>(e=r!=null?u(I(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>l(n({},"__esModule",{value:!0}),r);var v={};P(v,{IconAppearanceLightMode:()=>i,default:()=>d});module.exports=h(v);var p=c(require("react"));var s=c(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>s.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(C.Path,{d:"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z",fill:"currentColor"})),d=i;0&&(module.exports={IconAppearanceLightMode});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceLightMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconAppearanceLightMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceLightMode;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,6BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA6B,4BAEhBC,EAAqDC,GAE9D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,uLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAppearanceLightMode_exports","__export","IconAppearanceLightMode","IconAppearanceLightMode_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAppearanceLightMode","props","React","CentralIconBase","IconAppearanceLightMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as a,Path as l}from"react-native-svg";var c=o=>e.createElement(t,{...o},e.createElement(a,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),e.createElement(l,{d:"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z",fill:"currentColor"})),P=c;export{c as IconAppearanceLightMode,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceLightMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconAppearanceLightMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceLightMode;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEI,EAAA,cAACH,EAAA,CACC,EAAE,uLACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconAppearanceLightMode","props","React","CentralIconBase","IconAppearanceLightMode_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var a=Object.create;var t=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,u=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var L in o)t(r,L,{get:o[L],enumerable:!0})},Z=(r,o,L,M)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of c(o))!u.call(r,C)&&C!==L&&t(r,C,{get:()=>o[C],enumerable:!(M=m(o,C))||M.enumerable});return r};var p=(r,o,L)=>(L=r!=null?a(f(r)):{},Z(o||!r||!r.__esModule?t(L,"default",{value:r,enumerable:!0}):L,r)),B=r=>Z(t({},"__esModule",{value:!0}),r);var x={};i(x,{IconBubbleQuestion:()=>s,default:()=>I});module.exports=B(x);var e=p(require("react"));var l=p(require("react")),H=require("react-native-svg"),V=({children:r,size:o=24,...L})=>l.default.createElement(H.Svg,{...L,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),s=r=>e.default.createElement(V,{...r},e.default.createElement(n.Path,{d:"M11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM9.29398 18.2694L8.65157 19.0358V19.0358L9.29398 18.2694ZM19.002 18.0358L19.002 19.0358V19.0358L19.002 18.0358ZM19.002 4L19.002 5L19.002 4ZM15.3757 18.0358L15.3757 17.0358V17.0358L15.3757 18.0358ZM14.7377 18.2657L14.0997 17.4957V17.4957L14.7377 18.2657ZM5.00195 4.00002L5.00195 5.00002L5.00195 4.00002ZM11.0329 11.5148C10.9508 12.061 11.3271 12.5702 11.8733 12.6522C12.4194 12.7343 12.9287 12.358 13.0107 11.8119L11.0329 11.5148ZM12.8813 10.3636L13.4434 11.1906L13.4435 11.1906L12.8813 10.3636ZM9.6234 9.17768C9.6234 9.72997 10.0711 10.1777 10.6234 10.1777C11.1757 10.1777 11.6234 9.72997 11.6234 9.17768H9.6234ZM5.00195 5.00002L19.002 5L19.0019 3L5.00195 3.00002L5.00195 5.00002ZM19.002 5V17.0358H21.002V5H19.002ZM5.00195 17.0358V5.00002H3.00195V17.0358H5.00195ZM19.002 17.0358L15.3757 17.0358L15.3757 19.0358L19.002 19.0358L19.002 17.0358ZM14.0997 17.4957L11.3597 19.7657L12.6357 21.3058L15.3757 19.0358L14.0997 17.4957ZM12.6401 19.7694L9.93638 17.503L8.65157 19.0358L11.3553 21.3021L12.6401 19.7694ZM8.65157 17.0358H5.00195V19.0358H8.65157V17.0358ZM9.93638 17.503C9.57629 17.2012 9.12143 17.0358 8.65157 17.0358V19.0358H8.65157L9.93638 17.503ZM3.00195 17.0358C3.00195 18.1403 3.89738 19.0358 5.00195 19.0358V17.0358H5.00195H3.00195ZM19.002 17.0358V17.0358L19.002 19.0358C20.1065 19.0357 21.002 18.1403 21.002 17.0358H19.002ZM19.002 5V5H21.002C21.002 3.89543 20.1065 3 19.0019 3L19.002 5ZM15.3757 17.0358C14.9098 17.0358 14.4585 17.1984 14.0997 17.4957L15.3757 19.0358H15.3757L15.3757 17.0358ZM5.00195 3.00002C3.89738 3.00003 3.00195 3.89546 3.00195 5.00002H5.00195V5.00002L5.00195 3.00002ZM13.0107 11.8119C13.0368 11.6377 13.092 11.5309 13.1499 11.4531C13.2138 11.3672 13.3054 11.2845 13.4434 11.1906L12.3192 9.53651C11.8111 9.88184 11.1912 10.4604 11.0329 11.5148L13.0107 11.8119ZM13.4435 11.1906C13.8798 10.894 14.6234 10.3056 14.6234 9.17768H12.6234C12.6234 9.22488 12.6166 9.25036 12.6124 9.26261C12.6081 9.2753 12.6011 9.29027 12.5859 9.31084C12.5488 9.36136 12.4762 9.42975 12.3191 9.53656L13.4435 11.1906ZM14.6234 9.17768C14.6234 7.79769 13.5134 6.66333 12.1234 6.66333V8.66333C12.3909 8.66333 12.6234 8.88426 12.6234 9.17768H14.6234ZM12.1234 6.66333C10.7334 6.66333 9.6234 7.79769 9.6234 9.17768H11.6234C11.6234 8.88426 11.8559 8.66333 12.1234 8.66333V6.66333Z",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M12 13.625C12.4832 13.625 12.875 14.0168 12.875 14.5C12.875 14.9832 12.4832 15.375 12 15.375C11.5168 15.375 11.125 14.9832 11.125 14.5C11.125 14.0168 11.5168 13.625 12 13.625Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.75"})),I=s;0&&(module.exports={IconBubbleQuestion});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconBubbleQuestion/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBubbleQuestion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM9.29398 18.2694L8.65157 19.0358L9.29398 18.2694ZM19.002 18.0358L19.002 19.0358L19.002 18.0358ZM19.002 4L19.002 5L19.002 4ZM15.3757 18.0358L15.3757 17.0358L15.3757 18.0358ZM14.7377 18.2657L14.0997 17.4957L14.7377 18.2657ZM5.00195 4.00002L5.00195 5.00002L5.00195 4.00002ZM11.0329 11.5148C10.9508 12.061 11.3271 12.5702 11.8733 12.6522C12.4194 12.7343 12.9287 12.358 13.0107 11.8119L11.0329 11.5148ZM12.8813 10.3636L13.4434 11.1906L13.4435 11.1906L12.8813 10.3636ZM9.6234 9.17768C9.6234 9.72997 10.0711 10.1777 10.6234 10.1777C11.1757 10.1777 11.6234 9.72997 11.6234 9.17768H9.6234ZM5.00195 5.00002L19.002 5L19.0019 3L5.00195 3.00002L5.00195 5.00002ZM19.002 5V17.0358H21.002V5H19.002ZM5.00195 17.0358V5.00002H3.00195V17.0358H5.00195ZM19.002 17.0358L15.3757 17.0358L15.3757 19.0358L19.002 19.0358L19.002 17.0358ZM14.0997 17.4957L11.3597 19.7657L12.6357 21.3058L15.3757 19.0358L14.0997 17.4957ZM12.6401 19.7694L9.93638 17.503L8.65157 19.0358L11.3553 21.3021L12.6401 19.7694ZM8.65157 17.0358H5.00195V19.0358H8.65157V17.0358ZM9.93638 17.503C9.57629 17.2012 9.12143 17.0358 8.65157 17.0358V19.0358H8.65157L9.93638 17.503ZM3.00195 17.0358C3.00195 18.1403 3.89738 19.0358 5.00195 19.0358V17.0358H5.00195H3.00195ZM19.002 17.0358V17.0358L19.002 19.0358C20.1065 19.0357 21.002 18.1403 21.002 17.0358H19.002ZM19.002
|
|
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=\"M11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM9.29398 18.2694L8.65157 19.0358V19.0358L9.29398 18.2694ZM19.002 18.0358L19.002 19.0358V19.0358L19.002 18.0358ZM19.002 4L19.002 5L19.002 4ZM15.3757 18.0358L15.3757 17.0358V17.0358L15.3757 18.0358ZM14.7377 18.2657L14.0997 17.4957V17.4957L14.7377 18.2657ZM5.00195 4.00002L5.00195 5.00002L5.00195 4.00002ZM11.0329 11.5148C10.9508 12.061 11.3271 12.5702 11.8733 12.6522C12.4194 12.7343 12.9287 12.358 13.0107 11.8119L11.0329 11.5148ZM12.8813 10.3636L13.4434 11.1906L13.4435 11.1906L12.8813 10.3636ZM9.6234 9.17768C9.6234 9.72997 10.0711 10.1777 10.6234 10.1777C11.1757 10.1777 11.6234 9.72997 11.6234 9.17768H9.6234ZM5.00195 5.00002L19.002 5L19.0019 3L5.00195 3.00002L5.00195 5.00002ZM19.002 5V17.0358H21.002V5H19.002ZM5.00195 17.0358V5.00002H3.00195V17.0358H5.00195ZM19.002 17.0358L15.3757 17.0358L15.3757 19.0358L19.002 19.0358L19.002 17.0358ZM14.0997 17.4957L11.3597 19.7657L12.6357 21.3058L15.3757 19.0358L14.0997 17.4957ZM12.6401 19.7694L9.93638 17.503L8.65157 19.0358L11.3553 21.3021L12.6401 19.7694ZM8.65157 17.0358H5.00195V19.0358H8.65157V17.0358ZM9.93638 17.503C9.57629 17.2012 9.12143 17.0358 8.65157 17.0358V19.0358H8.65157L9.93638 17.503ZM3.00195 17.0358C3.00195 18.1403 3.89738 19.0358 5.00195 19.0358V17.0358H5.00195H3.00195ZM19.002 17.0358V17.0358L19.002 19.0358C20.1065 19.0357 21.002 18.1403 21.002 17.0358H19.002ZM19.002 5V5H21.002C21.002 3.89543 20.1065 3 19.0019 3L19.002 5ZM15.3757 17.0358C14.9098 17.0358 14.4585 17.1984 14.0997 17.4957L15.3757 19.0358H15.3757L15.3757 17.0358ZM5.00195 3.00002C3.89738 3.00003 3.00195 3.89546 3.00195 5.00002H5.00195V5.00002L5.00195 3.00002ZM13.0107 11.8119C13.0368 11.6377 13.092 11.5309 13.1499 11.4531C13.2138 11.3672 13.3054 11.2845 13.4434 11.1906L12.3192 9.53651C11.8111 9.88184 11.1912 10.4604 11.0329 11.5148L13.0107 11.8119ZM13.4435 11.1906C13.8798 10.894 14.6234 10.3056 14.6234 9.17768H12.6234C12.6234 9.22488 12.6166 9.25036 12.6124 9.26261C12.6081 9.2753 12.6011 9.29027 12.5859 9.31084C12.5488 9.36136 12.4762 9.42975 12.3191 9.53656L13.4435 11.1906ZM14.6234 9.17768C14.6234 7.79769 13.5134 6.66333 12.1234 6.66333V8.66333C12.3909 8.66333 12.6234 8.88426 12.6234 9.17768H14.6234ZM12.1234 6.66333C10.7334 6.66333 9.6234 7.79769 9.6234 9.17768H11.6234C11.6234 8.88426 11.8559 8.66333 12.1234 8.66333V6.66333Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 13.625C12.4832 13.625 12.875 14.0168 12.875 14.5C12.875 14.9832 12.4832 15.375 12 15.375C11.5168 15.375 11.125 14.9832 11.125 14.5C11.125 14.0168 11.5168 13.625 12 13.625Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"0.75\"\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,m0EACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kLACF,KAAK,eACL,OAAO,eACP,YAAY,OACd,CACF,EAIGE,EAAQJ","names":["IconBubbleQuestion_exports","__export","IconBubbleQuestion","IconBubbleQuestion_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBubbleQuestion","props","React","CentralIconBase","IconBubbleQuestion_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import L from"react";import n from"react";import{Svg as M}from"react-native-svg";var C=({children:o,size:r=24,...e})=>n.createElement(M,{...e,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 Z=o=>L.createElement(C,{...o},L.createElement(t,{d:"M11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM9.29398 18.2694L8.65157 19.0358L9.29398 18.2694ZM19.002 18.0358L19.002 19.0358L19.002 18.0358ZM19.002 4L19.002 5L19.002 4ZM15.3757 18.0358L15.3757 17.0358L15.3757 18.0358ZM14.7377 18.2657L14.0997 17.4957L14.7377 18.2657ZM5.00195 4.00002L5.00195 5.00002L5.00195 4.00002ZM11.0329 11.5148C10.9508 12.061 11.3271 12.5702 11.8733 12.6522C12.4194 12.7343 12.9287 12.358 13.0107 11.8119L11.0329 11.5148ZM12.8813 10.3636L13.4434 11.1906L13.4435 11.1906L12.8813 10.3636ZM9.6234 9.17768C9.6234 9.72997 10.0711 10.1777 10.6234 10.1777C11.1757 10.1777 11.6234 9.72997 11.6234 9.17768H9.6234ZM5.00195 5.00002L19.002 5L19.0019 3L5.00195 3.00002L5.00195 5.00002ZM19.002 5V17.0358H21.002V5H19.002ZM5.00195 17.0358V5.00002H3.00195V17.0358H5.00195ZM19.002 17.0358L15.3757 17.0358L15.3757 19.0358L19.002 19.0358L19.002 17.0358ZM14.0997 17.4957L11.3597 19.7657L12.6357 21.3058L15.3757 19.0358L14.0997 17.4957ZM12.6401 19.7694L9.93638 17.503L8.65157 19.0358L11.3553 21.3021L12.6401 19.7694ZM8.65157 17.0358H5.00195V19.0358H8.65157V17.0358ZM9.93638 17.503C9.57629 17.2012 9.12143 17.0358 8.65157 17.0358V19.0358H8.65157L9.93638 17.503ZM3.00195 17.0358C3.00195 18.1403 3.89738 19.0358 5.00195 19.0358V17.0358H5.00195H3.00195ZM19.002 17.0358V17.0358L19.002 19.0358C20.1065 19.0357 21.002 18.1403 21.002 17.0358H19.002ZM19.002
|
|
1
|
+
import L from"react";import n from"react";import{Svg as M}from"react-native-svg";var C=({children:o,size:r=24,...e})=>n.createElement(M,{...e,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 Z=o=>L.createElement(C,{...o},L.createElement(t,{d:"M11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM9.29398 18.2694L8.65157 19.0358V19.0358L9.29398 18.2694ZM19.002 18.0358L19.002 19.0358V19.0358L19.002 18.0358ZM19.002 4L19.002 5L19.002 4ZM15.3757 18.0358L15.3757 17.0358V17.0358L15.3757 18.0358ZM14.7377 18.2657L14.0997 17.4957V17.4957L14.7377 18.2657ZM5.00195 4.00002L5.00195 5.00002L5.00195 4.00002ZM11.0329 11.5148C10.9508 12.061 11.3271 12.5702 11.8733 12.6522C12.4194 12.7343 12.9287 12.358 13.0107 11.8119L11.0329 11.5148ZM12.8813 10.3636L13.4434 11.1906L13.4435 11.1906L12.8813 10.3636ZM9.6234 9.17768C9.6234 9.72997 10.0711 10.1777 10.6234 10.1777C11.1757 10.1777 11.6234 9.72997 11.6234 9.17768H9.6234ZM5.00195 5.00002L19.002 5L19.0019 3L5.00195 3.00002L5.00195 5.00002ZM19.002 5V17.0358H21.002V5H19.002ZM5.00195 17.0358V5.00002H3.00195V17.0358H5.00195ZM19.002 17.0358L15.3757 17.0358L15.3757 19.0358L19.002 19.0358L19.002 17.0358ZM14.0997 17.4957L11.3597 19.7657L12.6357 21.3058L15.3757 19.0358L14.0997 17.4957ZM12.6401 19.7694L9.93638 17.503L8.65157 19.0358L11.3553 21.3021L12.6401 19.7694ZM8.65157 17.0358H5.00195V19.0358H8.65157V17.0358ZM9.93638 17.503C9.57629 17.2012 9.12143 17.0358 8.65157 17.0358V19.0358H8.65157L9.93638 17.503ZM3.00195 17.0358C3.00195 18.1403 3.89738 19.0358 5.00195 19.0358V17.0358H5.00195H3.00195ZM19.002 17.0358V17.0358L19.002 19.0358C20.1065 19.0357 21.002 18.1403 21.002 17.0358H19.002ZM19.002 5V5H21.002C21.002 3.89543 20.1065 3 19.0019 3L19.002 5ZM15.3757 17.0358C14.9098 17.0358 14.4585 17.1984 14.0997 17.4957L15.3757 19.0358H15.3757L15.3757 17.0358ZM5.00195 3.00002C3.89738 3.00003 3.00195 3.89546 3.00195 5.00002H5.00195V5.00002L5.00195 3.00002ZM13.0107 11.8119C13.0368 11.6377 13.092 11.5309 13.1499 11.4531C13.2138 11.3672 13.3054 11.2845 13.4434 11.1906L12.3192 9.53651C11.8111 9.88184 11.1912 10.4604 11.0329 11.5148L13.0107 11.8119ZM13.4435 11.1906C13.8798 10.894 14.6234 10.3056 14.6234 9.17768H12.6234C12.6234 9.22488 12.6166 9.25036 12.6124 9.26261C12.6081 9.2753 12.6011 9.29027 12.5859 9.31084C12.5488 9.36136 12.4762 9.42975 12.3191 9.53656L13.4435 11.1906ZM14.6234 9.17768C14.6234 7.79769 13.5134 6.66333 12.1234 6.66333V8.66333C12.3909 8.66333 12.6234 8.88426 12.6234 9.17768H14.6234ZM12.1234 6.66333C10.7334 6.66333 9.6234 7.79769 9.6234 9.17768H11.6234C11.6234 8.88426 11.8559 8.66333 12.1234 8.66333V6.66333Z",fill:"currentColor"}),L.createElement(t,{d:"M12 13.625C12.4832 13.625 12.875 14.0168 12.875 14.5C12.875 14.9832 12.4832 15.375 12 15.375C11.5168 15.375 11.125 14.9832 11.125 14.5C11.125 14.0168 11.5168 13.625 12 13.625Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.75"})),u=Z;export{Z as IconBubbleQuestion,u as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconBubbleQuestion/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBubbleQuestion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM9.29398 18.2694L8.65157 19.0358L9.29398 18.2694ZM19.002 18.0358L19.002 19.0358L19.002 18.0358ZM19.002 4L19.002 5L19.002 4ZM15.3757 18.0358L15.3757 17.0358L15.3757 18.0358ZM14.7377 18.2657L14.0997 17.4957L14.7377 18.2657ZM5.00195 4.00002L5.00195 5.00002L5.00195 4.00002ZM11.0329 11.5148C10.9508 12.061 11.3271 12.5702 11.8733 12.6522C12.4194 12.7343 12.9287 12.358 13.0107 11.8119L11.0329 11.5148ZM12.8813 10.3636L13.4434 11.1906L13.4435 11.1906L12.8813 10.3636ZM9.6234 9.17768C9.6234 9.72997 10.0711 10.1777 10.6234 10.1777C11.1757 10.1777 11.6234 9.72997 11.6234 9.17768H9.6234ZM5.00195 5.00002L19.002 5L19.0019 3L5.00195 3.00002L5.00195 5.00002ZM19.002 5V17.0358H21.002V5H19.002ZM5.00195 17.0358V5.00002H3.00195V17.0358H5.00195ZM19.002 17.0358L15.3757 17.0358L15.3757 19.0358L19.002 19.0358L19.002 17.0358ZM14.0997 17.4957L11.3597 19.7657L12.6357 21.3058L15.3757 19.0358L14.0997 17.4957ZM12.6401 19.7694L9.93638 17.503L8.65157 19.0358L11.3553 21.3021L12.6401 19.7694ZM8.65157 17.0358H5.00195V19.0358H8.65157V17.0358ZM9.93638 17.503C9.57629 17.2012 9.12143 17.0358 8.65157 17.0358V19.0358H8.65157L9.93638 17.503ZM3.00195 17.0358C3.00195 18.1403 3.89738 19.0358 5.00195 19.0358V17.0358H5.00195H3.00195ZM19.002 17.0358V17.0358L19.002 19.0358C20.1065 19.0357 21.002 18.1403 21.002 17.0358H19.002ZM19.002
|
|
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=\"M11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM9.29398 18.2694L8.65157 19.0358V19.0358L9.29398 18.2694ZM19.002 18.0358L19.002 19.0358V19.0358L19.002 18.0358ZM19.002 4L19.002 5L19.002 4ZM15.3757 18.0358L15.3757 17.0358V17.0358L15.3757 18.0358ZM14.7377 18.2657L14.0997 17.4957V17.4957L14.7377 18.2657ZM5.00195 4.00002L5.00195 5.00002L5.00195 4.00002ZM11.0329 11.5148C10.9508 12.061 11.3271 12.5702 11.8733 12.6522C12.4194 12.7343 12.9287 12.358 13.0107 11.8119L11.0329 11.5148ZM12.8813 10.3636L13.4434 11.1906L13.4435 11.1906L12.8813 10.3636ZM9.6234 9.17768C9.6234 9.72997 10.0711 10.1777 10.6234 10.1777C11.1757 10.1777 11.6234 9.72997 11.6234 9.17768H9.6234ZM5.00195 5.00002L19.002 5L19.0019 3L5.00195 3.00002L5.00195 5.00002ZM19.002 5V17.0358H21.002V5H19.002ZM5.00195 17.0358V5.00002H3.00195V17.0358H5.00195ZM19.002 17.0358L15.3757 17.0358L15.3757 19.0358L19.002 19.0358L19.002 17.0358ZM14.0997 17.4957L11.3597 19.7657L12.6357 21.3058L15.3757 19.0358L14.0997 17.4957ZM12.6401 19.7694L9.93638 17.503L8.65157 19.0358L11.3553 21.3021L12.6401 19.7694ZM8.65157 17.0358H5.00195V19.0358H8.65157V17.0358ZM9.93638 17.503C9.57629 17.2012 9.12143 17.0358 8.65157 17.0358V19.0358H8.65157L9.93638 17.503ZM3.00195 17.0358C3.00195 18.1403 3.89738 19.0358 5.00195 19.0358V17.0358H5.00195H3.00195ZM19.002 17.0358V17.0358L19.002 19.0358C20.1065 19.0357 21.002 18.1403 21.002 17.0358H19.002ZM19.002 5V5H21.002C21.002 3.89543 20.1065 3 19.0019 3L19.002 5ZM15.3757 17.0358C14.9098 17.0358 14.4585 17.1984 14.0997 17.4957L15.3757 19.0358H15.3757L15.3757 17.0358ZM5.00195 3.00002C3.89738 3.00003 3.00195 3.89546 3.00195 5.00002H5.00195V5.00002L5.00195 3.00002ZM13.0107 11.8119C13.0368 11.6377 13.092 11.5309 13.1499 11.4531C13.2138 11.3672 13.3054 11.2845 13.4434 11.1906L12.3192 9.53651C11.8111 9.88184 11.1912 10.4604 11.0329 11.5148L13.0107 11.8119ZM13.4435 11.1906C13.8798 10.894 14.6234 10.3056 14.6234 9.17768H12.6234C12.6234 9.22488 12.6166 9.25036 12.6124 9.26261C12.6081 9.2753 12.6011 9.29027 12.5859 9.31084C12.5488 9.36136 12.4762 9.42975 12.3191 9.53656L13.4435 11.1906ZM14.6234 9.17768C14.6234 7.79769 13.5134 6.66333 12.1234 6.66333V8.66333C12.3909 8.66333 12.6234 8.88426 12.6234 9.17768H14.6234ZM12.1234 6.66333C10.7334 6.66333 9.6234 7.79769 9.6234 9.17768H11.6234C11.6234 8.88426 11.8559 8.66333 12.1234 8.66333V6.66333Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12 13.625C12.4832 13.625 12.875 14.0168 12.875 14.5C12.875 14.9832 12.4832 15.375 12 15.375C11.5168 15.375 11.125 14.9832 11.125 14.5C11.125 14.0168 11.5168 13.625 12 13.625Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"0.75\"\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,m0EACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kLACF,KAAK,eACL,OAAO,eACP,YAAY,OACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBubbleQuestion","props","React","CentralIconBase","IconBubbleQuestion_default"]}
|
package/IconEmail1/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var s=Object.create;var t=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var c=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var u=(L,C)=>{for(var r in C)t(L,r,{get:C[r],enumerable:!0})},Z=(L,C,r,M)=>{if(C&&typeof C=="object"||typeof C=="function")for(let o of i(C))!f.call(L,o)&&o!==r&&t(L,o,{get:()=>C[o],enumerable:!(M=m(C,o))||M.enumerable});return L};var V=(L,C,r)=>(r=L!=null?s(c(L)):{},Z(C||!L||!L.__esModule?t(r,"default",{value:L,enumerable:!0}):r,L)),B=L=>Z(t({},"__esModule",{value:!0}),L);var x={};u(x,{IconEmail1:()=>l,default:()=>I});module.exports=B(x);var e=V(require("react"));var p=V(require("react")),H=require("react-native-svg"),a=({children:L,size:C=24,...r})=>p.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 n=require("react-native-svg"),l=L=>e.default.createElement(a,{...L},e.default.createElement(n.Path,{d:"M20.891 5.54601L20 6L20 6L20.891 5.54601ZM20.454 5.10899L20.908 4.21799L20.908 4.21799L20.454 5.10899ZM3.54601 5.10899L3.09202 4.21799L3.09202 4.21799L3.54601 5.10899ZM3.10899 5.54601L2.21799 5.09202L2.21799 5.09202L3.10899 5.54601ZM3.10899 18.454L2.21799 18.908L2.21799 18.908L3.10899 18.454ZM3.54601 18.891L4 18L4 18L3.54601 18.891ZM20.454 18.891L20.908 19.782V19.782L20.454 18.891ZM20.891 18.454L20 18V18L20.891 18.454ZM21 6.6H20V17.4H21H22V6.6H21ZM21 6.6H22C22 6.33647 22.0008 6.07869 21.9831 5.86177C21.9644 5.63318 21.9203 5.36344 21.782 5.09202L20.891 5.54601L20 6C19.9707 5.94249 19.9811 5.91972 19.9897 6.02463C19.9992 6.14122 20 6.30347 20 6.6H21ZM20.891 5.54601L21.782 5.09202C21.5903 4.71569 21.2843 4.40973 20.908 4.21799L20.454 5.10899L20 6L20 6L20.891 5.54601ZM19.4 5V6C19.6965 6 19.8588 6.00078 19.9754 6.0103C20.0803 6.01887 20.0575 6.0293 20 6L20.454 5.10899L20.908 4.21799C20.6366 4.07969 20.3668 4.03562 20.1382 4.01695C19.9213 3.99922 19.6635 4 19.4 4V5ZM4.6 5V6H19.4V5V4H4.6V5ZM4.6 5V4C4.33647 4 4.07869 3.99922 3.86177 4.01695C3.63318 4.03562 3.36344 4.07969 3.09202 4.21799L3.54601 5.10899L4 6C3.94249 6.0293 3.91972 6.01887 4.02463 6.0103C4.14122 6.00078 4.30347 6 4.6 6V5ZM3.10899 5.54601L4 6V6L3.54601 5.10899L3.09202 4.21799C2.71569 4.40973 2.40973 4.71569 2.21799 5.09202L3.10899 5.54601ZM3 6.6H4C4 6.30347 4.00078 6.14122 4.0103 6.02463C4.01887 5.91972 4.0293 5.94249 4 6L3.10899 5.54601L2.21799 5.09202C2.07969 5.36344 2.03562 5.63318 2.01695 5.86177C1.99922 6.07869 2 6.33647 2 6.6H3ZM3 17.4H4V6.6H3H2V17.4H3ZM3 17.4H2C2 17.6635 1.99922 17.9213 2.01695 18.1382C2.03562 18.3668 2.07969 18.6366 2.21799 18.908L3.10899 18.454L4 18C4.0293 18.0575 4.01887 18.0803 4.0103 17.9754C4.00078 17.8588 4 17.6965 4 17.4H3ZM3.54601 18.891L4 18L4 18L3.10899 18.454L2.21799 18.908C2.40973 19.2843 2.71569 19.5903 3.09202 19.782L3.54601 18.891ZM4.6 19V18C4.30347 18 4.14122 17.9992 4.02463 17.9897C3.91972 17.9811 3.94249 17.9707 4 18L3.54601 18.891L3.09202 19.782C3.36344 19.9203 3.63318 19.9644 3.86177 19.9831C4.07869 20.0008 4.33647 20 4.6 20V19ZM19.4 19V18H4.6V19V20H19.4V19ZM19.4 19V20C19.6635 20 19.9213 20.0008 20.1382 19.9831C20.3668 19.9644 20.6366 19.9203 20.908 19.782L20.454 18.891L20 18C20.0575 17.9707 20.0803 17.9811 19.9754 17.9897C19.8588 17.9992 19.6965 18 19.4 18V19ZM20.891 18.454L20 18L20 18L20.454 18.891L20.908 19.782C21.2843 19.5903 21.5903 19.2843 21.782 18.908L20.891 18.454ZM21 17.4H20C20 17.6965 19.9992 17.8588 19.9897 17.9754C19.9811 18.0803 19.9707 18.0575 20 18L20.891 18.454L21.782 18.908C21.9203 18.6366 21.9644 18.3668 21.9831 18.1382C22.0008 17.9213 22 17.6635 22 17.4H21Z",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M21 5.63635L12.6332 12.4819C12.2649 12.7833 11.7351 12.7833 11.3668 12.4819L3 5.63635",stroke:"currentColor",strokeWidth:"2",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=\"M20.891 5.54601L20 6L20 6L20.891 5.54601ZM20.454 5.10899L20.908 4.21799L20.908 4.21799L20.454 5.10899ZM3.54601 5.10899L3.09202 4.21799L3.09202 4.21799L3.54601 5.10899ZM3.10899 5.54601L2.21799 5.09202L2.21799 5.09202L3.10899 5.54601ZM3.10899 18.454L2.21799 18.908L2.21799 18.908L3.10899 18.454ZM3.54601 18.891L4 18L4 18L3.54601 18.891ZM20.454 18.891L20.908 19.782V19.782L20.454 18.891ZM20.891 18.454L20 18V18L20.891 18.454ZM21 6.6H20V17.4H21H22V6.6H21ZM21 6.6H22C22 6.33647 22.0008 6.07869 21.9831 5.86177C21.9644 5.63318 21.9203 5.36344 21.782 5.09202L20.891 5.54601L20 6C19.9707 5.94249 19.9811 5.91972 19.9897 6.02463C19.9992 6.14122 20 6.30347 20 6.6H21ZM20.891 5.54601L21.782 5.09202C21.5903 4.71569 21.2843 4.40973 20.908 4.21799L20.454 5.10899L20 6L20 6L20.891 5.54601ZM19.4 5V6C19.6965 6 19.8588 6.00078 19.9754 6.0103C20.0803 6.01887 20.0575 6.0293 20 6L20.454 5.10899L20.908 4.21799C20.6366 4.07969 20.3668 4.03562 20.1382 4.01695C19.9213 3.99922 19.6635 4 19.4 4V5ZM4.6 5V6H19.4V5V4H4.6V5ZM4.6 5V4C4.33647 4 4.07869 3.99922 3.86177 4.01695C3.63318 4.03562 3.36344 4.07969 3.09202 4.21799L3.54601 5.10899L4 6C3.94249 6.0293 3.91972 6.01887 4.02463 6.0103C4.14122 6.00078 4.30347 6 4.6 6V5ZM3.10899 5.54601L4 6V6L3.54601 5.10899L3.09202 4.21799C2.71569 4.40973 2.40973 4.71569 2.21799 5.09202L3.10899 5.54601ZM3 6.6H4C4 6.30347 4.00078 6.14122 4.0103 6.02463C4.01887 5.91972 4.0293 5.94249 4 6L3.10899 5.54601L2.21799 5.09202C2.07969 5.36344 2.03562 5.63318 2.01695 5.86177C1.99922 6.07869 2 6.33647 2 6.6H3ZM3 17.4H4V6.6H3H2V17.4H3ZM3 17.4H2C2 17.6635 1.99922 17.9213 2.01695 18.1382C2.03562 18.3668 2.07969 18.6366 2.21799 18.908L3.10899 18.454L4 18C4.0293 18.0575 4.01887 18.0803 4.0103 17.9754C4.00078 17.8588 4 17.6965 4 17.4H3ZM3.54601 18.891L4 18L4 18L3.10899 18.454L2.21799 18.908C2.40973 19.2843 2.71569 19.5903 3.09202 19.782L3.54601 18.891ZM4.6 19V18C4.30347 18 4.14122 17.9992 4.02463 17.9897C3.91972 17.9811 3.94249 17.9707 4 18L3.54601 18.891L3.09202 19.782C3.36344 19.9203 3.63318 19.9644 3.86177 19.9831C4.07869 20.0008 4.33647 20 4.6 20V19ZM19.4 19V18H4.6V19V20H19.4V19ZM19.4 19V20C19.6635 20 19.9213 20.0008 20.1382 19.9831C20.3668 19.9644 20.6366 19.9203 20.908 19.782L20.454 18.891L20 18C20.0575 17.9707 20.0803 17.9811 19.9754 17.9897C19.8588 17.9992 19.6965 18 19.4 18V19ZM20.891 18.454L20 18L20 18L20.454 18.891L20.908 19.782C21.2843 19.5903 21.5903 19.2843 21.782 18.908L20.891 18.454ZM21 17.4H20C20 17.6965 19.9992 17.8588 19.9897 17.9754C19.9811 18.0803 19.9707 18.0575 20 18L20.891 18.454L21.782 18.908C21.9203 18.6366 21.9644 18.3668 21.9831 18.1382C22.0008 17.9213 22 17.6635 22 17.4H21Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 5.63635L12.6332 12.4819C12.2649 12.7833 11.7351 12.7833 11.3668 12.4819L3 5.63635\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,mkFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wFACF,OAAO,eACP,YAAY,IACZ,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 n from"react";import{Svg as M}from"react-native-svg";var o=({children:C,size:L=24,...e})=>n.createElement(M,{...e,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 t}from"react-native-svg";var Z=C=>r.createElement(o,{...C},r.createElement(t,{d:"M20.891 5.54601L20 6L20 6L20.891 5.54601ZM20.454 5.10899L20.908 4.21799L20.908 4.21799L20.454 5.10899ZM3.54601 5.10899L3.09202 4.21799L3.09202 4.21799L3.54601 5.10899ZM3.10899 5.54601L2.21799 5.09202L2.21799 5.09202L3.10899 5.54601ZM3.10899 18.454L2.21799 18.908L2.21799 18.908L3.10899 18.454ZM3.54601 18.891L4 18L4 18L3.54601 18.891ZM20.454 18.891L20.908 19.782V19.782L20.454 18.891ZM20.891 18.454L20 18V18L20.891 18.454ZM21 6.6H20V17.4H21H22V6.6H21ZM21 6.6H22C22 6.33647 22.0008 6.07869 21.9831 5.86177C21.9644 5.63318 21.9203 5.36344 21.782 5.09202L20.891 5.54601L20 6C19.9707 5.94249 19.9811 5.91972 19.9897 6.02463C19.9992 6.14122 20 6.30347 20 6.6H21ZM20.891 5.54601L21.782 5.09202C21.5903 4.71569 21.2843 4.40973 20.908 4.21799L20.454 5.10899L20 6L20 6L20.891 5.54601ZM19.4 5V6C19.6965 6 19.8588 6.00078 19.9754 6.0103C20.0803 6.01887 20.0575 6.0293 20 6L20.454 5.10899L20.908 4.21799C20.6366 4.07969 20.3668 4.03562 20.1382 4.01695C19.9213 3.99922 19.6635 4 19.4 4V5ZM4.6 5V6H19.4V5V4H4.6V5ZM4.6 5V4C4.33647 4 4.07869 3.99922 3.86177 4.01695C3.63318 4.03562 3.36344 4.07969 3.09202 4.21799L3.54601 5.10899L4 6C3.94249 6.0293 3.91972 6.01887 4.02463 6.0103C4.14122 6.00078 4.30347 6 4.6 6V5ZM3.10899 5.54601L4 6V6L3.54601 5.10899L3.09202 4.21799C2.71569 4.40973 2.40973 4.71569 2.21799 5.09202L3.10899 5.54601ZM3 6.6H4C4 6.30347 4.00078 6.14122 4.0103 6.02463C4.01887 5.91972 4.0293 5.94249 4 6L3.10899 5.54601L2.21799 5.09202C2.07969 5.36344 2.03562 5.63318 2.01695 5.86177C1.99922 6.07869 2 6.33647 2 6.6H3ZM3 17.4H4V6.6H3H2V17.4H3ZM3 17.4H2C2 17.6635 1.99922 17.9213 2.01695 18.1382C2.03562 18.3668 2.07969 18.6366 2.21799 18.908L3.10899 18.454L4 18C4.0293 18.0575 4.01887 18.0803 4.0103 17.9754C4.00078 17.8588 4 17.6965 4 17.4H3ZM3.54601 18.891L4 18L4 18L3.10899 18.454L2.21799 18.908C2.40973 19.2843 2.71569 19.5903 3.09202 19.782L3.54601 18.891ZM4.6 19V18C4.30347 18 4.14122 17.9992 4.02463 17.9897C3.91972 17.9811 3.94249 17.9707 4 18L3.54601 18.891L3.09202 19.782C3.36344 19.9203 3.63318 19.9644 3.86177 19.9831C4.07869 20.0008 4.33647 20 4.6 20V19ZM19.4 19V18H4.6V19V20H19.4V19ZM19.4 19V20C19.6635 20 19.9213 20.0008 20.1382 19.9831C20.3668 19.9644 20.6366 19.9203 20.908 19.782L20.454 18.891L20 18C20.0575 17.9707 20.0803 17.9811 19.9754 17.9897C19.8588 17.9992 19.6965 18 19.4 18V19ZM20.891 18.454L20 18L20 18L20.454 18.891L20.908 19.782C21.2843 19.5903 21.5903 19.2843 21.782 18.908L20.891 18.454ZM21 17.4H20C20 17.6965 19.9992 17.8588 19.9897 17.9754C19.9811 18.0803 19.9707 18.0575 20 18L20.891 18.454L21.782 18.908C21.9203 18.6366 21.9644 18.3668 21.9831 18.1382C22.0008 17.9213 22 17.6635 22 17.4H21Z",fill:"currentColor"}),r.createElement(t,{d:"M21 5.63635L12.6332 12.4819C12.2649 12.7833 11.7351 12.7833 11.3668 12.4819L3 5.63635",stroke:"currentColor",strokeWidth:"2",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=\"M20.891 5.54601L20 6L20 6L20.891 5.54601ZM20.454 5.10899L20.908 4.21799L20.908 4.21799L20.454 5.10899ZM3.54601 5.10899L3.09202 4.21799L3.09202 4.21799L3.54601 5.10899ZM3.10899 5.54601L2.21799 5.09202L2.21799 5.09202L3.10899 5.54601ZM3.10899 18.454L2.21799 18.908L2.21799 18.908L3.10899 18.454ZM3.54601 18.891L4 18L4 18L3.54601 18.891ZM20.454 18.891L20.908 19.782V19.782L20.454 18.891ZM20.891 18.454L20 18V18L20.891 18.454ZM21 6.6H20V17.4H21H22V6.6H21ZM21 6.6H22C22 6.33647 22.0008 6.07869 21.9831 5.86177C21.9644 5.63318 21.9203 5.36344 21.782 5.09202L20.891 5.54601L20 6C19.9707 5.94249 19.9811 5.91972 19.9897 6.02463C19.9992 6.14122 20 6.30347 20 6.6H21ZM20.891 5.54601L21.782 5.09202C21.5903 4.71569 21.2843 4.40973 20.908 4.21799L20.454 5.10899L20 6L20 6L20.891 5.54601ZM19.4 5V6C19.6965 6 19.8588 6.00078 19.9754 6.0103C20.0803 6.01887 20.0575 6.0293 20 6L20.454 5.10899L20.908 4.21799C20.6366 4.07969 20.3668 4.03562 20.1382 4.01695C19.9213 3.99922 19.6635 4 19.4 4V5ZM4.6 5V6H19.4V5V4H4.6V5ZM4.6 5V4C4.33647 4 4.07869 3.99922 3.86177 4.01695C3.63318 4.03562 3.36344 4.07969 3.09202 4.21799L3.54601 5.10899L4 6C3.94249 6.0293 3.91972 6.01887 4.02463 6.0103C4.14122 6.00078 4.30347 6 4.6 6V5ZM3.10899 5.54601L4 6V6L3.54601 5.10899L3.09202 4.21799C2.71569 4.40973 2.40973 4.71569 2.21799 5.09202L3.10899 5.54601ZM3 6.6H4C4 6.30347 4.00078 6.14122 4.0103 6.02463C4.01887 5.91972 4.0293 5.94249 4 6L3.10899 5.54601L2.21799 5.09202C2.07969 5.36344 2.03562 5.63318 2.01695 5.86177C1.99922 6.07869 2 6.33647 2 6.6H3ZM3 17.4H4V6.6H3H2V17.4H3ZM3 17.4H2C2 17.6635 1.99922 17.9213 2.01695 18.1382C2.03562 18.3668 2.07969 18.6366 2.21799 18.908L3.10899 18.454L4 18C4.0293 18.0575 4.01887 18.0803 4.0103 17.9754C4.00078 17.8588 4 17.6965 4 17.4H3ZM3.54601 18.891L4 18L4 18L3.10899 18.454L2.21799 18.908C2.40973 19.2843 2.71569 19.5903 3.09202 19.782L3.54601 18.891ZM4.6 19V18C4.30347 18 4.14122 17.9992 4.02463 17.9897C3.91972 17.9811 3.94249 17.9707 4 18L3.54601 18.891L3.09202 19.782C3.36344 19.9203 3.63318 19.9644 3.86177 19.9831C4.07869 20.0008 4.33647 20 4.6 20V19ZM19.4 19V18H4.6V19V20H19.4V19ZM19.4 19V20C19.6635 20 19.9213 20.0008 20.1382 19.9831C20.3668 19.9644 20.6366 19.9203 20.908 19.782L20.454 18.891L20 18C20.0575 17.9707 20.0803 17.9811 19.9754 17.9897C19.8588 17.9992 19.6965 18 19.4 18V19ZM20.891 18.454L20 18L20 18L20.454 18.891L20.908 19.782C21.2843 19.5903 21.5903 19.2843 21.782 18.908L20.891 18.454ZM21 17.4H20C20 17.6965 19.9992 17.8588 19.9897 17.9754C19.9811 18.0803 19.9707 18.0575 20 18L20.891 18.454L21.782 18.908C21.9203 18.6366 21.9644 18.3668 21.9831 18.1382C22.0008 17.9213 22 17.6635 22 17.4H21Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 5.63635L12.6332 12.4819C12.2649 12.7833 11.7351 12.7833 11.3668 12.4819L3 5.63635\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,mkFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wFACF,OAAO,eACP,YAAY,IACZ,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 c=Object.create;var n=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var M=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,V)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!B.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(V=f(o,e))||V.enumerable});return r};var a=(r,o,t)=>(t=r!=null?c(M(r)):{},C(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),Z=r=>C(n({},"__esModule",{value:!0}),r);var P={};I(P,{IconEmail2:()=>i,default:()=>x});module.exports=Z(P);var H=a(require("react"));var l=a(require("react")),s=require("react-native-svg"),m=({children:r,size:o=24,...t})=>l.default.createElement(s.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>H.default.createElement(m,{...r},H.default.createElement(p.Path,{d:"M21 6H20V18H21H22V6H21ZM4 5V6H20V5V4H4V5ZM3 18H4V6H3H2V18H3ZM20 19V18H4V19V20H20V19ZM3 18H2C2 19.1046 2.89543 20 4 20V19V18H4H3ZM4 5V4C2.89543 4 2 4.89543 2 6H3H4L4 6V5ZM21 18H20V18V19V20C21.1046 20 22 19.1046 22 18H21ZM21 6H22C22 4.89543 21.1046 4 20 4V5V6H20H21Z",fill:"currentColor"}),H.default.createElement(p.Path,{d:"M21 8.5L12.4472 12.7764C12.1657 12.9172 11.8343 12.9172 11.5528 12.7764L3 8.5",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),x=i;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=\"
|
|
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 6H20V18H21H22V6H21ZM4 5V6H20V5V4H4V5ZM3 18H4V6H3H2V18H3ZM20 19V18H4V19V20H20V19ZM3 18H2C2 19.1046 2.89543 20 4 20V19V18H4H3ZM4 5V4C2.89543 4 2 4.89543 2 6H3H4L4 6V5ZM21 18H20V18V19V20C21.1046 20 22 19.1046 22 18H21ZM21 6H22C22 4.89543 21.1046 4 20 4V5V6H20H21Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 8.5L12.4472 12.7764C12.1657 12.9172 11.8343 12.9172 11.5528 12.7764L3 8.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,2QACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gFACF,OAAO,eACP,YAAY,IACZ,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
|
|
1
|
+
import t from"react";import p from"react";import{Svg as V}from"react-native-svg";var e=({children:o,size:r=24,...H})=>p.createElement(V,{...H,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var C=o=>t.createElement(e,{...o},t.createElement(n,{d:"M21 6H20V18H21H22V6H21ZM4 5V6H20V5V4H4V5ZM3 18H4V6H3H2V18H3ZM20 19V18H4V19V20H20V19ZM3 18H2C2 19.1046 2.89543 20 4 20V19V18H4H3ZM4 5V4C2.89543 4 2 4.89543 2 6H3H4L4 6V5ZM21 18H20V18V19V20C21.1046 20 22 19.1046 22 18H21ZM21 6H22C22 4.89543 21.1046 4 20 4V5V6H20H21Z",fill:"currentColor"}),t.createElement(n,{d:"M21 8.5L12.4472 12.7764C12.1657 12.9172 11.8343 12.9172 11.5528 12.7764L3 8.5",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),B=C;export{C 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=\"
|
|
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 6H20V18H21H22V6H21ZM4 5V6H20V5V4H4V5ZM3 18H4V6H3H2V18H3ZM20 19V18H4V19V20H20V19ZM3 18H2C2 19.1046 2.89543 20 4 20V19V18H4H3ZM4 5V4C2.89543 4 2 4.89543 2 6H3H4L4 6V5ZM21 18H20V18V19V20C21.1046 20 22 19.1046 22 18H21ZM21 6H22C22 4.89543 21.1046 4 20 4V5V6H20H21Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 8.5L12.4472 12.7764C12.1657 12.9172 11.8343 12.9172 11.5528 12.7764L3 8.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,2QACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gFACF,OAAO,eACP,YAAY,IACZ,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 d=Object.create;var n=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of k(o))!I.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(C=f(o,t))||C.enumerable});return r};var i=(r,o,e)=>(e=r!=null?d(B(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(n({},"__esModule",{value:!0}),r);var h={};x(h,{IconEmail3:()=>u,default:()=>g});module.exports=P(h);var p=i(require("react"));var m=i(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.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 s=require("react-native-svg"),u=r=>p.default.createElement(c,{...r},p.default.createElement(s.Path,{d:"M20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(s.Path,{d:"M21.001 9C18.4937 10.8837 15.377 12 11.9995 12C8.62204 12 5.50528 10.8837 2.99805 9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),g=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=\"M20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.001 9C18.4937 10.8837 15.377 12 11.9995 12C8.62204 12 5.50528 10.8837 2.99805 9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,2HACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sFACF,OAAO,eACP,YAAY,IACZ,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 e from"react";import
|
|
1
|
+
import e from"react";import s from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(n,{d:"M20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(n,{d:"M21.001 9C18.4937 10.8837 15.377 12 11.9995 12C8.62204 12 5.50528 10.8837 2.99805 9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;export{a as IconEmail3,I 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=\"M20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.001 9C18.4937 10.8837 15.377 12 11.9995 12C8.62204 12 5.50528 10.8837 2.99805 9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,2HACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sFACF,OAAO,eACP,YAAY,IACZ,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 p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(o,r)=>{for(var t in r)p(o,t,{get:r[t],enumerable:!0})},i=(o,r,t,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of f(r))!I.call(o,e)&&e!==t&&p(o,e,{get:()=>r[e],enumerable:!(C=k(r,e))||C.enumerable});return o};var a=(o,r,t)=>(t=o!=null?m(B(o)):{},i(r||!o||!o.__esModule?p(t,"default",{value:o,enumerable:!0}):t,o)),x=o=>i(p({},"__esModule",{value:!0}),o);var g={};h(g,{IconEmailNotification:()=>l,default:()=>P});module.exports=x(g);var n=a(require("react"));var u=a(require("react")),c=require("react-native-svg"),d=({children:o,size:r=24,...t})=>u.default.createElement(c.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var s=require("react-native-svg"),l=o=>n.default.createElement(d,{...o},n.default.createElement(s.Path,{d:"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M13 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M2.99805 9C5.50528 10.8837 8.62204 12 11.9995 12C13.3849 12 14.7264 11.8122 16 11.4606",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),P=l;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=\"M13 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21
|
|
1
|
+
{"version":3,"sources":["../src/IconEmailNotification/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.99805 9C5.50528 10.8837 8.62204 12 11.9995 12C13.3849 12 14.7264 11.8122 16 11.4606\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmailNotification;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,2BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iHACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iGACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yFACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconEmailNotification_exports","__export","IconEmailNotification","IconEmailNotification_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconEmailNotification","props","React","CentralIconBase","IconEmailNotification_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import r from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:o=24,...p})=>s.createElement(C,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var i=t=>r.createElement(n,{...t},r.createElement(e,{d:"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M13 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M2.99805 9C5.50528 10.8837 8.62204 12 11.9995 12C13.3849 12 14.7264 11.8122 16 11.4606",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=i;export{i as IconEmailNotification,I 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=\"M13 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21
|
|
1
|
+
{"version":3,"sources":["../src/IconEmailNotification/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.99805 9C5.50528 10.8837 8.62204 12 11.9995 12C13.3849 12 14.7264 11.8122 16 11.4606\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmailNotification;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iHACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iGACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yFACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmailNotification","props","React","CentralIconBase","IconEmailNotification_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of i(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(C=I(o,e))||C.enumerable});return r};var L=(r,o,t)=>(t=r!=null?B(u(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var S={};P(S,{IconStackOverflow:()=>f,default:()=>v});module.exports=g(S);var p=L(require("react"));var l=L(require("react")),m=require("react-native-svg"),s=({children:r,size:o=24,...t})=>l.default.createElement(m.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var c=require("react-native-svg"),f=r=>p.default.createElement(s,{...r},p.default.createElement(c.Path,{d:"M21.0056 10.0319C20.0787 10.7255 19.262 11.5292 18.5556 12.4431L18.5847 12.4528V12.4625L18.5556 12.4431C17.8635 13.3368 17.2854 14.3133 16.8347 15.35L16.8153 15.3986C16.3719 16.4296 16.0679 17.5151 15.9111 18.6264V18.6458C15.8269 19.2421 15.7847 19.8514 15.7847 20.4736C15.7847 21.0083 15.8528 21.4847 15.9111 22H3V18.6264H14.1806L14.2486 18.2083L3.48611 15.35L4.39028 12.0444L15.2889 14.9417L15.4444 14.6111L5.64444 9.03056L7.375 6.05556L17.3111 11.7236L17.5542 11.4417L9.41667 3.42083L11.8667 1L21.0056 10.0319Z",fill:"currentColor"})),v=f;0&&(module.exports={IconStackOverflow});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|