@central-icons-react-native/square-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:C,getOwnPropertyNames:s,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var L,S,d=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?L??=new WeakMap:S??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?h(y(r)):{};let n=o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e;for(let p of s(r))if(!i.call(n,p))C(n,p,{get:u.bind(r,p),enumerable:!0});if(t)m.set(r,n);return n},B=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of s(r))if(!i.call(o,t))C(o,t,{get:u.bind(r,t),enumerable:!(e=F(r,t))||e.enumerable})}return f.set(r,o),o},f;var b=(r)=>r;function M(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var Z={};I(Z,{CentralIconBase:()=>l});module.exports=B(Z);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 w={};I(w,{default:()=>H,IconCardNfc:()=>g});module.exports=B(w);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:"M22 20H2V4H22V20ZM11.4561 8.97559C11.5602 9.07238 11.6599 9.17463 11.7539 9.28125C12.4194 10.0358 12.8223 11.0253 12.8223 12.1104C12.822 13.1952 12.4194 14.1841 11.7539 14.9385C11.6598 15.0452 11.5602 15.1473 11.4561 15.2441L12.8174 16.709C12.97 16.5671 13.116 16.418 13.2539 16.2617C14.2293 15.156 14.822 13.7008 14.8223 12.1104C14.8223 10.5197 14.2293 9.06391 13.2539 7.95801C13.1161 7.80182 12.9699 7.65251 12.8174 7.51074L11.4561 8.97559ZM9.37109 11.2109C9.40238 11.2398 9.43279 11.2708 9.46094 11.3027C9.65111 11.5186 9.76562 11.8002 9.76562 12.1104C9.7654 12.4204 9.65124 12.7022 9.46094 12.918C9.43287 12.9498 9.40228 12.9801 9.37109 13.0088L10.7266 14.4795C10.8084 14.4041 10.8863 14.3237 10.96 14.2402C11.4602 13.6732 11.7654 12.9261 11.7656 12.1104C11.7656 11.2944 11.4603 10.5467 10.96 9.97949C10.8862 9.89591 10.8085 9.81575 10.7266 9.74023L9.37109 11.2109Z",fill:"currentColor"}))},H=g;
2
+
3
+ //# debugId=EF33259DB85E2FDF64756E2164756E21
@@ -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=\"M22 20H2V4H22V20ZM11.4561 8.97559C11.5602 9.07238 11.6599 9.17463 11.7539 9.28125C12.4194 10.0358 12.8223 11.0253 12.8223 12.1104C12.822 13.1952 12.4194 14.1841 11.7539 14.9385C11.6598 15.0452 11.5602 15.1473 11.4561 15.2441L12.8174 16.709C12.97 16.5671 13.116 16.418 13.2539 16.2617C14.2293 15.156 14.822 13.7008 14.8223 12.1104C14.8223 10.5197 14.2293 9.06391 13.2539 7.95801C13.1161 7.80182 12.9699 7.65251 12.8174 7.51074L11.4561 8.97559ZM9.37109 11.2109C9.40238 11.2398 9.43279 11.2708 9.46094 11.3027C9.65111 11.5186 9.76562 11.8002 9.76562 12.1104C9.7654 12.4204 9.65124 12.7022 9.46094 12.918C9.43287 12.9498 9.40228 12.9801 9.37109 13.0088L10.7266 14.4795C10.8084 14.4041 10.8863 14.3237 10.96 14.2402C11.4602 13.6732 11.7654 12.9261 11.7656 12.1104C11.7656 11.2944 11.4603 10.5467 10.96 9.97949C10.8862 9.89591 10.8085 9.81575 10.7266 9.74023L9.37109 11.2109Z\" 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,wBAAy8B,EAAz8B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,w2BAAw2B,KAAK,eAAc,CAAI,GAGn8B",
9
+ "debugId": "EF33259DB85E2FDF64756E2164756E21",
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,...C})=>{return n.createElement(p,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as l}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M22 20H2V4H22V20ZM11.4561 8.97559C11.5602 9.07238 11.6599 9.17463 11.7539 9.28125C12.4194 10.0358 12.8223 11.0253 12.8223 12.1104C12.822 13.1952 12.4194 14.1841 11.7539 14.9385C11.6598 15.0452 11.5602 15.1473 11.4561 15.2441L12.8174 16.709C12.97 16.5671 13.116 16.418 13.2539 16.2617C14.2293 15.156 14.822 13.7008 14.8223 12.1104C14.8223 10.5197 14.2293 9.06391 13.2539 7.95801C13.1161 7.80182 12.9699 7.65251 12.8174 7.51074L11.4561 8.97559ZM9.37109 11.2109C9.40238 11.2398 9.43279 11.2708 9.46094 11.3027C9.65111 11.5186 9.76562 11.8002 9.76562 12.1104C9.7654 12.4204 9.65124 12.7022 9.46094 12.918C9.43287 12.9498 9.40228 12.9801 9.37109 13.0088L10.7266 14.4795C10.8084 14.4041 10.8863 14.3237 10.96 14.2402C11.4602 13.6732 11.7654 12.9261 11.7656 12.1104C11.7656 11.2944 11.4603 10.5467 10.96 9.97949C10.8862 9.89591 10.8085 9.81575 10.7266 9.74023L9.37109 11.2109Z",fill:"currentColor"}))},x=a;export{x as default,a as IconCardNfc};
2
+
3
+ //# debugId=D6AA93F2D18FA64564756E2164756E21
@@ -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=\"M22 20H2V4H22V20ZM11.4561 8.97559C11.5602 9.07238 11.6599 9.17463 11.7539 9.28125C12.4194 10.0358 12.8223 11.0253 12.8223 12.1104C12.822 13.1952 12.4194 14.1841 11.7539 14.9385C11.6598 15.0452 11.5602 15.1473 11.4561 15.2441L12.8174 16.709C12.97 16.5671 13.116 16.418 13.2539 16.2617C14.2293 15.156 14.822 13.7008 14.8223 12.1104C14.8223 10.5197 14.2293 9.06391 13.2539 7.95801C13.1161 7.80182 12.9699 7.65251 12.8174 7.51074L11.4561 8.97559ZM9.37109 11.2109C9.40238 11.2398 9.43279 11.2708 9.46094 11.3027C9.65111 11.5186 9.76562 11.8002 9.76562 12.1104C9.7654 12.4204 9.65124 12.7022 9.46094 12.918C9.43287 12.9498 9.40228 12.9801 9.37109 13.0088L10.7266 14.4795C10.8084 14.4041 10.8863 14.3237 10.96 14.2402C11.4602 13.6732 11.7654 12.9261 11.7656 12.1104C11.7656 11.2944 11.4603 10.5467 10.96 9.97949C10.8862 9.89591 10.8085 9.81575 10.7266 9.74023L9.37109 11.2109Z\" 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,gBAAy8B,EAAz8B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,w2BAAw2B,KAAK,eAAc,CAAI,GAGn8B",
9
+ "debugId": "D6AA93F2D18FA64564756E2164756E21",
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 L=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:i,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var F,M,B=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var m=o?F??=new WeakMap:M??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?L(h(r)):{};let l=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let a of i(r))if(!u.call(l,a))t(l,a,{get:d.bind(r,a),enumerable:!0});if(n)m.set(r,l);return l},I=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of i(r))if(!u.call(o,n))t(o,n,{get:d.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return s.set(r,o),o},s;var S=(r)=>r;function Z(r,o){this[r]=S.bind(null,o)}var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:Z.bind(o,e)})};var b={};v(b,{CentralIconBase:()=>f});module.exports=I(b);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 H={};v(H,{default:()=>w,IconRocket2:()=>g});module.exports=I(H);var C=B(require("react"));var p=require("react-native-svg"),g=(r)=>{return C.default.createElement(f,{...r},C.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.6455 2.23633C12.8481 2.40751 13.0438 2.58031 13.2344 2.75293C15.9036 5.17085 17.4008 7.73006 17.8516 10.457C17.9093 10.8062 17.9519 11.1579 17.9756 11.5127C18.183 14.6252 17.0748 17.7882 15.1709 21C15.0671 21.1751 14.9619 21.351 14.8535 21.5264L14.5596 22H9.44043L9.14648 21.5264C7.04876 18.1338 5.80565 14.7949 6.02441 11.5127C6.04806 11.158 6.08972 10.8062 6.14746 10.457C6.59897 7.72547 8.10063 5.16173 10.7783 2.74023C10.9647 2.57174 11.1567 2.40345 11.3545 2.23633L12 1.69043L12.6455 2.23633ZM12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M21 14.667V21H16.9023C18.4094 18.2872 19.4076 15.4954 19.4932 12.6582L21 14.667Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M4.50586 12.6572C4.59123 15.4947 5.59046 18.2868 7.09766 21H3V14.667L4.50586 12.6572Z",fill:"currentColor"}))},w=g;
2
+
3
+ //# debugId=D81E00E06F4B3ED264756E2164756E21
@@ -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=\"M12.6455 2.23633C12.8481 2.40751 13.0438 2.58031 13.2344 2.75293C15.9036 5.17085 17.4008 7.73006 17.8516 10.457C17.9093 10.8062 17.9519 11.1579 17.9756 11.5127C18.183 14.6252 17.0748 17.7882 15.1709 21C15.0671 21.1751 14.9619 21.351 14.8535 21.5264L14.5596 22H9.44043L9.14648 21.5264C7.04876 18.1338 5.80565 14.7949 6.02441 11.5127C6.04806 11.158 6.08972 10.8062 6.14746 10.457C6.59897 7.72547 8.10063 5.16173 10.7783 2.74023C10.9647 2.57174 11.1567 2.40345 11.3545 2.23633L12 1.69043L12.6455 2.23633ZM12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10Z\" fill=\"currentColor\"/><Path d=\"M21 14.667V21H16.9023C18.4094 18.2872 19.4076 15.4954 19.4932 12.6582L21 14.667Z\" fill=\"currentColor\"/><Path d=\"M4.50586 12.6572C4.59123 15.4947 5.59046 18.2868 7.09766 21H3V14.667L4.50586 12.6572Z\" 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,wBAAq7B,EAAr7B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+mBAA+mB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mFAAmF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wFAAwF,KAAK,eAAc,CAAI,GAG/6B",
9
+ "debugId": "D81E00E06F4B3ED264756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import l from"react";import{Svg as p}from"react-native-svg";var t=({children:e,size:r=24,...C})=>{return l.createElement(p,{...C,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 n}from"react-native-svg";var a=(e)=>{return o.createElement(t,{...e},o.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.6455 2.23633C12.8481 2.40751 13.0438 2.58031 13.2344 2.75293C15.9036 5.17085 17.4008 7.73006 17.8516 10.457C17.9093 10.8062 17.9519 11.1579 17.9756 11.5127C18.183 14.6252 17.0748 17.7882 15.1709 21C15.0671 21.1751 14.9619 21.351 14.8535 21.5264L14.5596 22H9.44043L9.14648 21.5264C7.04876 18.1338 5.80565 14.7949 6.02441 11.5127C6.04806 11.158 6.08972 10.8062 6.14746 10.457C6.59897 7.72547 8.10063 5.16173 10.7783 2.74023C10.9647 2.57174 11.1567 2.40345 11.3545 2.23633L12 1.69043L12.6455 2.23633ZM12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10Z",fill:"currentColor"}),o.createElement(n,{d:"M21 14.667V21H16.9023C18.4094 18.2872 19.4076 15.4954 19.4932 12.6582L21 14.667Z",fill:"currentColor"}),o.createElement(n,{d:"M4.50586 12.6572C4.59123 15.4947 5.59046 18.2868 7.09766 21H3V14.667L4.50586 12.6572Z",fill:"currentColor"}))},x=a;export{x as default,a as IconRocket2};
2
+
3
+ //# debugId=274E319F522A61F764756E2164756E21
@@ -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=\"M12.6455 2.23633C12.8481 2.40751 13.0438 2.58031 13.2344 2.75293C15.9036 5.17085 17.4008 7.73006 17.8516 10.457C17.9093 10.8062 17.9519 11.1579 17.9756 11.5127C18.183 14.6252 17.0748 17.7882 15.1709 21C15.0671 21.1751 14.9619 21.351 14.8535 21.5264L14.5596 22H9.44043L9.14648 21.5264C7.04876 18.1338 5.80565 14.7949 6.02441 11.5127C6.04806 11.158 6.08972 10.8062 6.14746 10.457C6.59897 7.72547 8.10063 5.16173 10.7783 2.74023C10.9647 2.57174 11.1567 2.40345 11.3545 2.23633L12 1.69043L12.6455 2.23633ZM12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10Z\" fill=\"currentColor\"/><Path d=\"M21 14.667V21H16.9023C18.4094 18.2872 19.4076 15.4954 19.4932 12.6582L21 14.667Z\" fill=\"currentColor\"/><Path d=\"M4.50586 12.6572C4.59123 15.4947 5.59046 18.2868 7.09766 21H3V14.667L4.50586 12.6572Z\" 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,gBAAq7B,EAAr7B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+mBAA+mB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mFAAmF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wFAAwF,KAAK,eAAc,CAAI,GAG/6B",
9
+ "debugId": "274E319F522A61F764756E2164756E21",
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 h=Object.create;var{getPrototypeOf:v,defineProperty:e,getOwnPropertyNames:i,getOwnPropertyDescriptor:b}=Object,u=Object.prototype.hasOwnProperty;function L(C){return this[C]}var y,F,B=(C,r,o)=>{var t=C!=null&&typeof C==="object";if(t){var s=r?y??=new WeakMap:F??=new WeakMap,f=s.get(C);if(f)return f}o=C!=null?h(v(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:L.bind(C,a),enumerable:!0});if(t)s.set(C,p);return p},I=(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:L.bind(C,t),enumerable:!(o=b(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 x=(C,r)=>{for(var o in r)e(C,o,{get:r[o],enumerable:!0,configurable:!0,set:M.bind(r,o)})};var Z={};x(Z,{CentralIconBase:()=>m});module.exports=I(Z);var P=B(require("react")),g=require("react-native-svg"),m=({children:C,size:r=24,...o})=>{return P.default.createElement(g.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={};x(w,{default:()=>H,IconWebhooks:()=>d});module.exports=I(w);var n=B(require("react"));var l=require("react-native-svg"),d=(C)=>{return n.default.createElement(m,{...C},n.default.createElement(l.Path,{d:"M6.24902 13.0947C4.95505 13.4279 4 14.6036 4 16C4 17.6569 5.34315 19 7 19C8.65685 19 10 17.6569 10 16V15H15.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 13.6688 3.59465 11.7122 5.75098 11.1572L6.24902 13.0947Z",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 21C15.6626 21 14.4453 20.4733 13.5488 19.6182L14.9297 18.1719C15.4689 18.6861 16.1967 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.376L14.6689 13.8633L11.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.4299 16.9458 7.84867 16.8428 8.24902L14.9053 7.75098C14.9667 7.51218 15 7.26059 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.62402L11.416 10.1094L8.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=d;
2
+
3
+ //# debugId=74CE15D6BDFB481164756E2164756E21
@@ -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=\"M6.24902 13.0947C4.95505 13.4279 4 14.6036 4 16C4 17.6569 5.34315 19 7 19C8.65685 19 10 17.6569 10 16V15H15.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 13.6688 3.59465 11.7122 5.75098 11.1572L6.24902 13.0947Z\" 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 21C15.6626 21 14.4453 20.4733 13.5488 19.6182L14.9297 18.1719C15.4689 18.6861 16.1967 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.376L14.6689 13.8633L11.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.4299 16.9458 7.84867 16.8428 8.24902L14.9053 7.75098C14.9667 7.51218 15 7.26059 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.62402L11.416 10.1094L8.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,wBAA67C,EAA77C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,0YAA0Y,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0eAA0e,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,odAAod,KAAK,eAAc,CAAI,GAGv7C",
9
+ "debugId": "74CE15D6BDFB481164756E2164756E21",
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:"M6.24902 13.0947C4.95505 13.4279 4 14.6036 4 16C4 17.6569 5.34315 19 7 19C8.65685 19 10 17.6569 10 16V15H15.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 13.6688 3.59465 11.7122 5.75098 11.1572L6.24902 13.0947Z",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 21C15.6626 21 14.4453 20.4733 13.5488 19.6182L14.9297 18.1719C15.4689 18.6861 16.1967 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.376L14.6689 13.8633L11.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.4299 16.9458 7.84867 16.8428 8.24902L14.9053 7.75098C14.9667 7.51218 15 7.26059 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.62402L11.416 10.1094L8.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"}))},P=a;export{P as default,a as IconWebhooks};
2
+
3
+ //# debugId=9832EE16B16AB11B64756E2164756E21
@@ -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=\"M6.24902 13.0947C4.95505 13.4279 4 14.6036 4 16C4 17.6569 5.34315 19 7 19C8.65685 19 10 17.6569 10 16V15H15.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 13.6688 3.59465 11.7122 5.75098 11.1572L6.24902 13.0947Z\" 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 21C15.6626 21 14.4453 20.4733 13.5488 19.6182L14.9297 18.1719C15.4689 18.6861 16.1967 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.376L14.6689 13.8633L11.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.4299 16.9458 7.84867 16.8428 8.24902L14.9053 7.75098C14.9667 7.51218 15 7.26059 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.62402L11.416 10.1094L8.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,gBAA67C,EAA77C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,0YAA0Y,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0eAA0e,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,odAAod,KAAK,eAAc,CAAI,GAGv7C",
9
+ "debugId": "9832EE16B16AB11B64756E2164756E21",
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