@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.260 → 1.1.262

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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPipe: FC<CentralIconBaseProps>;
4
+ export default IconPipe;
@@ -0,0 +1,3 @@
1
+ var d=Object.create;var{getPrototypeOf:v,defineProperty:e,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,H=Object.prototype.hasOwnProperty;function u(r){return this[r]}var y,F,B=(r,o,C)=>{var t=r!=null&&typeof r==="object";if(t){var f=o?y??=new WeakMap:F??=new WeakMap,s=f.get(r);if(s)return s}C=r!=null?d(v(r)):{};let p=o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C;for(let a of i(r))if(!H.call(p,a))e(p,a,{get:u.bind(r,a),enumerable:!0});if(t)f.set(r,p);return p},I=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=e({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of i(r))if(!H.call(o,t))e(o,t,{get:u.bind(r,t),enumerable:!(C=h(r,t))||C.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var P=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0,configurable:!0,set:b.bind(o,C)})};var M={};P(M,{CentralIconBase:()=>m});module.exports=I(M);var V=B(require("react")),x=require("react-native-svg"),m=({children:r,size:o=24,...C})=>{return V.default.createElement(x.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var Z={};P(Z,{default:()=>w,IconPipe:()=>g});module.exports=I(Z);var n=B(require("react"));var l=require("react-native-svg"),g=(r)=>{return n.default.createElement(m,{...r},n.default.createElement(l.Path,{d:"M9 20H10V11H19V20H21C21.2761 20 21.5 20.2239 21.5 20.5C21.5 20.7761 21.2761 21 21 21H3C2.72386 21 2.5 20.7761 2.5 20.5C2.5 20.2239 2.72386 20 3 20H5V11H9V20Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M7 10H5.90039C5.4886 10 5.14924 10 4.87402 9.97754C4.59301 9.95457 4.33444 9.90586 4.0918 9.78223C3.71554 9.59049 3.40951 9.28446 3.21777 8.9082C3.09414 8.66556 3.04543 8.40699 3.02246 8.12598C2.99998 7.85076 3 7.5114 3 7.09961V5.90039C3 5.4886 2.99998 5.14924 3.02246 4.87402C3.04543 4.59301 3.09414 4.33444 3.21777 4.0918C3.40951 3.71554 3.71554 3.40951 4.0918 3.21777C4.33444 3.09414 4.59301 3.04543 4.87402 3.02246C5.14924 2.99998 5.4886 3 5.90039 3H7V10Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M18.0996 3C18.5114 3 18.8508 2.99998 19.126 3.02246C19.407 3.04543 19.6656 3.09414 19.9082 3.21777C20.2845 3.40951 20.5905 3.71554 20.7822 4.0918C20.9059 4.33444 20.9546 4.59301 20.9775 4.87402C21 5.14924 21 5.4886 21 5.90039V7.09961C21 7.5114 21 7.85076 20.9775 8.12598C20.9546 8.40699 20.9059 8.66556 20.7822 8.9082C20.5905 9.28446 20.2845 9.59049 19.9082 9.78223C19.6656 9.90586 19.407 9.95457 19.126 9.97754C18.8508 10 18.5114 10 18.0996 10H8V3H18.0996Z",fill:"currentColor"}))},w=g;
2
+
3
+ //# debugId=E3D2C2F3EB0761E464756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconPipe/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 IconPipe: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M9 20H10V11H19V20H21C21.2761 20 21.5 20.2239 21.5 20.5C21.5 20.7761 21.2761 21 21 21H3C2.72386 21 2.5 20.7761 2.5 20.5C2.5 20.2239 2.72386 20 3 20H5V11H9V20Z\" fill=\"currentColor\"/><Path d=\"M7 10H5.90039C5.4886 10 5.14924 10 4.87402 9.97754C4.59301 9.95457 4.33444 9.90586 4.0918 9.78223C3.71554 9.59049 3.40951 9.28446 3.21777 8.9082C3.09414 8.66556 3.04543 8.40699 3.02246 8.12598C2.99998 7.85076 3 7.5114 3 7.09961V5.90039C3 5.4886 2.99998 5.14924 3.02246 4.87402C3.04543 4.59301 3.09414 4.33444 3.21777 4.0918C3.40951 3.71554 3.71554 3.40951 4.0918 3.21777C4.33444 3.09414 4.59301 3.04543 4.87402 3.02246C5.14924 2.99998 5.4886 3 5.90039 3H7V10Z\" fill=\"currentColor\"/><Path d=\"M18.0996 3C18.5114 3 18.8508 2.99998 19.126 3.02246C19.407 3.04543 19.6656 3.09414 19.9082 3.21777C20.2845 3.40951 20.5905 3.71554 20.7822 4.0918C20.9059 4.33444 20.9546 4.59301 20.9775 4.87402C21 5.14924 21 5.4886 21 5.90039V7.09961C21 7.5114 21 7.85076 20.9775 8.12598C20.9546 8.40699 20.9059 8.66556 20.7822 8.9082C20.5905 9.28446 20.2845 9.59049 19.9082 9.78223C19.6656 9.90586 19.407 9.95457 19.126 9.97754C18.8508 10 18.5114 10 18.0996 10H8V3H18.0996Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPipe;\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,oECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqC,CAAC,IAAU,CAC3D,OAAO,wBAA+qC,EAA/qC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gKAAgK,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8cAA8c,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4cAA4c,KAAK,eAAc,CAAI,GAGzqC",
9
+ "debugId": "E3D2C2F3EB0761E464756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var e=({children:C,size:r=24,...n})=>{return p.createElement(l,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};import o from"react";import{Path as t}from"react-native-svg";var a=(C)=>{return o.createElement(e,{...C},o.createElement(t,{d:"M9 20H10V11H19V20H21C21.2761 20 21.5 20.2239 21.5 20.5C21.5 20.7761 21.2761 21 21 21H3C2.72386 21 2.5 20.7761 2.5 20.5C2.5 20.2239 2.72386 20 3 20H5V11H9V20Z",fill:"currentColor"}),o.createElement(t,{d:"M7 10H5.90039C5.4886 10 5.14924 10 4.87402 9.97754C4.59301 9.95457 4.33444 9.90586 4.0918 9.78223C3.71554 9.59049 3.40951 9.28446 3.21777 8.9082C3.09414 8.66556 3.04543 8.40699 3.02246 8.12598C2.99998 7.85076 3 7.5114 3 7.09961V5.90039C3 5.4886 2.99998 5.14924 3.02246 4.87402C3.04543 4.59301 3.09414 4.33444 3.21777 4.0918C3.40951 3.71554 3.71554 3.40951 4.0918 3.21777C4.33444 3.09414 4.59301 3.04543 4.87402 3.02246C5.14924 2.99998 5.4886 3 5.90039 3H7V10Z",fill:"currentColor"}),o.createElement(t,{d:"M18.0996 3C18.5114 3 18.8508 2.99998 19.126 3.02246C19.407 3.04543 19.6656 3.09414 19.9082 3.21777C20.2845 3.40951 20.5905 3.71554 20.7822 4.0918C20.9059 4.33444 20.9546 4.59301 20.9775 4.87402C21 5.14924 21 5.4886 21 5.90039V7.09961C21 7.5114 21 7.85076 20.9775 8.12598C20.9546 8.40699 20.9059 8.66556 20.7822 8.9082C20.5905 9.28446 20.2845 9.59049 19.9082 9.78223C19.6656 9.90586 19.407 9.95457 19.126 9.97754C18.8508 10 18.5114 10 18.0996 10H8V3H18.0996Z",fill:"currentColor"}))},V=a;export{V as default,a as IconPipe};
2
+
3
+ //# debugId=5C6CE89FC407916364756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconPipe/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 IconPipe: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M9 20H10V11H19V20H21C21.2761 20 21.5 20.2239 21.5 20.5C21.5 20.7761 21.2761 21 21 21H3C2.72386 21 2.5 20.7761 2.5 20.5C2.5 20.2239 2.72386 20 3 20H5V11H9V20Z\" fill=\"currentColor\"/><Path d=\"M7 10H5.90039C5.4886 10 5.14924 10 4.87402 9.97754C4.59301 9.95457 4.33444 9.90586 4.0918 9.78223C3.71554 9.59049 3.40951 9.28446 3.21777 8.9082C3.09414 8.66556 3.04543 8.40699 3.02246 8.12598C2.99998 7.85076 3 7.5114 3 7.09961V5.90039C3 5.4886 2.99998 5.14924 3.02246 4.87402C3.04543 4.59301 3.09414 4.33444 3.21777 4.0918C3.40951 3.71554 3.71554 3.40951 4.0918 3.21777C4.33444 3.09414 4.59301 3.04543 4.87402 3.02246C5.14924 2.99998 5.4886 3 5.90039 3H7V10Z\" fill=\"currentColor\"/><Path d=\"M18.0996 3C18.5114 3 18.8508 2.99998 19.126 3.02246C19.407 3.04543 19.6656 3.09414 19.9082 3.21777C20.2845 3.40951 20.5905 3.71554 20.7822 4.0918C20.9059 4.33444 20.9546 4.59301 20.9775 4.87402C21 5.14924 21 5.4886 21 5.90039V7.09961C21 7.5114 21 7.85076 20.9775 8.12598C20.9546 8.40699 20.9059 8.66556 20.7822 8.9082C20.5905 9.28446 20.2845 9.59049 19.9082 9.78223C19.6656 9.90586 19.407 9.95457 19.126 9.97754C18.8508 10 18.5114 10 18.0996 10H8V3H18.0996Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPipe;\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,EAAqC,CAAC,IAAU,CAC3D,OAAO,gBAA+qC,EAA/qC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gKAAgK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8cAA8c,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4cAA4c,KAAK,eAAc,CAAI,GAGzqC",
9
+ "debugId": "5C6CE89FC407916364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconTorch: FC<CentralIconBaseProps>;
4
+ export default IconTorch;
@@ -0,0 +1,3 @@
1
+ var g=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:L,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var F,S,d=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var c=o?F??=new WeakMap:S??=new WeakMap,f=c.get(r);if(f)return f}e=r!=null?g(h(r)):{};let C=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let l of L(r))if(!i.call(C,l))t(C,l,{get:u.bind(r,l),enumerable:!0});if(n)c.set(r,C);return C},B=(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 L(r))if(!i.call(o,n))t(o,n,{get:u.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return s.set(r,o),o},s;var b=(r)=>r;function M(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var Z={};I(Z,{CentralIconBase:()=>a});module.exports=B(Z);var v=d(require("react")),x=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return v.default.createElement(x.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={};I(w,{default:()=>$,IconTorch:()=>P});module.exports=B(w);var p=d(require("react"));var m=require("react-native-svg"),P=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.8969 14.6026C18.5058 14.9155 18.0284 15.1063 17.5248 15.1417L15.1215 15.3097C14.7669 15.3345 14.4316 15.4872 14.1801 15.7384L8.83828 21.0802C7.87138 22.0471 6.3042 22.0471 5.3373 21.0802L2.92031 18.6632C1.95376 17.6963 1.95353 16.129 2.92031 15.1622L8.26211 9.82041C8.51333 9.5689 8.66597 9.23364 8.69082 8.879L8.85879 6.47568C8.89426 5.97221 9.08412 5.49364 9.39687 5.10264L18.8969 14.6026ZM12.1049 11.8966C11.9097 11.7017 11.593 11.7016 11.3979 11.8966L9.39785 13.8966C9.20271 14.0918 9.20288 14.4083 9.39785 14.6036C9.59313 14.7986 9.90972 14.7987 10.1049 14.6036L12.1049 12.6036C12.2998 12.4084 12.2998 12.0918 12.1049 11.8966Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M11.808 2.66807C12.7748 1.70187 14.3432 1.70171 15.31 2.66807L21.3324 8.69053C22.2991 9.65723 22.2987 11.2255 21.3324 12.1925L19.6166 13.9083L10.0922 4.38389L11.808 2.66807Z",fill:"currentColor"}))},$=P;
2
+
3
+ //# debugId=3BB196C9E28F074564756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconTorch/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 IconTorch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.8969 14.6026C18.5058 14.9155 18.0284 15.1063 17.5248 15.1417L15.1215 15.3097C14.7669 15.3345 14.4316 15.4872 14.1801 15.7384L8.83828 21.0802C7.87138 22.0471 6.3042 22.0471 5.3373 21.0802L2.92031 18.6632C1.95376 17.6963 1.95353 16.129 2.92031 15.1622L8.26211 9.82041C8.51333 9.5689 8.66597 9.23364 8.69082 8.879L8.85879 6.47568C8.89426 5.97221 9.08412 5.49364 9.39687 5.10264L18.8969 14.6026ZM12.1049 11.8966C11.9097 11.7017 11.593 11.7016 11.3979 11.8966L9.39785 13.8966C9.20271 14.0918 9.20288 14.4083 9.39785 14.6036C9.59313 14.7986 9.90972 14.7987 10.1049 14.6036L12.1049 12.6036C12.2998 12.4084 12.2998 12.0918 12.1049 11.8966Z\" fill=\"currentColor\"/><Path d=\"M11.808 2.66807C12.7748 1.70187 14.3432 1.70171 15.31 2.66807L21.3324 8.69053C22.2991 9.65723 22.2987 11.2255 21.3324 12.1925L19.6166 13.9083L10.0922 4.38389L11.808 2.66807Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTorch;\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,qECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAA46B,EAA56B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8nBAA8nB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,gLAAgL,KAAK,eAAc,CAAI,GAGt6B",
9
+ "debugId": "3BB196C9E28F074564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,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"},o)};import e from"react";import{Path as t}from"react-native-svg";var a=(o)=>{return e.createElement(n,{...o},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.8969 14.6026C18.5058 14.9155 18.0284 15.1063 17.5248 15.1417L15.1215 15.3097C14.7669 15.3345 14.4316 15.4872 14.1801 15.7384L8.83828 21.0802C7.87138 22.0471 6.3042 22.0471 5.3373 21.0802L2.92031 18.6632C1.95376 17.6963 1.95353 16.129 2.92031 15.1622L8.26211 9.82041C8.51333 9.5689 8.66597 9.23364 8.69082 8.879L8.85879 6.47568C8.89426 5.97221 9.08412 5.49364 9.39687 5.10264L18.8969 14.6026ZM12.1049 11.8966C11.9097 11.7017 11.593 11.7016 11.3979 11.8966L9.39785 13.8966C9.20271 14.0918 9.20288 14.4083 9.39785 14.6036C9.59313 14.7986 9.90972 14.7987 10.1049 14.6036L12.1049 12.6036C12.2998 12.4084 12.2998 12.0918 12.1049 11.8966Z",fill:"currentColor"}),e.createElement(t,{d:"M11.808 2.66807C12.7748 1.70187 14.3432 1.70171 15.31 2.66807L21.3324 8.69053C22.2991 9.65723 22.2987 11.2255 21.3324 12.1925L19.6166 13.9083L10.0922 4.38389L11.808 2.66807Z",fill:"currentColor"}))},v=a;export{v as default,a as IconTorch};
2
+
3
+ //# debugId=80802089FDFF7EAD64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconTorch/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 IconTorch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.8969 14.6026C18.5058 14.9155 18.0284 15.1063 17.5248 15.1417L15.1215 15.3097C14.7669 15.3345 14.4316 15.4872 14.1801 15.7384L8.83828 21.0802C7.87138 22.0471 6.3042 22.0471 5.3373 21.0802L2.92031 18.6632C1.95376 17.6963 1.95353 16.129 2.92031 15.1622L8.26211 9.82041C8.51333 9.5689 8.66597 9.23364 8.69082 8.879L8.85879 6.47568C8.89426 5.97221 9.08412 5.49364 9.39687 5.10264L18.8969 14.6026ZM12.1049 11.8966C11.9097 11.7017 11.593 11.7016 11.3979 11.8966L9.39785 13.8966C9.20271 14.0918 9.20288 14.4083 9.39785 14.6036C9.59313 14.7986 9.90972 14.7987 10.1049 14.6036L12.1049 12.6036C12.2998 12.4084 12.2998 12.0918 12.1049 11.8966Z\" fill=\"currentColor\"/><Path d=\"M11.808 2.66807C12.7748 1.70187 14.3432 1.70171 15.31 2.66807L21.3324 8.69053C22.2991 9.65723 22.2987 11.2255 21.3324 12.1925L19.6166 13.9083L10.0922 4.38389L11.808 2.66807Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTorch;\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,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAA46B,EAA56B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8nBAA8nB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gLAAgL,KAAK,eAAc,CAAI,GAGt6B",
9
+ "debugId": "80802089FDFF7EAD64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -688,6 +688,7 @@ Below is a complete list of available icons:
688
688
  - IconAgentNetwork
689
689
  - IconMagicMouse
690
690
  - IconDevices2
691
+ - IconTorch
691
692
 
692
693
  ### Edit
693
694
 
@@ -1039,6 +1040,7 @@ Below is a complete list of available icons:
1039
1040
  - IconSword
1040
1041
  - IconGamecontroller
1041
1042
  - IconOldJoystick
1043
+ - IconPipe
1042
1044
 
1043
1045
  ### Hands
1044
1046