@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.268 → 1.1.270

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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCardNfc: FC<CentralIconBaseProps>;
4
+ export default IconCardNfc;
@@ -0,0 +1,3 @@
1
+ var h=Object.create;var{getPrototypeOf:y,defineProperty:t,getOwnPropertyNames:s,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var S,b,d=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var m=o?S??=new WeakMap:b??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?h(y(r)):{};let n=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let p of s(r))if(!i.call(n,p))t(n,p,{get:u.bind(r,p),enumerable:!0});if(C)m.set(r,n);return n},B=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of s(r))if(!i.call(o,C))t(o,C,{get:u.bind(r,C),enumerable:!(e=F(r,C))||e.enumerable})}return f.set(r,o),o},f;var M=(r)=>r;function Z(r,o){this[r]=M.bind(null,o)}var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:Z.bind(o,e)})};var w={};I(w,{CentralIconBase:()=>l});module.exports=B(w);var v=d(require("react")),x=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return v.default.createElement(x.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var H={};I(H,{default:()=>V,IconCardNfc:()=>g});module.exports=B(H);var a=d(require("react"));var P=require("react-native-svg"),g=(r)=>{return a.default.createElement(l,{...r},a.default.createElement(P.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z",fill:"currentColor"}))},V=g;
2
+
3
+ //# debugId=8A1BF35978E6C2C564756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCardNfc/index.tsx"],
4
+ "sourcesContent": [
5
+ "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<\n CentralIconBaseProps\n> = ({\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",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCardNfc: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCardNfc;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAAu/B,EAAv/B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s5BAAs5B,KAAK,eAAc,CAAI,GAGj/B",
9
+ "debugId": "8A1BF35978E6C2C564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import n from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...t})=>{return n.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import C from"react";import{Path as l}from"react-native-svg";var a=(o)=>{return C.createElement(e,{...o},C.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z",fill:"currentColor"}))},x=a;export{x as default,a as IconCardNfc};
2
+
3
+ //# debugId=0245545CA769CDA764756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCardNfc/index.tsx"],
4
+ "sourcesContent": [
5
+ "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<\n CentralIconBaseProps\n> = ({\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",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCardNfc: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCardNfc;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAAu/B,EAAv/B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s5BAAs5B,KAAK,eAAc,CAAI,GAGj/B",
9
+ "debugId": "0245545CA769CDA764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconRocket2: FC<CentralIconBaseProps>;
4
+ export default IconRocket2;
@@ -0,0 +1,3 @@
1
+ var h=Object.create;var{getPrototypeOf:y,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:F}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var M,S,B=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var m=o?M??=new WeakMap:S??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?h(y(r)):{};let l=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let a of i(r))if(!u.call(l,a))n(l,a,{get:d.bind(r,a),enumerable:!0});if(C)m.set(r,l);return l},I=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of i(r))if(!u.call(o,C))n(o,C,{get:d.bind(r,C),enumerable:!(e=F(r,C))||e.enumerable})}return s.set(r,o),o},s;var Z=(r)=>r;function b(r,o){this[r]=Z.bind(null,o)}var v=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var H={};v(H,{CentralIconBase:()=>f});module.exports=I(H);var x=B(require("react")),P=require("react-native-svg"),f=({children:r,size:o=24,...e})=>{return x.default.createElement(P.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 w={};v(w,{default:()=>L,IconRocket2:()=>g});module.exports=I(w);var t=B(require("react"));var p=require("react-native-svg"),g=(r)=>{return t.default.createElement(f,{...r},t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.3545 2.2367C11.7272 1.92175 12.2728 1.92175 12.6455 2.2367C16.0485 5.11261 17.7541 8.19048 17.9756 11.5131C18.1941 14.7951 16.9512 18.1344 14.8535 21.5267C14.6713 21.821 14.349 22.0002 14.0029 22.0004H9.99707C9.65097 22.0002 9.32872 21.821 9.14648 21.5267C7.04884 18.1344 5.80587 14.7951 6.02441 11.5131C6.24589 8.19048 7.95153 5.11261 11.3545 2.2367ZM12 10.0004C10.8954 10.0004 10 10.8958 10 12.0004C10.0003 13.1047 10.8956 14.0004 12 14.0004C13.1044 14.0004 13.9997 13.1047 14 12.0004C14 10.8958 13.1046 10.0004 12 10.0004Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M4.50684 12.6566C4.59212 15.4946 5.59195 18.2868 7.09961 21.0004H4C3.448 21.0004 3.00046 20.5523 3 20.0004V15.0004C3 14.7843 3.07071 14.5737 3.2002 14.4008L4.50684 12.6566Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M20.7998 14.4008C20.9293 14.5737 21 14.7843 21 15.0004V20.0004C20.9995 20.5523 20.552 21.0004 20 21.0004H16.9004C18.408 18.2868 19.4069 15.4946 19.4922 12.6566L20.7998 14.4008Z",fill:"currentColor"}))},L=g;
2
+
3
+ //# debugId=809721BC6DD781BA64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconRocket2/index.tsx"],
4
+ "sourcesContent": [
5
+ "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<\n CentralIconBaseProps\n> = ({\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",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconRocket2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.3545 2.2367C11.7272 1.92175 12.2728 1.92175 12.6455 2.2367C16.0485 5.11261 17.7541 8.19048 17.9756 11.5131C18.1941 14.7951 16.9512 18.1344 14.8535 21.5267C14.6713 21.821 14.349 22.0002 14.0029 22.0004H9.99707C9.65097 22.0002 9.32872 21.821 9.14648 21.5267C7.04884 18.1344 5.80587 14.7951 6.02441 11.5131C6.24589 8.19048 7.95153 5.11261 11.3545 2.2367ZM12 10.0004C10.8954 10.0004 10 10.8958 10 12.0004C10.0003 13.1047 10.8956 14.0004 12 14.0004C13.1044 14.0004 13.9997 13.1047 14 12.0004C14 10.8958 13.1046 10.0004 12 10.0004Z\" fill=\"currentColor\"/><Path d=\"M4.50684 12.6566C4.59212 15.4946 5.59195 18.2868 7.09961 21.0004H4C3.448 21.0004 3.00046 20.5523 3 20.0004V15.0004C3 14.7843 3.07071 14.5737 3.2002 14.4008L4.50684 12.6566Z\" fill=\"currentColor\"/><Path d=\"M20.7998 14.4008C20.9293 14.5737 21 14.7843 21 15.0004V20.0004C20.9995 20.5523 20.552 21.0004 20 21.0004H16.9004C18.408 18.2868 19.4069 15.4946 19.4922 12.6566L20.7998 14.4008Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRocket2;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAAihC,EAAjhC,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ohBAAohB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+KAA+K,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mLAAmL,KAAK,eAAc,CAAI,GAG3gC",
9
+ "debugId": "809721BC6DD781BA64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import l from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...t})=>{return l.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e)};import o from"react";import{Path as C}from"react-native-svg";var a=(e)=>{return o.createElement(n,{...e},o.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.3545 2.2367C11.7272 1.92175 12.2728 1.92175 12.6455 2.2367C16.0485 5.11261 17.7541 8.19048 17.9756 11.5131C18.1941 14.7951 16.9512 18.1344 14.8535 21.5267C14.6713 21.821 14.349 22.0002 14.0029 22.0004H9.99707C9.65097 22.0002 9.32872 21.821 9.14648 21.5267C7.04884 18.1344 5.80587 14.7951 6.02441 11.5131C6.24589 8.19048 7.95153 5.11261 11.3545 2.2367ZM12 10.0004C10.8954 10.0004 10 10.8958 10 12.0004C10.0003 13.1047 10.8956 14.0004 12 14.0004C13.1044 14.0004 13.9997 13.1047 14 12.0004C14 10.8958 13.1046 10.0004 12 10.0004Z",fill:"currentColor"}),o.createElement(C,{d:"M4.50684 12.6566C4.59212 15.4946 5.59195 18.2868 7.09961 21.0004H4C3.448 21.0004 3.00046 20.5523 3 20.0004V15.0004C3 14.7843 3.07071 14.5737 3.2002 14.4008L4.50684 12.6566Z",fill:"currentColor"}),o.createElement(C,{d:"M20.7998 14.4008C20.9293 14.5737 21 14.7843 21 15.0004V20.0004C20.9995 20.5523 20.552 21.0004 20 21.0004H16.9004C18.408 18.2868 19.4069 15.4946 19.4922 12.6566L20.7998 14.4008Z",fill:"currentColor"}))},x=a;export{x as default,a as IconRocket2};
2
+
3
+ //# debugId=411D8576D20EC26064756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconRocket2/index.tsx"],
4
+ "sourcesContent": [
5
+ "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<\n CentralIconBaseProps\n> = ({\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",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconRocket2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.3545 2.2367C11.7272 1.92175 12.2728 1.92175 12.6455 2.2367C16.0485 5.11261 17.7541 8.19048 17.9756 11.5131C18.1941 14.7951 16.9512 18.1344 14.8535 21.5267C14.6713 21.821 14.349 22.0002 14.0029 22.0004H9.99707C9.65097 22.0002 9.32872 21.821 9.14648 21.5267C7.04884 18.1344 5.80587 14.7951 6.02441 11.5131C6.24589 8.19048 7.95153 5.11261 11.3545 2.2367ZM12 10.0004C10.8954 10.0004 10 10.8958 10 12.0004C10.0003 13.1047 10.8956 14.0004 12 14.0004C13.1044 14.0004 13.9997 13.1047 14 12.0004C14 10.8958 13.1046 10.0004 12 10.0004Z\" fill=\"currentColor\"/><Path d=\"M4.50684 12.6566C4.59212 15.4946 5.59195 18.2868 7.09961 21.0004H4C3.448 21.0004 3.00046 20.5523 3 20.0004V15.0004C3 14.7843 3.07071 14.5737 3.2002 14.4008L4.50684 12.6566Z\" fill=\"currentColor\"/><Path d=\"M20.7998 14.4008C20.9293 14.5737 21 14.7843 21 15.0004V20.0004C20.9995 20.5523 20.552 21.0004 20 21.0004H16.9004C18.408 18.2868 19.4069 15.4946 19.4922 12.6566L20.7998 14.4008Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRocket2;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAAihC,EAAjhC,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ohBAAohB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+KAA+K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mLAAmL,KAAK,eAAc,CAAI,GAG3gC",
9
+ "debugId": "411D8576D20EC26064756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconWebhooks: FC<CentralIconBaseProps>;
4
+ export default IconWebhooks;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:b,defineProperty:e,getOwnPropertyNames:i,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function B(C){return this[C]}var F,L,I=(C,r,o)=>{var t=C!=null&&typeof C==="object";if(t){var s=r?F??=new WeakMap:L??=new WeakMap,f=s.get(C);if(f)return f}o=C!=null?v(b(C)):{};let p=r||!C||!C.__esModule?e(o,"default",{value:C,enumerable:!0}):o;for(let a of i(C))if(!u.call(p,a))e(p,a,{get:B.bind(C,a),enumerable:!0});if(t)s.set(C,p);return p},x=(C)=>{var r=(c??=new WeakMap).get(C),o;if(r)return r;if(r=e({},"__esModule",{value:!0}),C&&typeof C==="object"||typeof C==="function"){for(var t of i(C))if(!u.call(r,t))e(r,t,{get:B.bind(C,t),enumerable:!(o=y(C,t))||o.enumerable})}return c.set(C,r),r},c;var S=(C)=>C;function M(C,r){this[C]=S.bind(null,r)}var P=(C,r)=>{for(var o in r)e(C,o,{get:r[o],enumerable:!0,configurable:!0,set:M.bind(r,o)})};var Z={};P(Z,{CentralIconBase:()=>m});module.exports=x(Z);var g=I(require("react")),d=require("react-native-svg"),m=({children:C,size:r=24,...o})=>{return g.default.createElement(d.Svg,{...o,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};var w={};P(w,{default:()=>H,IconWebhooks:()=>h});module.exports=x(w);var n=I(require("react"));var l=require("react-native-svg"),h=(C)=>{return n.default.createElement(m,{...C},n.default.createElement(l.Path,{d:"M4.57031 11.6289C5.05285 11.3603 5.66201 11.5341 5.93066 12.0166C6.19908 12.4989 6.02602 13.1072 5.54395 13.376C4.6211 13.8898 4 14.8733 4 16C4 17.6569 5.34315 19 7 19C8.65685 19 10 17.6569 10 16C10 15.4477 10.4477 15 11 15H15.5645C15.8807 14.5468 16.4055 14.25 17 14.25C17.9665 14.25 18.75 15.0335 18.75 16C18.75 16.9665 17.9665 17.75 17 17.75C16.4055 17.75 15.8807 17.4532 15.5645 17H11.8994C11.4361 19.2822 9.41892 21 7 21C4.23858 21 2 18.7614 2 16C2 14.1188 3.03925 12.4814 4.57031 11.6289Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M12 5.25C12.9665 5.25 13.75 6.0335 13.75 7C13.75 7.27578 13.6839 7.53555 13.5703 7.76758L15.4951 11.2324C15.9708 11.0824 16.4762 11 17 11C19.7614 11 22 13.2386 22 16C22 18.7614 19.7614 21 17 21C16.1203 21 15.2905 20.7721 14.5703 20.3711C14.0879 20.1024 13.915 19.4932 14.1836 19.0107C14.4523 18.5283 15.0615 18.3554 15.5439 18.624C15.9742 18.8634 16.4697 19 17 19C18.6569 19 20 17.6569 20 16C20 14.3431 18.6569 13 17 13C16.4697 13 15.9742 13.1366 15.5439 13.376C15.3122 13.505 15.0383 13.5374 14.7832 13.4648C14.528 13.3921 14.3115 13.2203 14.1826 12.9883L11.8232 8.74121C10.9398 8.6526 10.25 7.90684 10.25 7C10.25 6.0335 11.0335 5.25 12 5.25Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M12 2C14.7614 2 17 4.23858 17 7C17 7.55228 16.5523 8 16 8C15.4477 8 15 7.55228 15 7C15 5.34315 13.6569 4 12 4C10.3431 4 9 5.34315 9 7C9 8.12668 9.6211 9.11024 10.5439 9.62402C11.0256 9.89255 11.1992 10.5002 10.9316 10.9824L8.57031 15.2314C8.68419 15.4637 8.75 15.7239 8.75 16C8.75 16.9665 7.9665 17.75 7 17.75C6.0335 17.75 5.25 16.9665 5.25 16C5.25 15.0931 5.93971 14.3464 6.82324 14.2578L8.74609 10.7959C7.67838 9.87974 7 8.51962 7 7C7 4.23858 9.23858 2 12 2Z",fill:"currentColor"}))},H=h;
2
+
3
+ //# debugId=7D6C2FDD321FDDF664756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWebhooks/index.tsx"],
4
+ "sourcesContent": [
5
+ "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<\n CentralIconBaseProps\n> = ({\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",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWebhooks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4.57031 11.6289C5.05285 11.3603 5.66201 11.5341 5.93066 12.0166C6.19908 12.4989 6.02602 13.1072 5.54395 13.376C4.6211 13.8898 4 14.8733 4 16C4 17.6569 5.34315 19 7 19C8.65685 19 10 17.6569 10 16C10 15.4477 10.4477 15 11 15H15.5645C15.8807 14.5468 16.4055 14.25 17 14.25C17.9665 14.25 18.75 15.0335 18.75 16C18.75 16.9665 17.9665 17.75 17 17.75C16.4055 17.75 15.8807 17.4532 15.5645 17H11.8994C11.4361 19.2822 9.41892 21 7 21C4.23858 21 2 18.7614 2 16C2 14.1188 3.03925 12.4814 4.57031 11.6289Z\" fill=\"currentColor\"/><Path d=\"M12 5.25C12.9665 5.25 13.75 6.0335 13.75 7C13.75 7.27578 13.6839 7.53555 13.5703 7.76758L15.4951 11.2324C15.9708 11.0824 16.4762 11 17 11C19.7614 11 22 13.2386 22 16C22 18.7614 19.7614 21 17 21C16.1203 21 15.2905 20.7721 14.5703 20.3711C14.0879 20.1024 13.915 19.4932 14.1836 19.0107C14.4523 18.5283 15.0615 18.3554 15.5439 18.624C15.9742 18.8634 16.4697 19 17 19C18.6569 19 20 17.6569 20 16C20 14.3431 18.6569 13 17 13C16.4697 13 15.9742 13.1366 15.5439 13.376C15.3122 13.505 15.0383 13.5374 14.7832 13.4648C14.528 13.3921 14.3115 13.2203 14.1826 12.9883L11.8232 8.74121C10.9398 8.6526 10.25 7.90684 10.25 7C10.25 6.0335 11.0335 5.25 12 5.25Z\" fill=\"currentColor\"/><Path d=\"M12 2C14.7614 2 17 4.23858 17 7C17 7.55228 16.5523 8 16 8C15.4477 8 15 7.55228 15 7C15 5.34315 13.6569 4 12 4C10.3431 4 9 5.34315 9 7C9 8.12668 9.6211 9.11024 10.5439 9.62402C11.0256 9.89255 11.1992 10.5002 10.9316 10.9824L8.57031 15.2314C8.68419 15.4637 8.75 15.7239 8.75 16C8.75 16.9665 7.9665 17.75 7 17.75C6.0335 17.75 5.25 16.9665 5.25 16C5.25 15.0931 5.93971 14.3464 6.82324 14.2578L8.74609 10.7959C7.67838 9.87974 7 8.51962 7 7C7 4.23858 9.23858 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWebhooks;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,wECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAA2rD,EAA3rD,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,ifAAif,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,soBAAsoB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+cAA+c,KAAK,eAAc,CAAI,GAGrrD",
9
+ "debugId": "7D6C2FDD321FDDF664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:C=24,...n})=>{return p.createElement(l,{...n,width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o)};import r from"react";import{Path as t}from"react-native-svg";var a=(o)=>{return r.createElement(e,{...o},r.createElement(t,{d:"M4.57031 11.6289C5.05285 11.3603 5.66201 11.5341 5.93066 12.0166C6.19908 12.4989 6.02602 13.1072 5.54395 13.376C4.6211 13.8898 4 14.8733 4 16C4 17.6569 5.34315 19 7 19C8.65685 19 10 17.6569 10 16C10 15.4477 10.4477 15 11 15H15.5645C15.8807 14.5468 16.4055 14.25 17 14.25C17.9665 14.25 18.75 15.0335 18.75 16C18.75 16.9665 17.9665 17.75 17 17.75C16.4055 17.75 15.8807 17.4532 15.5645 17H11.8994C11.4361 19.2822 9.41892 21 7 21C4.23858 21 2 18.7614 2 16C2 14.1188 3.03925 12.4814 4.57031 11.6289Z",fill:"currentColor"}),r.createElement(t,{d:"M12 5.25C12.9665 5.25 13.75 6.0335 13.75 7C13.75 7.27578 13.6839 7.53555 13.5703 7.76758L15.4951 11.2324C15.9708 11.0824 16.4762 11 17 11C19.7614 11 22 13.2386 22 16C22 18.7614 19.7614 21 17 21C16.1203 21 15.2905 20.7721 14.5703 20.3711C14.0879 20.1024 13.915 19.4932 14.1836 19.0107C14.4523 18.5283 15.0615 18.3554 15.5439 18.624C15.9742 18.8634 16.4697 19 17 19C18.6569 19 20 17.6569 20 16C20 14.3431 18.6569 13 17 13C16.4697 13 15.9742 13.1366 15.5439 13.376C15.3122 13.505 15.0383 13.5374 14.7832 13.4648C14.528 13.3921 14.3115 13.2203 14.1826 12.9883L11.8232 8.74121C10.9398 8.6526 10.25 7.90684 10.25 7C10.25 6.0335 11.0335 5.25 12 5.25Z",fill:"currentColor"}),r.createElement(t,{d:"M12 2C14.7614 2 17 4.23858 17 7C17 7.55228 16.5523 8 16 8C15.4477 8 15 7.55228 15 7C15 5.34315 13.6569 4 12 4C10.3431 4 9 5.34315 9 7C9 8.12668 9.6211 9.11024 10.5439 9.62402C11.0256 9.89255 11.1992 10.5002 10.9316 10.9824L8.57031 15.2314C8.68419 15.4637 8.75 15.7239 8.75 16C8.75 16.9665 7.9665 17.75 7 17.75C6.0335 17.75 5.25 16.9665 5.25 16C5.25 15.0931 5.93971 14.3464 6.82324 14.2578L8.74609 10.7959C7.67838 9.87974 7 8.51962 7 7C7 4.23858 9.23858 2 12 2Z",fill:"currentColor"}))},g=a;export{g as default,a as IconWebhooks};
2
+
3
+ //# debugId=9DC9331A295029DD64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWebhooks/index.tsx"],
4
+ "sourcesContent": [
5
+ "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<\n CentralIconBaseProps\n> = ({\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",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWebhooks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4.57031 11.6289C5.05285 11.3603 5.66201 11.5341 5.93066 12.0166C6.19908 12.4989 6.02602 13.1072 5.54395 13.376C4.6211 13.8898 4 14.8733 4 16C4 17.6569 5.34315 19 7 19C8.65685 19 10 17.6569 10 16C10 15.4477 10.4477 15 11 15H15.5645C15.8807 14.5468 16.4055 14.25 17 14.25C17.9665 14.25 18.75 15.0335 18.75 16C18.75 16.9665 17.9665 17.75 17 17.75C16.4055 17.75 15.8807 17.4532 15.5645 17H11.8994C11.4361 19.2822 9.41892 21 7 21C4.23858 21 2 18.7614 2 16C2 14.1188 3.03925 12.4814 4.57031 11.6289Z\" fill=\"currentColor\"/><Path d=\"M12 5.25C12.9665 5.25 13.75 6.0335 13.75 7C13.75 7.27578 13.6839 7.53555 13.5703 7.76758L15.4951 11.2324C15.9708 11.0824 16.4762 11 17 11C19.7614 11 22 13.2386 22 16C22 18.7614 19.7614 21 17 21C16.1203 21 15.2905 20.7721 14.5703 20.3711C14.0879 20.1024 13.915 19.4932 14.1836 19.0107C14.4523 18.5283 15.0615 18.3554 15.5439 18.624C15.9742 18.8634 16.4697 19 17 19C18.6569 19 20 17.6569 20 16C20 14.3431 18.6569 13 17 13C16.4697 13 15.9742 13.1366 15.5439 13.376C15.3122 13.505 15.0383 13.5374 14.7832 13.4648C14.528 13.3921 14.3115 13.2203 14.1826 12.9883L11.8232 8.74121C10.9398 8.6526 10.25 7.90684 10.25 7C10.25 6.0335 11.0335 5.25 12 5.25Z\" fill=\"currentColor\"/><Path d=\"M12 2C14.7614 2 17 4.23858 17 7C17 7.55228 16.5523 8 16 8C15.4477 8 15 7.55228 15 7C15 5.34315 13.6569 4 12 4C10.3431 4 9 5.34315 9 7C9 8.12668 9.6211 9.11024 10.5439 9.62402C11.0256 9.89255 11.1992 10.5002 10.9316 10.9824L8.57031 15.2314C8.68419 15.4637 8.75 15.7239 8.75 16C8.75 16.9665 7.9665 17.75 7 17.75C6.0335 17.75 5.25 16.9665 5.25 16C5.25 15.0931 5.93971 14.3464 6.82324 14.2578L8.74609 10.7959C7.67838 9.87974 7 8.51962 7 7C7 4.23858 9.23858 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWebhooks;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAA2rD,EAA3rD,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,ifAAif,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,soBAAsoB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+cAA+c,KAAK,eAAc,CAAI,GAGrrD",
9
+ "debugId": "9DC9331A295029DD64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -530,6 +530,7 @@ Below is a complete list of available icons:
530
530
  - IconBridge
531
531
  - IconAnimatePath
532
532
  - IconAgents
533
+ - IconWebhooks
533
534
 
534
535
  ### Communication
535
536
 
@@ -1676,6 +1677,7 @@ Below is a complete list of available icons:
1676
1677
  - IconCurrencyLira
1677
1678
  - Icon3dPackage2
1678
1679
  - IconCreditCardNfc
1680
+ - IconCardNfc
1679
1681
 
1680
1682
  ### Social Media & Brands
1681
1683
 
@@ -2229,6 +2231,7 @@ Below is a complete list of available icons:
2229
2231
  - IconSteeringWheel1
2230
2232
  - IconBoat
2231
2233
  - IconCarTaxi
2234
+ - IconRocket2
2232
2235
 
2233
2236
  ### Vehicles & Aircrafts
2234
2237