@central-icons-react-native/round-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 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,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
|
|
|
@@ -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
|
|