@central-icons-react-native/square-outlined-radius-0-stroke-1 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.
- package/IconCardNfc/index.d.ts +4 -0
- package/IconCardNfc/index.js +3 -0
- package/IconCardNfc/index.js.map +11 -0
- package/IconCardNfc/index.mjs +3 -0
- package/IconCardNfc/index.mjs.map +11 -0
- package/IconRocket2/index.d.ts +4 -0
- package/IconRocket2/index.js +3 -0
- package/IconRocket2/index.js.map +11 -0
- package/IconRocket2/index.mjs +3 -0
- package/IconRocket2/index.mjs.map +11 -0
- package/IconWebhooks/index.d.ts +4 -0
- package/IconWebhooks/index.js +3 -0
- package/IconWebhooks/index.js.map +11 -0
- package/IconWebhooks/index.mjs +3 -0
- package/IconWebhooks/index.mjs.map +11 -0
- package/README.md +3 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +3 -0
- package/index.js +9 -0
- package/index.mjs +3 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +4 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:k,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:y}=Object,B=Object.prototype.hasOwnProperty;function I(r){return this[r]}var F,S,i=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?F??=new WeakMap:S??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?h(k(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let a of u(r))if(!B.call(p,a))n(p,a,{get:I.bind(r,a),enumerable:!0});if(t)m.set(r,p);return p},x=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!B.call(o,t))n(o,t,{get:I.bind(r,t),enumerable:!(e=y(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 P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var w={};P(w,{CentralIconBase:()=>l});module.exports=x(w);var d=i(require("react")),g=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return d.default.createElement(g.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={};P(H,{default:()=>V,IconCardNfc:()=>v});module.exports=x(H);var C=i(require("react"));var s=require("react-native-svg"),v=(r)=>{return C.default.createElement(l,{...r},C.default.createElement(s.Path,{d:"M2.5 4.5H21.5V19.5H2.5V4.5Z",stroke:"currentColor",strokeLinecap:"square"}),C.default.createElement(s.Path,{d:"M12.1367 8.24268C12.2652 8.36209 12.3877 8.48782 12.5037 8.61939C13.3244 9.54968 13.8222 10.7714 13.8222 12.1094C13.8222 13.4475 13.3244 14.6692 12.5037 15.5995C12.3877 15.7311 12.2652 15.8568 12.1367 15.9762",stroke:"currentColor"}),C.default.createElement(s.Path,{d:"M10.0508 10.4751C10.1075 10.5273 10.1614 10.5825 10.2124 10.6403C10.5579 11.0319 10.7675 11.5462 10.7675 12.1094C10.7675 12.6727 10.5579 13.187 10.2124 13.5786C10.1614 13.6364 10.1075 13.6915 10.0508 13.7438",stroke:"currentColor"}))},V=v;
|
|
2
|
+
|
|
3
|
+
//# debugId=1147DFDD4544399E64756E2164756E21
|
|
@@ -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 d=\"M2.5 4.5H21.5V19.5H2.5V4.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M12.1367 8.24268C12.2652 8.36209 12.3877 8.48782 12.5037 8.61939C13.3244 9.54968 13.8222 10.7714 13.8222 12.1094C13.8222 13.4475 13.3244 14.6692 12.5037 15.5995C12.3877 15.7311 12.2652 15.8568 12.1367 15.9762\" stroke=\"currentColor\"/><Path d=\"M10.0508 10.4751C10.1075 10.5273 10.1614 10.5825 10.2124 10.6403C10.5579 11.0319 10.7675 11.5462 10.7675 12.1094C10.7675 12.6727 10.5579 13.187 10.2124 13.5786C10.1614 13.6364 10.1075 13.6915 10.0508 13.7438\" stroke=\"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,wBAAqlB,EAArlB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8BAA8B,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,mNAAmN,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kNAAkN,OAAO,eAAc,CAAI,GAG/kB",
|
|
9
|
+
"debugId": "1147DFDD4544399E64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as s}from"react-native-svg";var n=({children:e,size:r=24,...C})=>{return p.createElement(s,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e)};import o from"react";import{Path as t}from"react-native-svg";var a=(e)=>{return o.createElement(n,{...e},o.createElement(t,{d:"M2.5 4.5H21.5V19.5H2.5V4.5Z",stroke:"currentColor",strokeLinecap:"square"}),o.createElement(t,{d:"M12.1367 8.24268C12.2652 8.36209 12.3877 8.48782 12.5037 8.61939C13.3244 9.54968 13.8222 10.7714 13.8222 12.1094C13.8222 13.4475 13.3244 14.6692 12.5037 15.5995C12.3877 15.7311 12.2652 15.8568 12.1367 15.9762",stroke:"currentColor"}),o.createElement(t,{d:"M10.0508 10.4751C10.1075 10.5273 10.1614 10.5825 10.2124 10.6403C10.5579 11.0319 10.7675 11.5462 10.7675 12.1094C10.7675 12.6727 10.5579 13.187 10.2124 13.5786C10.1614 13.6364 10.1075 13.6915 10.0508 13.7438",stroke:"currentColor"}))},d=a;export{d as default,a as IconCardNfc};
|
|
2
|
+
|
|
3
|
+
//# debugId=C71941B90EF06B6864756E2164756E21
|
|
@@ -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 d=\"M2.5 4.5H21.5V19.5H2.5V4.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M12.1367 8.24268C12.2652 8.36209 12.3877 8.48782 12.5037 8.61939C13.3244 9.54968 13.8222 10.7714 13.8222 12.1094C13.8222 13.4475 13.3244 14.6692 12.5037 15.5995C12.3877 15.7311 12.2652 15.8568 12.1367 15.9762\" stroke=\"currentColor\"/><Path d=\"M10.0508 10.4751C10.1075 10.5273 10.1614 10.5825 10.2124 10.6403C10.5579 11.0319 10.7675 11.5462 10.7675 12.1094C10.7675 12.6727 10.5579 13.187 10.2124 13.5786C10.1614 13.6364 10.1075 13.6915 10.0508 13.7438\" stroke=\"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,gBAAqlB,EAArlB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8BAA8B,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,mNAAmN,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kNAAkN,OAAO,eAAc,CAAI,GAG/kB",
|
|
9
|
+
"debugId": "C71941B90EF06B6864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:y,defineProperty:C,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,x=Object.prototype.hasOwnProperty;function B(r){return this[r]}var F,S,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?F??=new WeakMap:S??=new WeakMap,a=m.get(r);if(a)return a}t=r!=null?v(y(r)):{};let s=o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t;for(let l of f(r))if(!x.call(s,l))C(s,l,{get:B.bind(r,l),enumerable:!0});if(e)m.set(r,s);return s},i=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!x.call(o,e))C(o,e,{get:B.bind(r,e),enumerable:!(t=h(r,e))||t.enumerable})}return u.set(r,o),o},u;var b=(r)=>r;function H(r,o){this[r]=b.bind(null,o)}var P=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0,configurable:!0,set:H.bind(o,t)})};var M={};P(M,{CentralIconBase:()=>c});module.exports=i(M);var g=I(require("react")),d=require("react-native-svg"),c=({children:r,size:o=24,...t})=>{return g.default.createElement(d.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 w={};P(w,{default:()=>L,IconRocket2:()=>k});module.exports=i(w);var n=I(require("react"));var p=require("react-native-svg"),k=(r)=>{return n.default.createElement(c,{...r},n.default.createElement(p.Path,{d:"M14.2028 21.5H9.79719C5.29292 14.5099 4.8409 8.30556 12 2.5C19.1591 8.30556 18.7071 14.5099 14.2028 21.5Z",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M6.5 11.5L3.5 15V20.5H9",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M17.5 11.5L20.5 15V20.5H15",stroke:"currentColor"}),n.default.createElement(p.Circle,{cx:"12",cy:"12",r:"1.75",stroke:"currentColor"}))},L=k;
|
|
2
|
+
|
|
3
|
+
//# debugId=BEEB881FC09130B364756E2164756E21
|
|
@@ -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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconRocket2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M14.2028 21.5H9.79719C5.29292 14.5099 4.8409 8.30556 12 2.5C19.1591 8.30556 18.7071 14.5099 14.2028 21.5Z\" stroke=\"currentColor\"/><Path d=\"M6.5 11.5L3.5 15V20.5H9\" stroke=\"currentColor\"/><Path d=\"M17.5 11.5L20.5 15V20.5H15\" stroke=\"currentColor\"/><Circle cx=\"12\" cy=\"12\" r=\"1.75\" stroke=\"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,sBAE6B,IAA7B,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAAsV,EAAtV,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,4GAA4G,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0BAA0B,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,eAAc,CAAI,GAGhV",
|
|
9
|
+
"debugId": "BEEB881FC09130B364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";import{Svg as s}from"react-native-svg";var n=({children:t,size:r=24,...p})=>{return C.createElement(s,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t)};import o from"react";import{Circle as l,Path as e}from"react-native-svg";var c=(t)=>{return o.createElement(n,{...t},o.createElement(e,{d:"M14.2028 21.5H9.79719C5.29292 14.5099 4.8409 8.30556 12 2.5C19.1591 8.30556 18.7071 14.5099 14.2028 21.5Z",stroke:"currentColor"}),o.createElement(e,{d:"M6.5 11.5L3.5 15V20.5H9",stroke:"currentColor"}),o.createElement(e,{d:"M17.5 11.5L20.5 15V20.5H15",stroke:"currentColor"}),o.createElement(l,{cx:"12",cy:"12",r:"1.75",stroke:"currentColor"}))},d=c;export{d as default,c as IconRocket2};
|
|
2
|
+
|
|
3
|
+
//# debugId=854A526E8957310964756E2164756E21
|
|
@@ -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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconRocket2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M14.2028 21.5H9.79719C5.29292 14.5099 4.8409 8.30556 12 2.5C19.1591 8.30556 18.7071 14.5099 14.2028 21.5Z\" stroke=\"currentColor\"/><Path d=\"M6.5 11.5L3.5 15V20.5H9\" stroke=\"currentColor\"/><Path d=\"M17.5 11.5L20.5 15V20.5H15\" stroke=\"currentColor\"/><Circle cx=\"12\" cy=\"12\" r=\"1.75\" stroke=\"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,iBAAS,UAAQ,yBAEV,IAAM,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAAsV,EAAtV,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,4GAA4G,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0BAA0B,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6BAA6B,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,eAAc,CAAI,GAGhV",
|
|
9
|
+
"debugId": "854A526E8957310964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:b,defineProperty:l,getOwnPropertyNames:i,getOwnPropertyDescriptor:d}=Object,u=Object.prototype.hasOwnProperty;function x(r){return this[r]}var F,L,B=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?F??=new WeakMap:L??=new WeakMap,a=m.get(r);if(a)return a}t=r!=null?v(b(r)):{};let p=o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t;for(let c of i(r))if(!u.call(p,c))l(p,c,{get:x.bind(r,c),enumerable:!0});if(e)m.set(r,p);return p},I=(r)=>{var o=(f??=new WeakMap).get(r),t;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of i(r))if(!u.call(o,e))l(o,e,{get:x.bind(r,e),enumerable:!(t=d(r,e))||t.enumerable})}return f.set(r,o),o},f;var S=(r)=>r;function k(r,o){this[r]=S.bind(null,o)}var y=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0,configurable:!0,set:k.bind(o,t)})};var M={};y(M,{CentralIconBase:()=>s});module.exports=I(M);var P=B(require("react")),g=require("react-native-svg"),s=({children:r,size:o=24,...t})=>{return P.default.createElement(g.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 w={};y(w,{default:()=>W,IconWebhooks:()=>h});module.exports=I(w);var n=B(require("react"));var C=require("react-native-svg"),h=(r)=>{return n.default.createElement(s,{...r},n.default.createElement(C.Circle,{cx:"11.9996",cy:"6.75005",r:"1.84722",fill:"currentColor"}),n.default.createElement(C.Circle,{cx:"6.72222",cy:"16.2501",r:"1.84722",fill:"currentColor"}),n.default.createElement(C.Circle,{cx:"17.2779",cy:"16.2501",r:"1.84722",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M12 6.75005L14.0509 10.4416L15.2269 12.5585C15.8341 12.2204 16.5335 12.0278 17.2778 12.0278C19.6096 12.0278 21.5 13.9182 21.5 16.2501C21.5 18.5819 19.6096 20.4723 17.2778 20.4723C16.1479 20.4723 15.1217 20.0287 14.3639 19.3059M6.72222 16.2501L8.77309 12.5585L9.94913 10.4416C8.65396 9.72053 7.77778 8.33761 7.77778 6.75005C7.77778 4.41819 9.66813 2.52783 12 2.52783C14.3319 2.52783 16.2222 4.41819 16.2222 6.75005C16.2222 7.11454 16.1761 7.46823 16.0892 7.80561M17.2778 16.2501H10.9444C10.9444 18.5819 9.05409 20.4723 6.72222 20.4723C4.39035 20.4723 2.5 18.5819 2.5 16.2501C2.5 14.2827 3.84559 12.6295 5.66667 12.1608",stroke:"currentColor",strokeWidth:"1.05556"}))},W=h;
|
|
2
|
+
|
|
3
|
+
//# debugId=B777A07458808E6D64756E2164756E21
|
|
@@ -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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconWebhooks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Circle cx=\"11.9996\" cy=\"6.75005\" r=\"1.84722\" fill=\"currentColor\"/><Circle cx=\"6.72222\" cy=\"16.2501\" r=\"1.84722\" fill=\"currentColor\"/><Circle cx=\"17.2779\" cy=\"16.2501\" r=\"1.84722\" fill=\"currentColor\"/><Path d=\"M12 6.75005L14.0509 10.4416L15.2269 12.5585C15.8341 12.2204 16.5335 12.0278 17.2778 12.0278C19.6096 12.0278 21.5 13.9182 21.5 16.2501C21.5 18.5819 19.6096 20.4723 17.2778 20.4723C16.1479 20.4723 15.1217 20.0287 14.3639 19.3059M6.72222 16.2501L8.77309 12.5585L9.94913 10.4416C8.65396 9.72053 7.77778 8.33761 7.77778 6.75005C7.77778 4.41819 9.66813 2.52783 12 2.52783C14.3319 2.52783 16.2222 4.41819 16.2222 6.75005C16.2222 7.11454 16.1761 7.46823 16.0892 7.80561M17.2778 16.2501H10.9444C10.9444 18.5819 9.05409 20.4723 6.72222 20.4723C4.39035 20.4723 2.5 18.5819 2.5 16.2501C2.5 14.2827 3.84559 12.6295 5.66667 12.1608\" stroke=\"currentColor\" strokeWidth=\"1.05556\"/></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,sBAE6B,IAA7B,8BAEa,EAAyC,CAAC,IAAU,CAC/D,OAAO,wBAAw4B,EAAx4B,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,UAAU,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,UAAU,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,UAAU,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4mBAA4mB,OAAO,eAAe,YAAY,UAAS,CAAI,GAGl4B",
|
|
9
|
+
"debugId": "B777A07458808E6D64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";import{Svg as p}from"react-native-svg";var n=({children:t,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"},t)};import o from"react";import{Circle as e,Path as c}from"react-native-svg";var s=(t)=>{return o.createElement(n,{...t},o.createElement(e,{cx:"11.9996",cy:"6.75005",r:"1.84722",fill:"currentColor"}),o.createElement(e,{cx:"6.72222",cy:"16.2501",r:"1.84722",fill:"currentColor"}),o.createElement(e,{cx:"17.2779",cy:"16.2501",r:"1.84722",fill:"currentColor"}),o.createElement(c,{d:"M12 6.75005L14.0509 10.4416L15.2269 12.5585C15.8341 12.2204 16.5335 12.0278 17.2778 12.0278C19.6096 12.0278 21.5 13.9182 21.5 16.2501C21.5 18.5819 19.6096 20.4723 17.2778 20.4723C16.1479 20.4723 15.1217 20.0287 14.3639 19.3059M6.72222 16.2501L8.77309 12.5585L9.94913 10.4416C8.65396 9.72053 7.77778 8.33761 7.77778 6.75005C7.77778 4.41819 9.66813 2.52783 12 2.52783C14.3319 2.52783 16.2222 4.41819 16.2222 6.75005C16.2222 7.11454 16.1761 7.46823 16.0892 7.80561M17.2778 16.2501H10.9444C10.9444 18.5819 9.05409 20.4723 6.72222 20.4723C4.39035 20.4723 2.5 18.5819 2.5 16.2501C2.5 14.2827 3.84559 12.6295 5.66667 12.1608",stroke:"currentColor",strokeWidth:"1.05556"}))},g=s;export{g as default,s as IconWebhooks};
|
|
2
|
+
|
|
3
|
+
//# debugId=AEBD7314822F3A6064756E2164756E21
|
|
@@ -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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconWebhooks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Circle cx=\"11.9996\" cy=\"6.75005\" r=\"1.84722\" fill=\"currentColor\"/><Circle cx=\"6.72222\" cy=\"16.2501\" r=\"1.84722\" fill=\"currentColor\"/><Circle cx=\"17.2779\" cy=\"16.2501\" r=\"1.84722\" fill=\"currentColor\"/><Path d=\"M12 6.75005L14.0509 10.4416L15.2269 12.5585C15.8341 12.2204 16.5335 12.0278 17.2778 12.0278C19.6096 12.0278 21.5 13.9182 21.5 16.2501C21.5 18.5819 19.6096 20.4723 17.2778 20.4723C16.1479 20.4723 15.1217 20.0287 14.3639 19.3059M6.72222 16.2501L8.77309 12.5585L9.94913 10.4416C8.65396 9.72053 7.77778 8.33761 7.77778 6.75005C7.77778 4.41819 9.66813 2.52783 12 2.52783C14.3319 2.52783 16.2222 4.41819 16.2222 6.75005C16.2222 7.11454 16.1761 7.46823 16.0892 7.80561M17.2778 16.2501H10.9444C10.9444 18.5819 9.05409 20.4723 6.72222 20.4723C4.39035 20.4723 2.5 18.5819 2.5 16.2501C2.5 14.2827 3.84559 12.6295 5.66667 12.1608\" stroke=\"currentColor\" strokeWidth=\"1.05556\"/></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,iBAAS,UAAQ,yBAEV,IAAM,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAAw4B,EAAx4B,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,UAAU,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,UAAU,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,UAAU,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4mBAA4mB,OAAO,eAAe,YAAY,UAAS,CAAI,GAGl4B",
|
|
9
|
+
"debugId": "AEBD7314822F3A6064756E2164756E21",
|
|
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
|
|