@central-icons-react-native/round-outlined-radius-1-stroke-2 1.1.269 → 1.1.271
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/IconFistbump/index.js +2 -2
- package/IconFistbump/index.js.map +3 -3
- package/IconFistbump/index.mjs +2 -2
- package/IconFistbump/index.mjs.map +3 -3
- package/IconHandTouch/index.d.ts +4 -0
- package/IconHandTouch/index.js +3 -0
- package/IconHandTouch/index.js.map +11 -0
- package/IconHandTouch/index.mjs +3 -0
- package/IconHandTouch/index.mjs.map +11 -0
- package/IconMagicHands/index.js +2 -2
- package/IconMagicHands/index.js.map +3 -3
- package/IconMagicHands/index.mjs +2 -2
- package/IconMagicHands/index.mjs.map +3 -3
- package/IconPinch/index.js +2 -2
- package/IconPinch/index.js.map +3 -3
- package/IconPinch/index.mjs +2 -2
- package/IconPinch/index.mjs.map +3 -3
- 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/IconScript/index.js +2 -2
- package/IconScript/index.js.map +3 -3
- package/IconScript/index.mjs +2 -2
- package/IconScript/index.mjs.map +3 -3
- package/IconScript2/index.js +2 -2
- package/IconScript2/index.js.map +3 -3
- package/IconScript2/index.mjs +2 -2
- package/IconScript2/index.mjs.map +3 -3
- package/IconTouch/index.js +2 -2
- package/IconTouch/index.js.map +3 -3
- package/IconTouch/index.mjs +2 -2
- package/IconTouch/index.mjs.map +3 -3
- 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
package/IconScript2/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:r=24,...p})=>{return s.createElement(C,{...p,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 i=(e)=>{return o.createElement(n,{...e},o.createElement(t,{d:"M7 20H5.5C4.39543 20 3.5 19.1046 3.5 18V17C3.5 16.4477 3.94772 16 4.5 16H12.5C13.0523 16 13.5 16.4477 13.5 17V18.25C13.5 19.2165 14.2835 20 15.25 20C16.2165 20 17 19.2165 17 18.25V5.75C17 4.7835 17.7835 4 18.75 4C19.7165 4 20.5 4.7835 20.5 5.75V8C20.5 8.55228 20.0523 9 19.5 9H17.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M19 4H8C6.89543 4 6 4.89543 6 6V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M15 20H6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},h=i;export{h as default,i as IconScript2};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=4E896A4C6402114364756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconScript2/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
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 IconScript2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M7
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconScript2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M7 20H5.5C4.39543 20 3.5 19.1046 3.5 18V17C3.5 16.4477 3.94772 16 4.5 16H12.5C13.0523 16 13.5 16.4477 13.5 17V18.25C13.5 19.2165 14.2835 20 15.25 20C16.2165 20 17 19.2165 17 18.25V5.75C17 4.7835 17.7835 4 18.75 4C19.7165 4 20.5 4.7835 20.5 5.75V8C20.5 8.55228 20.0523 9 19.5 9H17.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M19 4H8C6.89543 4 6 4.89543 6 6V16\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M15 20H6\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
|
|
7
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,
|
|
9
|
-
"debugId": "
|
|
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,gBAA8nB,EAA9nB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,4RAA4R,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,qCAAqC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGxnB",
|
|
9
|
+
"debugId": "4E896A4C6402114364756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconTouch/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:L,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:v}=Object,d=Object.prototype.hasOwnProperty;function f(r){return this[r]}var y,F,B=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?y??=new WeakMap:F??=new WeakMap,i=m.get(r);if(i)return i}t=r!=null?g(L(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let s of u(r))if(!d.call(p,s))n(p,s,{get:f.bind(r,s),enumerable:!0});if(e)m.set(r,p);return p},I=(r)=>{var o=(l??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of u(r))if(!d.call(o,e))n(o,e,{get:f.bind(r,e),enumerable:!(t=v(r,e))||t.enumerable})}return l.set(r,o),o},l;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var h=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:b.bind(o,t)})};var V={};h(V,{CentralIconBase:()=>a});module.exports=I(V);var k=B(require("react")),x=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return k.default.createElement(x.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={};h(w,{default:()=>H,IconTouch:()=>P});module.exports=I(w);var C=B(require("react"));var c=require("react-native-svg"),P=(r)=>{return C.default.createElement(a,{...r},C.default.createElement(c.Path,{d:"M13 9V12H16C17.6569 12 19 13.3431 19 15V16C19 18.7614 16.7614 21 14 21H13.1407C11.8033 21 10.5544 20.3316 9.81253 19.2188L7 15L7.19275 14.5181C7.6273 13.4317 8.89757 12.9488 9.94413 13.4721L10 13.5V9C10 8.17157 10.6716 7.5 11.5 7.5C12.3284 7.5 13 8.17157 13 9Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(c.Path,{d:"M17.417 8C16.941 5.16229 14.473 3 11.5 3C8.18629 3 5.5 5.68629 5.5 9C5.5 9.34071 5.5284 9.67479 5.58296 10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))},H=P;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=1EABEC787E8BAE6064756E2164756E21
|
package/IconTouch/index.js.map
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconTouch/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
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 IconTouch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M13
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconTouch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M13 9V12H16C17.6569 12 19 13.3431 19 15V16C19 18.7614 16.7614 21 14 21H13.1407C11.8033 21 10.5544 20.3316 9.81253 19.2188L7 15L7.19275 14.5181C7.6273 13.4317 8.89757 12.9488 9.94413 13.4721L10 13.5V9C10 8.17157 10.6716 7.5 11.5 7.5C12.3284 7.5 13 8.17157 13 9Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M17.417 8C16.941 5.16229 14.473 3 11.5 3C8.18629 3 5.5 5.68629 5.5 9C5.5 9.34071 5.5284 9.67479 5.58296 10\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconTouch;\n"
|
|
7
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,qECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,
|
|
9
|
-
"debugId": "
|
|
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,qECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAAmjB,EAAnjB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,uQAAuQ,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,6GAA6G,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,GAG7iB",
|
|
9
|
+
"debugId": "1EABEC787E8BAE6064756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconTouch/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import C from"react";import{Svg as s}from"react-native-svg";var e=({children:o,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"},o)};import t from"react";import{Path as n}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(n,{d:"M13 9V12H16C17.6569 12 19 13.3431 19 15V16C19 18.7614 16.7614 21 14 21H13.1407C11.8033 21 10.5544 20.3316 9.81253 19.2188L7 15L7.19275 14.5181C7.6273 13.4317 8.89757 12.9488 9.94413 13.4721L10 13.5V9C10 8.17157 10.6716 7.5 11.5 7.5C12.3284 7.5 13 8.17157 13 9Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(n,{d:"M17.417 8C16.941 5.16229 14.473 3 11.5 3C8.18629 3 5.5 5.68629 5.5 9C5.5 9.34071 5.5284 9.67479 5.58296 10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))},k=a;export{k as default,a as IconTouch};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=9350C84042E4996164756E2164756E21
|
package/IconTouch/index.mjs.map
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconTouch/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
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 IconTouch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M13
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconTouch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M13 9V12H16C17.6569 12 19 13.3431 19 15V16C19 18.7614 16.7614 21 14 21H13.1407C11.8033 21 10.5544 20.3316 9.81253 19.2188L7 15L7.19275 14.5181C7.6273 13.4317 8.89757 12.9488 9.94413 13.4721L10 13.5V9C10 8.17157 10.6716 7.5 11.5 7.5C12.3284 7.5 13 8.17157 13 9Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M17.417 8C16.941 5.16229 14.473 3 11.5 3C8.18629 3 5.5 5.68629 5.5 9C5.5 9.34071 5.5284 9.67479 5.58296 10\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconTouch;\n"
|
|
7
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,EAAsC,CAAC,IAAU,CAC5D,OAAO,
|
|
9
|
-
"debugId": "
|
|
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,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAAmjB,EAAnjB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,uQAAuQ,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,6GAA6G,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,GAG7iB",
|
|
9
|
+
"debugId": "9350C84042E4996164756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:L,defineProperty:p,getOwnPropertyNames:f,getOwnPropertyDescriptor:k}=Object,u=Object.prototype.hasOwnProperty;function x(r){return this[r]}var v,b,B=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var i=o?v??=new WeakMap:b??=new WeakMap,a=i.get(r);if(a)return a}e=r!=null?h(L(r)):{};let l=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let c of f(r))if(!u.call(l,c))p(l,c,{get:x.bind(r,c),enumerable:!0});if(n)i.set(r,l);return l},I=(r)=>{var o=(m??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of f(r))if(!u.call(o,n))p(o,n,{get:x.bind(r,n),enumerable:!(e=k(r,n))||e.enumerable})}return m.set(r,o),o},m;var F=(r)=>r;function S(r,o){this[r]=F.bind(null,o)}var y=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var M={};y(M,{CentralIconBase:()=>s});module.exports=I(M);var P=B(require("react")),d=require("react-native-svg"),s=({children:r,size:o=24,...e})=>{return P.default.createElement(d.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={};y(w,{default:()=>W,IconWebhooks:()=>g});module.exports=I(w);var t=B(require("react"));var C=require("react-native-svg"),g=(r)=>{return t.default.createElement(s,{...r},t.default.createElement(C.Circle,{cx:"12",cy:"7",r:"1.75",fill:"currentColor"}),t.default.createElement(C.Circle,{cx:"7",cy:"16",r:"1.75",fill:"currentColor"}),t.default.createElement(C.Circle,{cx:"17",cy:"16",r:"1.75",fill:"currentColor"}),t.default.createElement(C.Path,{d:"M16 7C16 4.79086 14.2091 3 12 3C9.79086 3 8 4.79086 8 7C8 8.14562 8.48161 9.17875 9.25341 9.90798C9.65459 10.287 9.83991 10.8882 9.57187 11.3706L8.94292 12.5027L7 16M12 7L13.9429 10.4973L14.571 11.6278C14.8394 12.1109 15.4487 12.2704 15.9833 12.1304C16.3079 12.0453 16.6487 12 17 12C19.2091 12 21 13.7909 21 16C21 18.2091 19.2091 20 17 20C16.2949 20 15.6323 19.8175 15.0571 19.4973M17 16H12C11.4477 16 11.0128 16.4547 10.8766 16.9899C10.4361 18.7202 8.86748 20 7 20C4.79086 20 3 18.2091 3 16C3 14.496 3.83007 13.1859 5.05708 12.5027",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},W=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=BDF4806612F5A1FB64756E2164756E21
|
|
@@ -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=\"12\" cy=\"7\" r=\"1.75\" fill=\"currentColor\"/><Circle cx=\"7\" cy=\"16\" r=\"1.75\" fill=\"currentColor\"/><Circle cx=\"17\" cy=\"16\" r=\"1.75\" fill=\"currentColor\"/><Path d=\"M16 7C16 4.79086 14.2091 3 12 3C9.79086 3 8 4.79086 8 7C8 8.14562 8.48161 9.17875 9.25341 9.90798C9.65459 10.287 9.83991 10.8882 9.57187 11.3706L8.94292 12.5027L7 16M12 7L13.9429 10.4973L14.571 11.6278C14.8394 12.1109 15.4487 12.2704 15.9833 12.1304C16.3079 12.0453 16.6487 12 17 12C19.2091 12 21 13.7909 21 16C21 18.2091 19.2091 20 17 20C16.2949 20 15.6323 19.8175 15.0571 19.4973M17 16H12C11.4477 16 11.0128 16.4547 10.8766 16.9899C10.4361 18.7202 8.86748 20 7 20C4.79086 20 3 18.2091 3 16C3 14.496 3.83007 13.1859 5.05708 12.5027\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAAizB,EAAjzB,IAAqB,GAAO,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,IAAI,EAAE,OAAO,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,IAAI,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uhBAAuhB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3yB",
|
|
9
|
+
"debugId": "BDF4806612F5A1FB64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var t=({children:e,size:r=24,...C})=>{return p.createElement(l,{...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{Circle as n,Path as c}from"react-native-svg";var s=(e)=>{return o.createElement(t,{...e},o.createElement(n,{cx:"12",cy:"7",r:"1.75",fill:"currentColor"}),o.createElement(n,{cx:"7",cy:"16",r:"1.75",fill:"currentColor"}),o.createElement(n,{cx:"17",cy:"16",r:"1.75",fill:"currentColor"}),o.createElement(c,{d:"M16 7C16 4.79086 14.2091 3 12 3C9.79086 3 8 4.79086 8 7C8 8.14562 8.48161 9.17875 9.25341 9.90798C9.65459 10.287 9.83991 10.8882 9.57187 11.3706L8.94292 12.5027L7 16M12 7L13.9429 10.4973L14.571 11.6278C14.8394 12.1109 15.4487 12.2704 15.9833 12.1304C16.3079 12.0453 16.6487 12 17 12C19.2091 12 21 13.7909 21 16C21 18.2091 19.2091 20 17 20C16.2949 20 15.6323 19.8175 15.0571 19.4973M17 16H12C11.4477 16 11.0128 16.4547 10.8766 16.9899C10.4361 18.7202 8.86748 20 7 20C4.79086 20 3 18.2091 3 16C3 14.496 3.83007 13.1859 5.05708 12.5027",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},d=s;export{d as default,s as IconWebhooks};
|
|
2
|
+
|
|
3
|
+
//# debugId=2AB09C87A0A9009A64756E2164756E21
|
|
@@ -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=\"12\" cy=\"7\" r=\"1.75\" fill=\"currentColor\"/><Circle cx=\"7\" cy=\"16\" r=\"1.75\" fill=\"currentColor\"/><Circle cx=\"17\" cy=\"16\" r=\"1.75\" fill=\"currentColor\"/><Path d=\"M16 7C16 4.79086 14.2091 3 12 3C9.79086 3 8 4.79086 8 7C8 8.14562 8.48161 9.17875 9.25341 9.90798C9.65459 10.287 9.83991 10.8882 9.57187 11.3706L8.94292 12.5027L7 16M12 7L13.9429 10.4973L14.571 11.6278C14.8394 12.1109 15.4487 12.2704 15.9833 12.1304C16.3079 12.0453 16.6487 12 17 12C19.2091 12 21 13.7909 21 16C21 18.2091 19.2091 20 17 20C16.2949 20 15.6323 19.8175 15.0571 19.4973M17 16H12C11.4477 16 11.0128 16.4547 10.8766 16.9899C10.4361 18.7202 8.86748 20 7 20C4.79086 20 3 18.2091 3 16C3 14.496 3.83007 13.1859 5.05708 12.5027\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAAizB,EAAjzB,IAAqB,GAAO,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,IAAI,EAAE,OAAO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,IAAI,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uhBAAuhB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3yB",
|
|
9
|
+
"debugId": "2AB09C87A0A9009A64756E2164756E21",
|
|
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
|
|
|
@@ -1071,6 +1072,7 @@ Below is a complete list of available icons:
|
|
|
1071
1072
|
- IconHandshake
|
|
1072
1073
|
- IconBecepsLeftArm
|
|
1073
1074
|
- IconBecepsRightArm
|
|
1075
|
+
- IconHandTouch
|
|
1074
1076
|
|
|
1075
1077
|
### Health & Medical
|
|
1076
1078
|
|
|
@@ -2230,6 +2232,7 @@ Below is a complete list of available icons:
|
|
|
2230
2232
|
- IconSteeringWheel1
|
|
2231
2233
|
- IconBoat
|
|
2232
2234
|
- IconCarTaxi
|
|
2235
|
+
- IconRocket2
|
|
2233
2236
|
|
|
2234
2237
|
### Vehicles & Aircrafts
|
|
2235
2238
|
|