@central-icons-react-native/round-filled-radius-0-stroke-1 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 L={};v(L,{default:()=>w,IconRocket2:()=>g});module.exports=I(L);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.7568 2.06247C11.9324 1.96475 12.1538 1.98139 12.3145 2.11129C15.9681 5.07413 17.7425 8.19467 17.9736 11.5215C18.2032 14.827 16.9009 18.2355 14.623 21.7705C14.531 21.9132 14.3729 21.9999 14.2031 22H9.79688C9.62712 21.9998 9.46891 21.9132 9.37695 21.7705C7.09913 18.2355 5.79685 14.827 6.02637 11.5215C6.25746 8.1947 8.03201 5.07411 11.6855 2.11129L11.7568 2.06247ZM12 10.25C11.0336 10.2501 10.25 11.0335 10.25 12C10.25 12.9664 11.0336 13.7499 12 13.75C12.9665 13.75 13.75 12.9665 13.75 12C13.75 11.0335 12.9665 10.25 12 10.25Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M5.00098 12.4795C5.04811 15.3176 6.08482 18.1618 7.73242 21H3.5C3.22386 21 3 20.7761 3 20.5V15C3 14.8807 3.04257 14.7654 3.12012 14.6748L5.00098 12.4795Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M20.8799 14.6748C20.9574 14.7654 21 14.8807 21 15V20.5C21 20.7761 20.7761 21 20.5 21H16.2676C17.9152 18.1618 18.9509 15.3176 18.998 12.4795L20.8799 14.6748Z",fill:"currentColor"}))},w=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=2DB9ED77762503C264756E2164756E21
|
|
@@ -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.7568 2.06247C11.9324 1.96475 12.1538 1.98139 12.3145 2.11129C15.9681 5.07413 17.7425 8.19467 17.9736 11.5215C18.2032 14.827 16.9009 18.2355 14.623 21.7705C14.531 21.9132 14.3729 21.9999 14.2031 22H9.79688C9.62712 21.9998 9.46891 21.9132 9.37695 21.7705C7.09913 18.2355 5.79685 14.827 6.02637 11.5215C6.25746 8.1947 8.03201 5.07411 11.6855 2.11129L11.7568 2.06247ZM12 10.25C11.0336 10.2501 10.25 11.0335 10.25 12C10.25 12.9664 11.0336 13.7499 12 13.75C12.9665 13.75 13.75 12.9665 13.75 12C13.75 11.0335 12.9665 10.25 12 10.25Z\" fill=\"currentColor\"/><Path d=\"M5.00098 12.4795C5.04811 15.3176 6.08482 18.1618 7.73242 21H3.5C3.22386 21 3 20.7761 3 20.5V15C3 14.8807 3.04257 14.7654 3.12012 14.6748L5.00098 12.4795Z\" fill=\"currentColor\"/><Path d=\"M20.8799 14.6748C20.9574 14.7654 21 14.8807 21 15V20.5C21 20.7761 20.7761 21 20.5 21H16.2676C17.9152 18.1618 18.9509 15.3176 18.998 12.4795L20.8799 14.6748Z\" 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,wBAA0+B,EAA1+B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ohBAAohB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4JAA4J,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+JAA+J,KAAK,eAAc,CAAI,GAGp+B",
|
|
9
|
+
"debugId": "2DB9ED77762503C264756E2164756E21",
|
|
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.7568 2.06247C11.9324 1.96475 12.1538 1.98139 12.3145 2.11129C15.9681 5.07413 17.7425 8.19467 17.9736 11.5215C18.2032 14.827 16.9009 18.2355 14.623 21.7705C14.531 21.9132 14.3729 21.9999 14.2031 22H9.79688C9.62712 21.9998 9.46891 21.9132 9.37695 21.7705C7.09913 18.2355 5.79685 14.827 6.02637 11.5215C6.25746 8.1947 8.03201 5.07411 11.6855 2.11129L11.7568 2.06247ZM12 10.25C11.0336 10.2501 10.25 11.0335 10.25 12C10.25 12.9664 11.0336 13.7499 12 13.75C12.9665 13.75 13.75 12.9665 13.75 12C13.75 11.0335 12.9665 10.25 12 10.25Z",fill:"currentColor"}),o.createElement(C,{d:"M5.00098 12.4795C5.04811 15.3176 6.08482 18.1618 7.73242 21H3.5C3.22386 21 3 20.7761 3 20.5V15C3 14.8807 3.04257 14.7654 3.12012 14.6748L5.00098 12.4795Z",fill:"currentColor"}),o.createElement(C,{d:"M20.8799 14.6748C20.9574 14.7654 21 14.8807 21 15V20.5C21 20.7761 20.7761 21 20.5 21H16.2676C17.9152 18.1618 18.9509 15.3176 18.998 12.4795L20.8799 14.6748Z",fill:"currentColor"}))},x=a;export{x as default,a as IconRocket2};
|
|
2
|
+
|
|
3
|
+
//# debugId=88746A199067373364756E2164756E21
|
|
@@ -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.7568 2.06247C11.9324 1.96475 12.1538 1.98139 12.3145 2.11129C15.9681 5.07413 17.7425 8.19467 17.9736 11.5215C18.2032 14.827 16.9009 18.2355 14.623 21.7705C14.531 21.9132 14.3729 21.9999 14.2031 22H9.79688C9.62712 21.9998 9.46891 21.9132 9.37695 21.7705C7.09913 18.2355 5.79685 14.827 6.02637 11.5215C6.25746 8.1947 8.03201 5.07411 11.6855 2.11129L11.7568 2.06247ZM12 10.25C11.0336 10.2501 10.25 11.0335 10.25 12C10.25 12.9664 11.0336 13.7499 12 13.75C12.9665 13.75 13.75 12.9665 13.75 12C13.75 11.0335 12.9665 10.25 12 10.25Z\" fill=\"currentColor\"/><Path d=\"M5.00098 12.4795C5.04811 15.3176 6.08482 18.1618 7.73242 21H3.5C3.22386 21 3 20.7761 3 20.5V15C3 14.8807 3.04257 14.7654 3.12012 14.6748L5.00098 12.4795Z\" fill=\"currentColor\"/><Path d=\"M20.8799 14.6748C20.9574 14.7654 21 14.8807 21 15V20.5C21 20.7761 20.7761 21 20.5 21H16.2676C17.9152 18.1618 18.9509 15.3176 18.998 12.4795L20.8799 14.6748Z\" 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,gBAA0+B,EAA1+B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ohBAAohB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4JAA4J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+JAA+J,KAAK,eAAc,CAAI,GAGp+B",
|
|
9
|
+
"debugId": "88746A199067373364756E2164756E21",
|
|
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.41504 12.0977C4.66965 11.9562 4.9911 12.0482 5.13281 12.3027C5.2739 12.5573 5.18212 12.8789 4.92773 13.0205C3.79345 13.6523 3.02734 14.8628 3.02734 16.251C3.02784 18.2909 4.68258 19.9453 6.72266 19.9453C8.76254 19.9451 10.4165 18.2908 10.417 16.251C10.417 15.9595 10.6529 15.7227 10.9443 15.7227H15.5078C15.7348 14.9595 16.4415 14.4033 17.2783 14.4033C18.2983 14.4036 19.125 15.23 19.125 16.25C19.125 17.27 18.2983 18.0974 17.2783 18.0977C16.4418 18.0977 15.7351 17.541 15.5078 16.7783H11.4424C11.1796 19.1529 9.16722 21.0008 6.72266 21.001C4.09961 21.001 1.97315 18.8739 1.97266 16.251C1.97266 14.4644 2.95945 12.9081 4.41504 12.0977Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M12 4.90332C13.0202 4.90332 13.8476 5.72983 13.8477 6.75C13.8477 7.25264 13.646 7.70796 13.3203 8.04102L15.4463 11.8672C16.0103 11.6313 16.629 11.501 17.2773 11.501C19.9007 11.501 22.0273 13.6276 22.0273 16.251C22.0268 18.8739 19.9004 21.001 17.2773 21.001C16.4411 21.0009 15.6533 20.7838 14.9697 20.4033C14.7155 20.2616 14.6244 19.94 14.7656 19.6855C14.9074 19.4309 15.2287 19.3397 15.4834 19.4814C16.014 19.7768 16.6254 19.9452 17.2773 19.9453C19.3174 19.9453 20.9722 18.2909 20.9727 16.251C20.9727 14.2106 19.3177 12.5557 17.2773 12.5557C16.6253 12.5557 16.014 12.7251 15.4834 13.0205C15.3612 13.0884 15.2165 13.1047 15.082 13.0664C14.9476 13.028 14.8337 12.9376 14.7656 12.8154L12.3975 8.55273C12.2693 8.58085 12.1366 8.59766 12 8.59766C10.9798 8.59763 10.1533 7.77017 10.1533 6.75C10.1533 5.72985 10.9799 4.90335 12 4.90332Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M12 2C14.6234 2 16.75 4.12762 16.75 6.75098C16.7495 7.04189 16.5136 7.27809 16.2227 7.27832C15.9315 7.27832 15.6948 7.04204 15.6943 6.75098C15.6943 4.71059 14.0404 3.05566 12 3.05566C9.95961 3.05566 8.30566 4.71059 8.30566 6.75098C8.306 8.13901 9.07166 9.34988 10.2061 9.98145C10.4601 10.1233 10.5515 10.4438 10.4102 10.6982L8.04199 14.96C8.36757 15.293 8.56932 15.7475 8.56934 16.25C8.56934 17.27 7.74265 18.0974 6.72266 18.0977C5.70246 18.0977 4.875 17.2702 4.875 16.25C4.87503 15.2298 5.70248 14.4033 6.72266 14.4033C6.85914 14.4034 6.99207 14.4182 7.12012 14.4463L9.24609 10.6182C8.03971 9.75765 7.2503 8.34737 7.25 6.75098C7.25 4.12762 9.37665 2 12 2Z",fill:"currentColor"}))},H=h;
|
|
2
|
+
|
|
3
|
+
//# debugId=A99F7F2DADD43ED964756E2164756E21
|
|
@@ -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.41504 12.0977C4.66965 11.9562 4.9911 12.0482 5.13281 12.3027C5.2739 12.5573 5.18212 12.8789 4.92773 13.0205C3.79345 13.6523 3.02734 14.8628 3.02734 16.251C3.02784 18.2909 4.68258 19.9453 6.72266 19.9453C8.76254 19.9451 10.4165 18.2908 10.417 16.251C10.417 15.9595 10.6529 15.7227 10.9443 15.7227H15.5078C15.7348 14.9595 16.4415 14.4033 17.2783 14.4033C18.2983 14.4036 19.125 15.23 19.125 16.25C19.125 17.27 18.2983 18.0974 17.2783 18.0977C16.4418 18.0977 15.7351 17.541 15.5078 16.7783H11.4424C11.1796 19.1529 9.16722 21.0008 6.72266 21.001C4.09961 21.001 1.97315 18.8739 1.97266 16.251C1.97266 14.4644 2.95945 12.9081 4.41504 12.0977Z\" fill=\"currentColor\"/><Path d=\"M12 4.90332C13.0202 4.90332 13.8476 5.72983 13.8477 6.75C13.8477 7.25264 13.646 7.70796 13.3203 8.04102L15.4463 11.8672C16.0103 11.6313 16.629 11.501 17.2773 11.501C19.9007 11.501 22.0273 13.6276 22.0273 16.251C22.0268 18.8739 19.9004 21.001 17.2773 21.001C16.4411 21.0009 15.6533 20.7838 14.9697 20.4033C14.7155 20.2616 14.6244 19.94 14.7656 19.6855C14.9074 19.4309 15.2287 19.3397 15.4834 19.4814C16.014 19.7768 16.6254 19.9452 17.2773 19.9453C19.3174 19.9453 20.9722 18.2909 20.9727 16.251C20.9727 14.2106 19.3177 12.5557 17.2773 12.5557C16.6253 12.5557 16.014 12.7251 15.4834 13.0205C15.3612 13.0884 15.2165 13.1047 15.082 13.0664C14.9476 13.028 14.8337 12.9376 14.7656 12.8154L12.3975 8.55273C12.2693 8.58085 12.1366 8.59766 12 8.59766C10.9798 8.59763 10.1533 7.77017 10.1533 6.75C10.1533 5.72985 10.9799 4.90335 12 4.90332Z\" fill=\"currentColor\"/><Path d=\"M12 2C14.6234 2 16.75 4.12762 16.75 6.75098C16.7495 7.04189 16.5136 7.27809 16.2227 7.27832C15.9315 7.27832 15.6948 7.04204 15.6943 6.75098C15.6943 4.71059 14.0404 3.05566 12 3.05566C9.95961 3.05566 8.30566 4.71059 8.30566 6.75098C8.306 8.13901 9.07166 9.34988 10.2061 9.98145C10.4601 10.1233 10.5515 10.4438 10.4102 10.6982L8.04199 14.96C8.36757 15.293 8.56932 15.7475 8.56934 16.25C8.56934 17.27 7.74265 18.0974 6.72266 18.0977C5.70246 18.0977 4.875 17.2702 4.875 16.25C4.87503 15.2298 5.70248 14.4033 6.72266 14.4033C6.85914 14.4034 6.99207 14.4182 7.12012 14.4463L9.24609 10.6182C8.03971 9.75765 7.2503 8.34737 7.25 6.75098C7.25 4.12762 9.37665 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,wBAAysE,EAAzsE,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,ioBAAioB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,g0BAAg0B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mpBAAmpB,KAAK,eAAc,CAAI,GAGnsE",
|
|
9
|
+
"debugId": "A99F7F2DADD43ED964756E2164756E21",
|
|
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.41504 12.0977C4.66965 11.9562 4.9911 12.0482 5.13281 12.3027C5.2739 12.5573 5.18212 12.8789 4.92773 13.0205C3.79345 13.6523 3.02734 14.8628 3.02734 16.251C3.02784 18.2909 4.68258 19.9453 6.72266 19.9453C8.76254 19.9451 10.4165 18.2908 10.417 16.251C10.417 15.9595 10.6529 15.7227 10.9443 15.7227H15.5078C15.7348 14.9595 16.4415 14.4033 17.2783 14.4033C18.2983 14.4036 19.125 15.23 19.125 16.25C19.125 17.27 18.2983 18.0974 17.2783 18.0977C16.4418 18.0977 15.7351 17.541 15.5078 16.7783H11.4424C11.1796 19.1529 9.16722 21.0008 6.72266 21.001C4.09961 21.001 1.97315 18.8739 1.97266 16.251C1.97266 14.4644 2.95945 12.9081 4.41504 12.0977Z",fill:"currentColor"}),r.createElement(t,{d:"M12 4.90332C13.0202 4.90332 13.8476 5.72983 13.8477 6.75C13.8477 7.25264 13.646 7.70796 13.3203 8.04102L15.4463 11.8672C16.0103 11.6313 16.629 11.501 17.2773 11.501C19.9007 11.501 22.0273 13.6276 22.0273 16.251C22.0268 18.8739 19.9004 21.001 17.2773 21.001C16.4411 21.0009 15.6533 20.7838 14.9697 20.4033C14.7155 20.2616 14.6244 19.94 14.7656 19.6855C14.9074 19.4309 15.2287 19.3397 15.4834 19.4814C16.014 19.7768 16.6254 19.9452 17.2773 19.9453C19.3174 19.9453 20.9722 18.2909 20.9727 16.251C20.9727 14.2106 19.3177 12.5557 17.2773 12.5557C16.6253 12.5557 16.014 12.7251 15.4834 13.0205C15.3612 13.0884 15.2165 13.1047 15.082 13.0664C14.9476 13.028 14.8337 12.9376 14.7656 12.8154L12.3975 8.55273C12.2693 8.58085 12.1366 8.59766 12 8.59766C10.9798 8.59763 10.1533 7.77017 10.1533 6.75C10.1533 5.72985 10.9799 4.90335 12 4.90332Z",fill:"currentColor"}),r.createElement(t,{d:"M12 2C14.6234 2 16.75 4.12762 16.75 6.75098C16.7495 7.04189 16.5136 7.27809 16.2227 7.27832C15.9315 7.27832 15.6948 7.04204 15.6943 6.75098C15.6943 4.71059 14.0404 3.05566 12 3.05566C9.95961 3.05566 8.30566 4.71059 8.30566 6.75098C8.306 8.13901 9.07166 9.34988 10.2061 9.98145C10.4601 10.1233 10.5515 10.4438 10.4102 10.6982L8.04199 14.96C8.36757 15.293 8.56932 15.7475 8.56934 16.25C8.56934 17.27 7.74265 18.0974 6.72266 18.0977C5.70246 18.0977 4.875 17.2702 4.875 16.25C4.87503 15.2298 5.70248 14.4033 6.72266 14.4033C6.85914 14.4034 6.99207 14.4182 7.12012 14.4463L9.24609 10.6182C8.03971 9.75765 7.2503 8.34737 7.25 6.75098C7.25 4.12762 9.37665 2 12 2Z",fill:"currentColor"}))},g=a;export{g as default,a as IconWebhooks};
|
|
2
|
+
|
|
3
|
+
//# debugId=6EAFD03311636BD364756E2164756E21
|
|
@@ -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.41504 12.0977C4.66965 11.9562 4.9911 12.0482 5.13281 12.3027C5.2739 12.5573 5.18212 12.8789 4.92773 13.0205C3.79345 13.6523 3.02734 14.8628 3.02734 16.251C3.02784 18.2909 4.68258 19.9453 6.72266 19.9453C8.76254 19.9451 10.4165 18.2908 10.417 16.251C10.417 15.9595 10.6529 15.7227 10.9443 15.7227H15.5078C15.7348 14.9595 16.4415 14.4033 17.2783 14.4033C18.2983 14.4036 19.125 15.23 19.125 16.25C19.125 17.27 18.2983 18.0974 17.2783 18.0977C16.4418 18.0977 15.7351 17.541 15.5078 16.7783H11.4424C11.1796 19.1529 9.16722 21.0008 6.72266 21.001C4.09961 21.001 1.97315 18.8739 1.97266 16.251C1.97266 14.4644 2.95945 12.9081 4.41504 12.0977Z\" fill=\"currentColor\"/><Path d=\"M12 4.90332C13.0202 4.90332 13.8476 5.72983 13.8477 6.75C13.8477 7.25264 13.646 7.70796 13.3203 8.04102L15.4463 11.8672C16.0103 11.6313 16.629 11.501 17.2773 11.501C19.9007 11.501 22.0273 13.6276 22.0273 16.251C22.0268 18.8739 19.9004 21.001 17.2773 21.001C16.4411 21.0009 15.6533 20.7838 14.9697 20.4033C14.7155 20.2616 14.6244 19.94 14.7656 19.6855C14.9074 19.4309 15.2287 19.3397 15.4834 19.4814C16.014 19.7768 16.6254 19.9452 17.2773 19.9453C19.3174 19.9453 20.9722 18.2909 20.9727 16.251C20.9727 14.2106 19.3177 12.5557 17.2773 12.5557C16.6253 12.5557 16.014 12.7251 15.4834 13.0205C15.3612 13.0884 15.2165 13.1047 15.082 13.0664C14.9476 13.028 14.8337 12.9376 14.7656 12.8154L12.3975 8.55273C12.2693 8.58085 12.1366 8.59766 12 8.59766C10.9798 8.59763 10.1533 7.77017 10.1533 6.75C10.1533 5.72985 10.9799 4.90335 12 4.90332Z\" fill=\"currentColor\"/><Path d=\"M12 2C14.6234 2 16.75 4.12762 16.75 6.75098C16.7495 7.04189 16.5136 7.27809 16.2227 7.27832C15.9315 7.27832 15.6948 7.04204 15.6943 6.75098C15.6943 4.71059 14.0404 3.05566 12 3.05566C9.95961 3.05566 8.30566 4.71059 8.30566 6.75098C8.306 8.13901 9.07166 9.34988 10.2061 9.98145C10.4601 10.1233 10.5515 10.4438 10.4102 10.6982L8.04199 14.96C8.36757 15.293 8.56932 15.7475 8.56934 16.25C8.56934 17.27 7.74265 18.0974 6.72266 18.0977C5.70246 18.0977 4.875 17.2702 4.875 16.25C4.87503 15.2298 5.70248 14.4033 6.72266 14.4033C6.85914 14.4034 6.99207 14.4182 7.12012 14.4463L9.24609 10.6182C8.03971 9.75765 7.2503 8.34737 7.25 6.75098C7.25 4.12762 9.37665 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,gBAAysE,EAAzsE,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,ioBAAioB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,g0BAAg0B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mpBAAmpB,KAAK,eAAc,CAAI,GAGnsE",
|
|
9
|
+
"debugId": "6EAFD03311636BD364756E2164756E21",
|
|
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
|
|