@central-icons-react-native/round-outlined-radius-0-stroke-2 1.1.146 → 1.1.148
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconAppearanceDarkMode/index.d.ts +4 -0
- package/IconAppearanceDarkMode/index.js +2 -0
- package/IconAppearanceDarkMode/index.js.map +1 -0
- package/IconAppearanceDarkMode/index.mjs +2 -0
- package/IconAppearanceDarkMode/index.mjs.map +1 -0
- package/IconAppearanceLightMode/index.d.ts +4 -0
- package/IconAppearanceLightMode/index.js +2 -0
- package/IconAppearanceLightMode/index.js.map +1 -0
- package/IconAppearanceLightMode/index.mjs +2 -0
- package/IconAppearanceLightMode/index.mjs.map +1 -0
- package/IconBananas/index.d.ts +4 -0
- package/IconBananas/index.js +2 -0
- package/IconBananas/index.js.map +1 -0
- package/IconBananas/index.mjs +2 -0
- package/IconBananas/index.mjs.map +1 -0
- package/IconBubbleQuestion/index.js +1 -1
- package/IconBubbleQuestion/index.js.map +1 -1
- package/IconBubbleQuestion/index.mjs +1 -1
- package/IconBubbleQuestion/index.mjs.map +1 -1
- package/IconEmail1/index.js +1 -1
- package/IconEmail1/index.js.map +1 -1
- package/IconEmail1/index.mjs +1 -1
- package/IconEmail1/index.mjs.map +1 -1
- package/IconEmail2/index.js +1 -1
- package/IconEmail2/index.js.map +1 -1
- package/IconEmail2/index.mjs +1 -1
- package/IconEmail2/index.mjs.map +1 -1
- package/IconEmail3/index.js +1 -1
- package/IconEmail3/index.js.map +1 -1
- package/IconEmail3/index.mjs +1 -1
- package/IconEmail3/index.mjs.map +1 -1
- package/IconEmailNotification/index.js +1 -1
- package/IconEmailNotification/index.js.map +1 -1
- package/IconEmailNotification/index.mjs +1 -1
- package/IconEmailNotification/index.mjs.map +1 -1
- package/IconStackOverflow/index.js +1 -1
- package/IconStackOverflow/index.js.map +1 -1
- package/IconStackOverflow/index.mjs +1 -1
- package/IconStackOverflow/index.mjs.map +1 -1
- package/README.md +3 -0
- package/filtered-icons.json +48 -6
- package/icons/index.d.ts +3 -0
- package/icons-index.json +10 -4
- package/index.d.ts +3 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +28 -7
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=x(o,t))||a.enumerable});return r};var c=(r,o,e)=>(e=r!=null?u(I(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>l(n({},"__esModule",{value:!0}),r);var v={};g(v,{IconAppearanceDarkMode:()=>i,default:()=>h});module.exports=d(v);var p=c(require("react"));var s=c(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>s.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(C.Path,{d:"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z",fill:"currentColor"})),h=i;0&&(module.exports={IconAppearanceDarkMode});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceDarkMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconAppearanceDarkMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceDarkMode;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,4BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA6B,4BAEhBC,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,oLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAppearanceDarkMode_exports","__export","IconAppearanceDarkMode","IconAppearanceDarkMode_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAppearanceDarkMode","props","React","CentralIconBase","IconAppearanceDarkMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as a,Path as l}from"react-native-svg";var c=o=>e.createElement(t,{...o},e.createElement(a,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),e.createElement(l,{d:"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z",fill:"currentColor"})),g=c;export{c as IconAppearanceDarkMode,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceDarkMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconAppearanceDarkMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3V8ZM12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceDarkMode;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEI,EAAA,cAACH,EAAA,CACC,EAAE,oLACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconAppearanceDarkMode","props","React","CentralIconBase","IconAppearanceDarkMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!g.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=x(o,t))||a.enumerable});return r};var c=(r,o,e)=>(e=r!=null?u(I(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>l(n({},"__esModule",{value:!0}),r);var v={};P(v,{IconAppearanceLightMode:()=>i,default:()=>d});module.exports=h(v);var p=c(require("react"));var s=c(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>s.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(C.Path,{d:"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z",fill:"currentColor"})),d=i;0&&(module.exports={IconAppearanceLightMode});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceLightMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconAppearanceLightMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceLightMode;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,6BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA6B,4BAEhBC,EAAqDC,GAE9D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,uLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAppearanceLightMode_exports","__export","IconAppearanceLightMode","IconAppearanceLightMode_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAppearanceLightMode","props","React","CentralIconBase","IconAppearanceLightMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as a,Path as l}from"react-native-svg";var c=o=>e.createElement(t,{...o},e.createElement(a,{cx:"12",cy:"12",r:"9",stroke:"currentColor",strokeWidth:"2"}),e.createElement(l,{d:"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z",fill:"currentColor"})),P=c;export{c as IconAppearanceLightMode,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAppearanceLightMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconAppearanceLightMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16V21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3V8ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16V8Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppearanceLightMode;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,IAAI,EACpEI,EAAA,cAACH,EAAA,CACC,EAAE,uLACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconAppearanceLightMode","props","React","CentralIconBase","IconAppearanceLightMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var t=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!I.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(a=f(o,n))||a.enumerable});return r};var i=(r,o,e)=>(e=r!=null?d(k(r)):{},C(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>C(t({},"__esModule",{value:!0}),r);var g={};L(g,{IconBananas:()=>u,default:()=>P});module.exports=x(g);var p=i(require("react"));var m=i(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),u=r=>p.default.createElement(l,{...r},p.default.createElement(s.Path,{d:"M17.5 14.25C19 12.75 19.3375 10.9659 19.5 10.25L18.5 9.5C14.8876 11.2225 10.25 12.0991 6.75 8.5",stroke:"currentColor",strokeWidth:"1.90004",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(s.Path,{d:"M6.50088 4L3.50088 4.49851V7.99328C0.870065 11.6255 3.79644 18.5728 10.0674 20.1664C16.3383 21.7601 21.5009 17.3044 21.5009 13.9843L20.5954 13.1155C14.7387 16.1441 7.34051 15.8441 6.50098 7.75L6.50088 4Z",stroke:"currentColor",strokeWidth:"1.90004",strokeLinecap:"round",strokeLinejoin:"round"})),P=u;0&&(module.exports={IconBananas});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBananas/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBananas: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 14.25C19 12.75 19.3375 10.9659 19.5 10.25L18.5 9.5C14.8876 11.2225 10.25 12.0991 6.75 8.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.90004\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.50088 4L3.50088 4.49851V7.99328C0.870065 11.6255 3.79644 18.5728 10.0674 20.1664C16.3383 21.7601 21.5009 17.3044 21.5009 13.9843L20.5954 13.1155C14.7387 16.1441 7.34051 15.8441 6.50098 7.75L6.50088 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.90004\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBananas;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kGACF,OAAO,eACP,YAAY,UACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8MACF,OAAO,eACP,YAAY,UACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconBananas_exports","__export","IconBananas","IconBananas_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBananas","props","React","CentralIconBase","IconBananas_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import s from"react";import{Svg as a}from"react-native-svg";var n=({children:o,size:r=24,...p})=>s.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as t}from"react-native-svg";var C=o=>e.createElement(n,{...o},e.createElement(t,{d:"M17.5 14.25C19 12.75 19.3375 10.9659 19.5 10.25L18.5 9.5C14.8876 11.2225 10.25 12.0991 6.75 8.5",stroke:"currentColor",strokeWidth:"1.90004",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M6.50088 4L3.50088 4.49851V7.99328C0.870065 11.6255 3.79644 18.5728 10.0674 20.1664C16.3383 21.7601 21.5009 17.3044 21.5009 13.9843L20.5954 13.1155C14.7387 16.1441 7.34051 15.8441 6.50098 7.75L6.50088 4Z",stroke:"currentColor",strokeWidth:"1.90004",strokeLinecap:"round",strokeLinejoin:"round"})),I=C;export{C as IconBananas,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBananas/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBananas: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.5 14.25C19 12.75 19.3375 10.9659 19.5 10.25L18.5 9.5C14.8876 11.2225 10.25 12.0991 6.75 8.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.90004\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.50088 4L3.50088 4.49851V7.99328C0.870065 11.6255 3.79644 18.5728 10.0674 20.1664C16.3383 21.7601 21.5009 17.3044 21.5009 13.9843L20.5954 13.1155C14.7387 16.1441 7.34051 15.8441 6.50098 7.75L6.50088 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.90004\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBananas;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kGACF,OAAO,eACP,YAAY,UACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8MACF,OAAO,eACP,YAAY,UACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBananas","props","React","CentralIconBase","IconBananas_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var m=Object.create;var e=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,i=Object.prototype.hasOwnProperty;var V=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0})},Z=(r,o,C,M)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!i.call(r,t)&&t!==C&&e(r,t,{get:()=>o[t],enumerable:!(M=c(o,t))||M.enumerable});return r};var p=(r,o,C)=>(C=r!=null?m(u(r)):{},Z(o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C,r)),B=r=>Z(e({},"__esModule",{value:!0}),r);var x={};V(x,{IconBubbleQuestion:()=>H,default:()=>I});module.exports=B(x);var L=p(require("react"));var l=p(require("react")),s=require("react-native-svg"),a=({children:r,size:o=24,...C})=>l.default.createElement(s.Svg,{...C,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"),H=r=>L.default.createElement(a,{...r},L.default.createElement(n.Path,{d:"M4.00195 4.00003L4.00195 3.00003C3.44967 3.00003 3.00195 3.44774 3.00195 4.00003H4.00195ZM20.002 4H21.002C21.002 3.73478 20.8966 3.48043 20.7091 3.29289C20.5215 3.10536 20.2672 3 20.002 3L20.002 4ZM20.002 18.0357L20.002 19.0357C20.5542 19.0357 21.002 18.588 21.002 18.0357H20.002ZM4.00195 18.0358H3.00195C3.00195 18.5881 3.44967 19.0358 4.00195 19.0358V18.0358ZM11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM15.0153 18.0358L15.0153 17.0358C14.7823 17.0358 14.5567 17.1171 14.3773 17.2657L15.0153 18.0358ZM9.01526 18.0358L9.65766 17.2694C9.47762 17.1185 9.25019 17.0358 9.01526 17.0358V18.0358ZM11.0329 11.5148C10.9508 12.0609 11.3271 12.5702 11.8733 12.6522C12.4194 12.7342 12.9287 12.358 13.0107 11.8118L11.0329 11.5148ZM12.8813 10.3635L13.4434 11.1906L13.4435 11.1905L12.8813 10.3635ZM9.6234 9.17764C9.6234 9.72993 10.0711 10.1776 10.6234 10.1776C11.1757 10.1776 11.6234 9.72993 11.6234 9.17764H9.6234ZM4.00195 5.00003L20.002 5L20.002 3L4.00195 3.00003L4.00195 5.00003ZM19.002 4V18.0357H21.002V4H19.002ZM5.00195 18.0358V4.00003H3.00195V18.0358H5.00195ZM20.0019 17.0357L15.0153 17.0358L15.0153 19.0358L20.002 19.0357L20.0019 17.0357ZM14.3773 17.2657L11.3597 19.7657L12.6357 21.3058L15.6532 18.8058L14.3773 17.2657ZM12.6401 19.7694L9.65766 17.2694L8.37286 18.8021L11.3553 21.3021L12.6401 19.7694ZM9.01526 17.0358H4.00195V19.0358H9.01526V17.0358ZM13.0107 11.8118C13.0368 11.6377 13.092 11.5308 13.1499 11.4531C13.2138 11.3671 13.3053 11.2844 13.4434 11.1906L12.3192 9.53647C11.8111 9.8818 11.1912 10.4604 11.0329 11.5148L13.0107 11.8118ZM13.4435 11.1905C13.8798 10.894 14.6234 10.3056 14.6234 9.17764H12.6234C12.6234 9.22485 12.6166 9.25033 12.6124 9.26257C12.6081 9.27526 12.6011 9.29023 12.5859 9.3108C12.5488 9.36132 12.4762 9.42971 12.3191 9.53653L13.4435 11.1905ZM14.6234 9.17764C14.6234 7.79765 13.5134 6.66329 12.1234 6.66329V8.66329C12.3909 8.66329 12.6234 8.88422 12.6234 9.17764H14.6234ZM12.1234 6.66329C10.7334 6.66329 9.6234 7.79765 9.6234 9.17764H11.6234C11.6234 8.88422 11.8559 8.66329 12.1234 8.66329V6.66329Z",fill:"currentColor"}),L.default.createElement(n.Path,{d:"
|
|
1
|
+
"use strict";var m=Object.create;var e=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,i=Object.prototype.hasOwnProperty;var V=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0})},Z=(r,o,C,M)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!i.call(r,t)&&t!==C&&e(r,t,{get:()=>o[t],enumerable:!(M=c(o,t))||M.enumerable});return r};var p=(r,o,C)=>(C=r!=null?m(u(r)):{},Z(o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C,r)),B=r=>Z(e({},"__esModule",{value:!0}),r);var x={};V(x,{IconBubbleQuestion:()=>H,default:()=>I});module.exports=B(x);var L=p(require("react"));var l=p(require("react")),s=require("react-native-svg"),a=({children:r,size:o=24,...C})=>l.default.createElement(s.Svg,{...C,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"),H=r=>L.default.createElement(a,{...r},L.default.createElement(n.Path,{d:"M4.00195 4.00003L4.00195 3.00003C3.44967 3.00003 3.00195 3.44774 3.00195 4.00003H4.00195ZM20.002 4H21.002C21.002 3.73478 20.8966 3.48043 20.7091 3.29289C20.5215 3.10536 20.2672 3 20.002 3L20.002 4ZM20.002 18.0357L20.002 19.0357C20.5542 19.0357 21.002 18.588 21.002 18.0357H20.002ZM4.00195 18.0358H3.00195C3.00195 18.5881 3.44967 19.0358 4.00195 19.0358V18.0358ZM11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM15.0153 18.0358L15.0153 17.0358C14.7823 17.0358 14.5567 17.1171 14.3773 17.2657L15.0153 18.0358ZM9.01526 18.0358L9.65766 17.2694C9.47762 17.1185 9.25019 17.0358 9.01526 17.0358V18.0358ZM11.0329 11.5148C10.9508 12.0609 11.3271 12.5702 11.8733 12.6522C12.4194 12.7342 12.9287 12.358 13.0107 11.8118L11.0329 11.5148ZM12.8813 10.3635L13.4434 11.1906L13.4435 11.1905L12.8813 10.3635ZM9.6234 9.17764C9.6234 9.72993 10.0711 10.1776 10.6234 10.1776C11.1757 10.1776 11.6234 9.72993 11.6234 9.17764H9.6234ZM4.00195 5.00003L20.002 5L20.002 3L4.00195 3.00003L4.00195 5.00003ZM19.002 4V18.0357H21.002V4H19.002ZM5.00195 18.0358V4.00003H3.00195V18.0358H5.00195ZM20.0019 17.0357L15.0153 17.0358L15.0153 19.0358L20.002 19.0357L20.0019 17.0357ZM14.3773 17.2657L11.3597 19.7657L12.6357 21.3058L15.6532 18.8058L14.3773 17.2657ZM12.6401 19.7694L9.65766 17.2694L8.37286 18.8021L11.3553 21.3021L12.6401 19.7694ZM9.01526 17.0358H4.00195V19.0358H9.01526V17.0358ZM13.0107 11.8118C13.0368 11.6377 13.092 11.5308 13.1499 11.4531C13.2138 11.3671 13.3053 11.2844 13.4434 11.1906L12.3192 9.53647C11.8111 9.8818 11.1912 10.4604 11.0329 11.5148L13.0107 11.8118ZM13.4435 11.1905C13.8798 10.894 14.6234 10.3056 14.6234 9.17764H12.6234C12.6234 9.22485 12.6166 9.25033 12.6124 9.26257C12.6081 9.27526 12.6011 9.29023 12.5859 9.3108C12.5488 9.36132 12.4762 9.42971 12.3191 9.53653L13.4435 11.1905ZM14.6234 9.17764C14.6234 7.79765 13.5134 6.66329 12.1234 6.66329V8.66329C12.3909 8.66329 12.6234 8.88422 12.6234 9.17764H14.6234ZM12.1234 6.66329C10.7334 6.66329 9.6234 7.79765 9.6234 9.17764H11.6234C11.6234 8.88422 11.8559 8.66329 12.1234 8.66329V6.66329Z",fill:"currentColor"}),L.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=H;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=\"M4.00195 4.00003L4.00195 3.00003C3.44967 3.00003 3.00195 3.44774 3.00195 4.00003H4.00195ZM20.002 4H21.002C21.002 3.73478 20.8966 3.48043 20.7091 3.29289C20.5215 3.10536 20.2672 3 20.002 3L20.002 4ZM20.002 18.0357L20.002 19.0357C20.5542 19.0357 21.002 18.588 21.002 18.0357H20.002ZM4.00195 18.0358H3.00195C3.00195 18.5881 3.44967 19.0358 4.00195 19.0358V18.0358ZM11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM15.0153 18.0358L15.0153 17.0358C14.7823 17.0358 14.5567 17.1171 14.3773 17.2657L15.0153 18.0358ZM9.01526 18.0358L9.65766 17.2694C9.47762 17.1185 9.25019 17.0358 9.01526 17.0358V18.0358ZM11.0329 11.5148C10.9508 12.0609 11.3271 12.5702 11.8733 12.6522C12.4194 12.7342 12.9287 12.358 13.0107 11.8118L11.0329 11.5148ZM12.8813 10.3635L13.4434 11.1906L13.4435 11.1905L12.8813 10.3635ZM9.6234 9.17764C9.6234 9.72993 10.0711 10.1776 10.6234 10.1776C11.1757 10.1776 11.6234 9.72993 11.6234 9.17764H9.6234ZM4.00195 5.00003L20.002 5L20.002 3L4.00195 3.00003L4.00195 5.00003ZM19.002 4V18.0357H21.002V4H19.002ZM5.00195 18.0358V4.00003H3.00195V18.0358H5.00195ZM20.0019 17.0357L15.0153 17.0358L15.0153 19.0358L20.002 19.0357L20.0019 17.0357ZM14.3773 17.2657L11.3597 19.7657L12.6357 21.3058L15.6532 18.8058L14.3773 17.2657ZM12.6401 19.7694L9.65766 17.2694L8.37286 18.8021L11.3553 21.3021L12.6401 19.7694ZM9.01526 17.0358H4.00195V19.0358H9.01526V17.0358ZM13.0107 11.8118C13.0368 11.6377 13.092 11.5308 13.1499 11.4531C13.2138 11.3671 13.3053 11.2844 13.4434 11.1906L12.3192 9.53647C11.8111 9.8818 11.1912 10.4604 11.0329 11.5148L13.0107 11.8118ZM13.4435 11.1905C13.8798 10.894 14.6234 10.3056 14.6234 9.17764H12.6234C12.6234 9.22485 12.6166 9.25033 12.6124 9.26257C12.6081 9.27526 12.6011 9.29023 12.5859 9.3108C12.5488 9.36132 12.4762 9.42971 12.3191 9.53653L13.4435 11.1905ZM14.6234 9.17764C14.6234 7.79765 13.5134 6.66329 12.1234 6.66329V8.66329C12.3909 8.66329 12.6234 8.88422 12.6234 9.17764H14.6234ZM12.1234 6.66329C10.7334 6.66329 9.6234 7.79765 9.6234 9.17764H11.6234C11.6234 8.88422 11.8559 8.66329 12.1234 8.66329V6.66329Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconBubbleQuestion/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBubbleQuestion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.00195 4.00003L4.00195 3.00003C3.44967 3.00003 3.00195 3.44774 3.00195 4.00003H4.00195ZM20.002 4H21.002C21.002 3.73478 20.8966 3.48043 20.7091 3.29289C20.5215 3.10536 20.2672 3 20.002 3L20.002 4ZM20.002 18.0357L20.002 19.0357C20.5542 19.0357 21.002 18.588 21.002 18.0357H20.002ZM4.00195 18.0358H3.00195C3.00195 18.5881 3.44967 19.0358 4.00195 19.0358V18.0358ZM11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM15.0153 18.0358L15.0153 17.0358C14.7823 17.0358 14.5567 17.1171 14.3773 17.2657L15.0153 18.0358ZM9.01526 18.0358L9.65766 17.2694C9.47762 17.1185 9.25019 17.0358 9.01526 17.0358V18.0358ZM11.0329 11.5148C10.9508 12.0609 11.3271 12.5702 11.8733 12.6522C12.4194 12.7342 12.9287 12.358 13.0107 11.8118L11.0329 11.5148ZM12.8813 10.3635L13.4434 11.1906L13.4435 11.1905L12.8813 10.3635ZM9.6234 9.17764C9.6234 9.72993 10.0711 10.1776 10.6234 10.1776C11.1757 10.1776 11.6234 9.72993 11.6234 9.17764H9.6234ZM4.00195 5.00003L20.002 5L20.002 3L4.00195 3.00003L4.00195 5.00003ZM19.002 4V18.0357H21.002V4H19.002ZM5.00195 18.0358V4.00003H3.00195V18.0358H5.00195ZM20.0019 17.0357L15.0153 17.0358L15.0153 19.0358L20.002 19.0357L20.0019 17.0357ZM14.3773 17.2657L11.3597 19.7657L12.6357 21.3058L15.6532 18.8058L14.3773 17.2657ZM12.6401 19.7694L9.65766 17.2694L8.37286 18.8021L11.3553 21.3021L12.6401 19.7694ZM9.01526 17.0358H4.00195V19.0358H9.01526V17.0358ZM13.0107 11.8118C13.0368 11.6377 13.092 11.5308 13.1499 11.4531C13.2138 11.3671 13.3053 11.2844 13.4434 11.1906L12.3192 9.53647C11.8111 9.8818 11.1912 10.4604 11.0329 11.5148L13.0107 11.8118ZM13.4435 11.1905C13.8798 10.894 14.6234 10.3056 14.6234 9.17764H12.6234C12.6234 9.22485 12.6166 9.25033 12.6124 9.26257C12.6081 9.27526 12.6011 9.29023 12.5859 9.3108C12.5488 9.36132 12.4762 9.42971 12.3191 9.53653L13.4435 11.1905ZM14.6234 9.17764C14.6234 7.79765 13.5134 6.66329 12.1234 6.66329V8.66329C12.3909 8.66329 12.6234 8.88422 12.6234 9.17764H14.6234ZM12.1234 6.66329C10.7334 6.66329 9.6234 7.79765 9.6234 9.17764H11.6234C11.6234 8.88422 11.8559 8.66329 12.1234 8.66329V6.66329Z\"\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,6hEACF,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 C from"react";import n from"react";import{Svg as M}from"react-native-svg";var t=({children:o,size:r=24,...L})=>n.createElement(M,{...L,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as e}from"react-native-svg";var Z=o=>C.createElement(t,{...o},C.createElement(e,{d:"M4.00195 4.00003L4.00195 3.00003C3.44967 3.00003 3.00195 3.44774 3.00195 4.00003H4.00195ZM20.002 4H21.002C21.002 3.73478 20.8966 3.48043 20.7091 3.29289C20.5215 3.10536 20.2672 3 20.002 3L20.002 4ZM20.002 18.0357L20.002 19.0357C20.5542 19.0357 21.002 18.588 21.002 18.0357H20.002ZM4.00195 18.0358H3.00195C3.00195 18.5881 3.44967 19.0358 4.00195 19.0358V18.0358ZM11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM15.0153 18.0358L15.0153 17.0358C14.7823 17.0358 14.5567 17.1171 14.3773 17.2657L15.0153 18.0358ZM9.01526 18.0358L9.65766 17.2694C9.47762 17.1185 9.25019 17.0358 9.01526 17.0358V18.0358ZM11.0329 11.5148C10.9508 12.0609 11.3271 12.5702 11.8733 12.6522C12.4194 12.7342 12.9287 12.358 13.0107 11.8118L11.0329 11.5148ZM12.8813 10.3635L13.4434 11.1906L13.4435 11.1905L12.8813 10.3635ZM9.6234 9.17764C9.6234 9.72993 10.0711 10.1776 10.6234 10.1776C11.1757 10.1776 11.6234 9.72993 11.6234 9.17764H9.6234ZM4.00195 5.00003L20.002 5L20.002 3L4.00195 3.00003L4.00195 5.00003ZM19.002 4V18.0357H21.002V4H19.002ZM5.00195 18.0358V4.00003H3.00195V18.0358H5.00195ZM20.0019 17.0357L15.0153 17.0358L15.0153 19.0358L20.002 19.0357L20.0019 17.0357ZM14.3773 17.2657L11.3597 19.7657L12.6357 21.3058L15.6532 18.8058L14.3773 17.2657ZM12.6401 19.7694L9.65766 17.2694L8.37286 18.8021L11.3553 21.3021L12.6401 19.7694ZM9.01526 17.0358H4.00195V19.0358H9.01526V17.0358ZM13.0107 11.8118C13.0368 11.6377 13.092 11.5308 13.1499 11.4531C13.2138 11.3671 13.3053 11.2844 13.4434 11.1906L12.3192 9.53647C11.8111 9.8818 11.1912 10.4604 11.0329 11.5148L13.0107 11.8118ZM13.4435 11.1905C13.8798 10.894 14.6234 10.3056 14.6234 9.17764H12.6234C12.6234 9.22485 12.6166 9.25033 12.6124 9.26257C12.6081 9.27526 12.6011 9.29023 12.5859 9.3108C12.5488 9.36132 12.4762 9.42971 12.3191 9.53653L13.4435 11.1905ZM14.6234 9.17764C14.6234 7.79765 13.5134 6.66329 12.1234 6.66329V8.66329C12.3909 8.66329 12.6234 8.88422 12.6234 9.17764H14.6234ZM12.1234 6.66329C10.7334 6.66329 9.6234 7.79765 9.6234 9.17764H11.6234C11.6234 8.88422 11.8559 8.66329 12.1234 8.66329V6.66329Z",fill:"currentColor"}),C.createElement(e,{d:"
|
|
1
|
+
import C from"react";import n from"react";import{Svg as M}from"react-native-svg";var t=({children:o,size:r=24,...L})=>n.createElement(M,{...L,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as e}from"react-native-svg";var Z=o=>C.createElement(t,{...o},C.createElement(e,{d:"M4.00195 4.00003L4.00195 3.00003C3.44967 3.00003 3.00195 3.44774 3.00195 4.00003H4.00195ZM20.002 4H21.002C21.002 3.73478 20.8966 3.48043 20.7091 3.29289C20.5215 3.10536 20.2672 3 20.002 3L20.002 4ZM20.002 18.0357L20.002 19.0357C20.5542 19.0357 21.002 18.588 21.002 18.0357H20.002ZM4.00195 18.0358H3.00195C3.00195 18.5881 3.44967 19.0358 4.00195 19.0358V18.0358ZM11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM15.0153 18.0358L15.0153 17.0358C14.7823 17.0358 14.5567 17.1171 14.3773 17.2657L15.0153 18.0358ZM9.01526 18.0358L9.65766 17.2694C9.47762 17.1185 9.25019 17.0358 9.01526 17.0358V18.0358ZM11.0329 11.5148C10.9508 12.0609 11.3271 12.5702 11.8733 12.6522C12.4194 12.7342 12.9287 12.358 13.0107 11.8118L11.0329 11.5148ZM12.8813 10.3635L13.4434 11.1906L13.4435 11.1905L12.8813 10.3635ZM9.6234 9.17764C9.6234 9.72993 10.0711 10.1776 10.6234 10.1776C11.1757 10.1776 11.6234 9.72993 11.6234 9.17764H9.6234ZM4.00195 5.00003L20.002 5L20.002 3L4.00195 3.00003L4.00195 5.00003ZM19.002 4V18.0357H21.002V4H19.002ZM5.00195 18.0358V4.00003H3.00195V18.0358H5.00195ZM20.0019 17.0357L15.0153 17.0358L15.0153 19.0358L20.002 19.0357L20.0019 17.0357ZM14.3773 17.2657L11.3597 19.7657L12.6357 21.3058L15.6532 18.8058L14.3773 17.2657ZM12.6401 19.7694L9.65766 17.2694L8.37286 18.8021L11.3553 21.3021L12.6401 19.7694ZM9.01526 17.0358H4.00195V19.0358H9.01526V17.0358ZM13.0107 11.8118C13.0368 11.6377 13.092 11.5308 13.1499 11.4531C13.2138 11.3671 13.3053 11.2844 13.4434 11.1906L12.3192 9.53647C11.8111 9.8818 11.1912 10.4604 11.0329 11.5148L13.0107 11.8118ZM13.4435 11.1905C13.8798 10.894 14.6234 10.3056 14.6234 9.17764H12.6234C12.6234 9.22485 12.6166 9.25033 12.6124 9.26257C12.6081 9.27526 12.6011 9.29023 12.5859 9.3108C12.5488 9.36132 12.4762 9.42971 12.3191 9.53653L13.4435 11.1905ZM14.6234 9.17764C14.6234 7.79765 13.5134 6.66329 12.1234 6.66329V8.66329C12.3909 8.66329 12.6234 8.88422 12.6234 9.17764H14.6234ZM12.1234 6.66329C10.7334 6.66329 9.6234 7.79765 9.6234 9.17764H11.6234C11.6234 8.88422 11.8559 8.66329 12.1234 8.66329V6.66329Z",fill:"currentColor"}),C.createElement(e,{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=Z;export{Z as IconBubbleQuestion,i 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=\"M4.00195 4.00003L4.00195 3.00003C3.44967 3.00003 3.00195 3.44774 3.00195 4.00003H4.00195ZM20.002 4H21.002C21.002 3.73478 20.8966 3.48043 20.7091 3.29289C20.5215 3.10536 20.2672 3 20.002 3L20.002 4ZM20.002 18.0357L20.002 19.0357C20.5542 19.0357 21.002 18.588 21.002 18.0357H20.002ZM4.00195 18.0358H3.00195C3.00195 18.5881 3.44967 19.0358 4.00195 19.0358V18.0358ZM11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM15.0153 18.0358L15.0153 17.0358C14.7823 17.0358 14.5567 17.1171 14.3773 17.2657L15.0153 18.0358ZM9.01526 18.0358L9.65766 17.2694C9.47762 17.1185 9.25019 17.0358 9.01526 17.0358V18.0358ZM11.0329 11.5148C10.9508 12.0609 11.3271 12.5702 11.8733 12.6522C12.4194 12.7342 12.9287 12.358 13.0107 11.8118L11.0329 11.5148ZM12.8813 10.3635L13.4434 11.1906L13.4435 11.1905L12.8813 10.3635ZM9.6234 9.17764C9.6234 9.72993 10.0711 10.1776 10.6234 10.1776C11.1757 10.1776 11.6234 9.72993 11.6234 9.17764H9.6234ZM4.00195 5.00003L20.002 5L20.002 3L4.00195 3.00003L4.00195 5.00003ZM19.002 4V18.0357H21.002V4H19.002ZM5.00195 18.0358V4.00003H3.00195V18.0358H5.00195ZM20.0019 17.0357L15.0153 17.0358L15.0153 19.0358L20.002 19.0357L20.0019 17.0357ZM14.3773 17.2657L11.3597 19.7657L12.6357 21.3058L15.6532 18.8058L14.3773 17.2657ZM12.6401 19.7694L9.65766 17.2694L8.37286 18.8021L11.3553 21.3021L12.6401 19.7694ZM9.01526 17.0358H4.00195V19.0358H9.01526V17.0358ZM13.0107 11.8118C13.0368 11.6377 13.092 11.5308 13.1499 11.4531C13.2138 11.3671 13.3053 11.2844 13.4434 11.1906L12.3192 9.53647C11.8111 9.8818 11.1912 10.4604 11.0329 11.5148L13.0107 11.8118ZM13.4435 11.1905C13.8798 10.894 14.6234 10.3056 14.6234 9.17764H12.6234C12.6234 9.22485 12.6166 9.25033 12.6124 9.26257C12.6081 9.27526 12.6011 9.29023 12.5859 9.3108C12.5488 9.36132 12.4762 9.42971 12.3191 9.53653L13.4435 11.1905ZM14.6234 9.17764C14.6234 7.79765 13.5134 6.66329 12.1234 6.66329V8.66329C12.3909 8.66329 12.6234 8.88422 12.6234 9.17764H14.6234ZM12.1234 6.66329C10.7334 6.66329 9.6234 7.79765 9.6234 9.17764H11.6234C11.6234 8.88422 11.8559 8.66329 12.1234 8.66329V6.66329Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconBubbleQuestion/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBubbleQuestion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4.00195 4.00003L4.00195 3.00003C3.44967 3.00003 3.00195 3.44774 3.00195 4.00003H4.00195ZM20.002 4H21.002C21.002 3.73478 20.8966 3.48043 20.7091 3.29289C20.5215 3.10536 20.2672 3 20.002 3L20.002 4ZM20.002 18.0357L20.002 19.0357C20.5542 19.0357 21.002 18.588 21.002 18.0357H20.002ZM4.00195 18.0358H3.00195C3.00195 18.5881 3.44967 19.0358 4.00195 19.0358V18.0358ZM11.9977 20.5358L11.3553 21.3021C11.7252 21.6123 12.2639 21.6138 12.6357 21.3058L11.9977 20.5358ZM15.0153 18.0358L15.0153 17.0358C14.7823 17.0358 14.5567 17.1171 14.3773 17.2657L15.0153 18.0358ZM9.01526 18.0358L9.65766 17.2694C9.47762 17.1185 9.25019 17.0358 9.01526 17.0358V18.0358ZM11.0329 11.5148C10.9508 12.0609 11.3271 12.5702 11.8733 12.6522C12.4194 12.7342 12.9287 12.358 13.0107 11.8118L11.0329 11.5148ZM12.8813 10.3635L13.4434 11.1906L13.4435 11.1905L12.8813 10.3635ZM9.6234 9.17764C9.6234 9.72993 10.0711 10.1776 10.6234 10.1776C11.1757 10.1776 11.6234 9.72993 11.6234 9.17764H9.6234ZM4.00195 5.00003L20.002 5L20.002 3L4.00195 3.00003L4.00195 5.00003ZM19.002 4V18.0357H21.002V4H19.002ZM5.00195 18.0358V4.00003H3.00195V18.0358H5.00195ZM20.0019 17.0357L15.0153 17.0358L15.0153 19.0358L20.002 19.0357L20.0019 17.0357ZM14.3773 17.2657L11.3597 19.7657L12.6357 21.3058L15.6532 18.8058L14.3773 17.2657ZM12.6401 19.7694L9.65766 17.2694L8.37286 18.8021L11.3553 21.3021L12.6401 19.7694ZM9.01526 17.0358H4.00195V19.0358H9.01526V17.0358ZM13.0107 11.8118C13.0368 11.6377 13.092 11.5308 13.1499 11.4531C13.2138 11.3671 13.3053 11.2844 13.4434 11.1906L12.3192 9.53647C11.8111 9.8818 11.1912 10.4604 11.0329 11.5148L13.0107 11.8118ZM13.4435 11.1905C13.8798 10.894 14.6234 10.3056 14.6234 9.17764H12.6234C12.6234 9.22485 12.6166 9.25033 12.6124 9.26257C12.6081 9.27526 12.6011 9.29023 12.5859 9.3108C12.5488 9.36132 12.4762 9.42971 12.3191 9.53653L13.4435 11.1905ZM14.6234 9.17764C14.6234 7.79765 13.5134 6.66329 12.1234 6.66329V8.66329C12.3909 8.66329 12.6234 8.88422 12.6234 9.17764H14.6234ZM12.1234 6.66329C10.7334 6.66329 9.6234 7.79765 9.6234 9.17764H11.6234C11.6234 8.88422 11.8559 8.66329 12.1234 8.66329V6.66329Z\"\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,6hEACF,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 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})},V=(r,o,t,H)=>{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:!(H=f(o,e))||H.enumerable});return r};var a=(r,o,t)=>(t=r!=null?c(M(r)):{},V(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),Z=r=>V(n({},"__esModule",{value:!0}),r);var P={};I(P,{IconEmail1:()=>i,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,...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 C=require("react-native-svg"),i=r=>p.default.createElement(m,{...r},p.default.createElement(C.Path,{d:"M21 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3 5V4C2.44772 4 2 4.44772 2 5H3ZM3 19H2C2 19.5523 2.44772 20 3 20V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M21 5.63635L12 13L3 5.63635",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),x=i;0&&(module.exports={IconEmail1});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconEmail1/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEmail1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEmail1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3
|
|
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 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3 5V4C2.44772 4 2 4.44772 2 5H3ZM3 19H2C2 19.5523 2.44772 20 3 20V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 5.63635L12 13L3 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,2OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8BACF,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 t from"react";import C from"react";import{Svg as H}from"react-native-svg";var e=({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 n}from"react-native-svg";var V=o=>t.createElement(e,{...o},t.createElement(n,{d:"M21 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3 5V4C2.44772 4 2 4.44772 2 5H3ZM3 19H2C2 19.5523 2.44772 20 3 20V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z",fill:"currentColor"}),t.createElement(n,{d:"M21 5.63635L12 13L3 5.63635",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),B=V;export{V as IconEmail1,B as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconEmail1/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEmail1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEmail1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3
|
|
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 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3 5V4C2.44772 4 2 4.44772 2 5H3ZM3 19H2C2 19.5523 2.44772 20 3 20V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 5.63635L12 13L3 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,2OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8BACF,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})},V=(r,o,t,H)=>{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:!(H=f(o,e))||H.enumerable});return r};var a=(r,o,t)=>(t=r!=null?c(M(r)):{},V(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),Z=r=>V(n({},"__esModule",{value:!0}),r);var P={};I(P,{IconEmail2:()=>i,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,...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 C=require("react-native-svg"),i=r=>p.default.createElement(m,{...r},p.default.createElement(C.Path,{d:"M21 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3 5V4C2.44772 4 2 4.44772 2 5H3ZM3 19H2C2 19.5523 2.44772 20 3 20V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z",fill:"currentColor"}),p.default.createElement(C.Path,{d:"M21 8.5L12 13L3 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=\"M21 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3
|
|
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 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3 5V4C2.44772 4 2 4.44772 2 5H3ZM3 19H2C2 19.5523 2.44772 20 3 20V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 8.5L12 13L3 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,2OACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sBACF,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 C from"react";import{Svg as H}from"react-native-svg";var e=({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 n}from"react-native-svg";var V=o=>t.createElement(e,{...o},t.createElement(n,{d:"M21 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3 5V4C2.44772 4 2 4.44772 2 5H3ZM3 19H2C2 19.5523 2.44772 20 3 20V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z",fill:"currentColor"}),t.createElement(n,{d:"M21 8.5L12 13L3 8.5",stroke:"currentColor",strokeWidth:"2",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 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3
|
|
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 5H22C22 4.44772 21.5523 4 21 4V5ZM21 19V20C21.5523 20 22 19.5523 22 19H21ZM3 5V4C2.44772 4 2 4.44772 2 5H3ZM3 19H2C2 19.5523 2.44772 20 3 20V19ZM21 5H20V19H21H22V5H21ZM3 5V6H21V5V4H3V5ZM3 19H4V5H3H2V19H3ZM21 19V18H3V19V20H21V19Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M21 8.5L12 13L3 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,2OACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sBACF,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})},i=(r,o,e,a)=>{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:!(a=f(o,t))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?d(B(r)):{},i(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>i(n({},"__esModule",{value:!0}),r);var h={};x(h,{IconEmail3:()=>u,default:()=>g});module.exports=P(h);var p=C(require("react"));var m=C(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:"M21 5H3V19H21V5Z",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=\"M21.001 9C18.4937 10.8837 15.377 12 11.9995 12C8.62204 12 5.50528 10.8837 2.99805
|
|
1
|
+
{"version":3,"sources":["../src/IconEmail3/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEmail3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H3V19H21V5Z\"\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,mBACF,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 a}from"react-native-svg";var t=({children:o,size:r=24,...p})=>s.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var i=o=>e.createElement(t,{...o},e.createElement(n,{d:"M21 5H3V19H21V5Z",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=i;export{i 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=\"M21.001 9C18.4937 10.8837 15.377 12 11.9995 12C8.62204 12 5.50528 10.8837 2.99805
|
|
1
|
+
{"version":3,"sources":["../src/IconEmail3/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEmail3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21 5H3V19H21V5Z\"\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,mBACF,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 d=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of k(o))!I.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(C=f(o,e))||C.enumerable});return r};var i=(r,o,t)=>(t=r!=null?d(B(r)):{},a(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>a(p({},"__esModule",{value:!0}),r);var g={};h(g,{IconEmailNotification:()=>u,default:()=>P});module.exports=x(g);var n=i(require("react"));var l=i(require("react")),m=require("react-native-svg"),c=({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 s=require("react-native-svg"),u=r=>n.default.createElement(c,{...r},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"}),n.default.createElement(s.Path,{d:"M13 5H3V19H21V13",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"})),P=u;0&&(module.exports={IconEmailNotification});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconEmailNotification/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconEmailNotification/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M13 5H3V19H21V13\"\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 />\n </CentralIconBase>\n );\n};\n\nexport default IconEmailNotification;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,2BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iHACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yFACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,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 s from"react";import{Svg as C}from"react-native-svg";var n=({children:t,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"},t);import{Path as e}from"react-native-svg";var a=t=>o.createElement(n,{...t},o.createElement(e,{d:"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M13 5H3V19H21V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.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"})),I=a;export{a 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=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconEmailNotification/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEmailNotification: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M13 5H3V19H21V13\"\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 />\n </CentralIconBase>\n );\n};\n\nexport default IconEmailNotification;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iHACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yFACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmailNotification","props","React","CentralIconBase","IconEmailNotification_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of i(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(C=I(o,e))||C.enumerable});return r};var L=(r,o,t)=>(t=r!=null?B(u(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var S={};P(S,{IconStackOverflow:()=>f,default:()=>v});module.exports=g(S);var p=L(require("react"));var l=L(require("react")),m=require("react-native-svg"),s=({children:r,size:o=24,...t})=>l.default.createElement(m.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var c=require("react-native-svg"),f=r=>p.default.createElement(s,{...r},p.default.createElement(c.Path,{d:"M21.0056 10.0319C20.0787 10.7255 19.262 11.5292 18.5556 12.4431L18.5847 12.4528V12.4625L18.5556 12.4431C17.8635 13.3368 17.2854 14.3133 16.8347 15.35L16.8153 15.3986C16.3719 16.4296 16.0679 17.5151 15.9111 18.6264V18.6458C15.8269 19.2421 15.7847 19.8514 15.7847 20.4736C15.7847 21.0083 15.8528 21.4847 15.9111 22H3V18.6264H14.1806L14.2486 18.2083L3.48611 15.35L4.39028 12.0444L15.2889 14.9417L15.4444 14.6111L5.64444 9.03056L7.375 6.05556L17.3111 11.7236L17.5542 11.4417L9.41667 3.42083L11.8667 1L21.0056 10.0319Z",fill:"currentColor"})),v=f;0&&(module.exports={IconStackOverflow});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconStackOverflow/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path
|
|
1
|
+
{"version":3,"sources":["../src/IconStackOverflow/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconStackOverflow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.0056 10.0319C20.0787 10.7255 19.262 11.5292 18.5556 12.4431L18.5847 12.4528V12.4625L18.5556 12.4431C17.8635 13.3368 17.2854 14.3133 16.8347 15.35L16.8153 15.3986C16.3719 16.4296 16.0679 17.5151 15.9111 18.6264V18.6458C15.8269 19.2421 15.7847 19.8514 15.7847 20.4736C15.7847 21.0083 15.8528 21.4847 15.9111 22H3V18.6264H14.1806L14.2486 18.2083L3.48611 15.35L4.39028 12.0444L15.2889 14.9417L15.4444 14.6111L5.64444 9.03056L7.375 6.05556L17.3111 11.7236L17.5542 11.4417L9.41667 3.42083L11.8667 1L21.0056 10.0319Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackOverflow;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,ogBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconStackOverflow_exports","__export","IconStackOverflow","IconStackOverflow_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconStackOverflow","props","React","CentralIconBase","IconStackOverflow_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var L=o=>e.createElement(t,{...o},e.createElement(a,{d:"M21.0056 10.0319C20.0787 10.7255 19.262 11.5292 18.5556 12.4431L18.5847 12.4528V12.4625L18.5556 12.4431C17.8635 13.3368 17.2854 14.3133 16.8347 15.35L16.8153 15.3986C16.3719 16.4296 16.0679 17.5151 15.9111 18.6264V18.6458C15.8269 19.2421 15.7847 19.8514 15.7847 20.4736C15.7847 21.0083 15.8528 21.4847 15.9111 22H3V18.6264H14.1806L14.2486 18.2083L3.48611 15.35L4.39028 12.0444L15.2889 14.9417L15.4444 14.6111L5.64444 9.03056L7.375 6.05556L17.3111 11.7236L17.5542 11.4417L9.41667 3.42083L11.8667 1L21.0056 10.0319Z",fill:"currentColor"})),x=L;export{L as IconStackOverflow,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconStackOverflow/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path
|
|
1
|
+
{"version":3,"sources":["../src/IconStackOverflow/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconStackOverflow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.0056 10.0319C20.0787 10.7255 19.262 11.5292 18.5556 12.4431L18.5847 12.4528V12.4625L18.5556 12.4431C17.8635 13.3368 17.2854 14.3133 16.8347 15.35L16.8153 15.3986C16.3719 16.4296 16.0679 17.5151 15.9111 18.6264V18.6458C15.8269 19.2421 15.7847 19.8514 15.7847 20.4736C15.7847 21.0083 15.8528 21.4847 15.9111 22H3V18.6264H14.1806L14.2486 18.2083L3.48611 15.35L4.39028 12.0444L15.2889 14.9417L15.4444 14.6111L5.64444 9.03056L7.375 6.05556L17.3111 11.7236L17.5542 11.4417L9.41667 3.42083L11.8667 1L21.0056 10.0319Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStackOverflow;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,ogBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconStackOverflow","props","React","CentralIconBase","IconStackOverflow_default"]}
|
package/README.md
CHANGED
|
@@ -856,6 +856,7 @@ Below is a complete list of available icons:
|
|
|
856
856
|
- IconApples
|
|
857
857
|
- IconAvocado
|
|
858
858
|
- IconBanana
|
|
859
|
+
- IconBananas
|
|
859
860
|
- IconBirthdayCake
|
|
860
861
|
- IconBottle
|
|
861
862
|
- IconBreakfast
|
|
@@ -986,6 +987,8 @@ Below is a complete list of available icons:
|
|
|
986
987
|
|
|
987
988
|
- IconAnchor1
|
|
988
989
|
- IconAnchor2
|
|
990
|
+
- IconAppearanceDarkMode
|
|
991
|
+
- IconAppearanceLightMode
|
|
989
992
|
- IconArchive1
|
|
990
993
|
- IconArrowBoxLeft
|
|
991
994
|
- IconArrowBoxRight
|