@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.269 → 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/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 +2 -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 +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
|
@@ -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,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
|
|
|
@@ -2230,6 +2231,7 @@ Below is a complete list of available icons:
|
|
|
2230
2231
|
- IconSteeringWheel1
|
|
2231
2232
|
- IconBoat
|
|
2232
2233
|
- IconCarTaxi
|
|
2234
|
+
- IconRocket2
|
|
2233
2235
|
|
|
2234
2236
|
### Vehicles & Aircrafts
|
|
2235
2237
|
|