@central-icons-react-native/round-filled-radius-1-stroke-2 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.00001 19H11V12H19V19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H4.00001C3.44774 21 3.00001 20.5523 3.00001 20C3.00002 19.4477 3.44774 19 4.00001 19H5.00001V12H9.00001V19Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M7.00001 10H5.59962C5.33624 10 5.07815 10.0011 4.86134 9.98341C4.63284 9.96472 4.36306 9.92045 4.09181 9.78224C3.71557 9.59051 3.40952 9.28446 3.21779 8.90822C3.07959 8.63697 3.03531 8.36718 3.01662 8.13869C2.9989 7.92188 3.00001 7.66378 3.00001 7.4004V5.59962C3.00001 5.33624 2.9989 5.07815 3.01662 4.86134C3.03531 4.63284 3.07958 4.36306 3.21779 4.09181C3.40952 3.71557 3.71557 3.40952 4.09181 3.21779C4.36306 3.07958 4.63284 3.03531 4.86134 3.01662C5.07815 2.9989 5.33624 3.00001 5.59962 3.00001H7.00001V10Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M18.4004 3.00001C18.6638 3.00001 18.9219 2.9989 19.1387 3.01662C19.3672 3.03531 19.637 3.07959 19.9082 3.21779C20.2374 3.38556 20.5129 3.64088 20.7051 3.95412L20.7822 4.09181L20.8692 4.29494C20.9406 4.49576 20.9694 4.69007 20.9834 4.86134C21.0011 5.07815 21 5.33624 21 5.59962V7.4004C21 7.66378 21.0011 7.92188 20.9834 8.13869C20.9647 8.36719 20.9205 8.63696 20.7822 8.90822C20.5905 9.28447 20.2845 9.59051 19.9082 9.78224C19.637 9.92045 19.3672 9.96472 19.1387 9.98341C18.9219 10.0011 18.6638 10 18.4004 10H9.00001V3.00001H18.4004Z",fill:"currentColor"}))},w=g;
2
+
3
+ //# debugId=F952A1DE9FAA8FD464756E2164756E21
@@ -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.00001 19H11V12H19V19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H4.00001C3.44774 21 3.00001 20.5523 3.00001 20C3.00002 19.4477 3.44774 19 4.00001 19H5.00001V12H9.00001V19Z\" fill=\"currentColor\"/><Path d=\"M7.00001 10H5.59962C5.33624 10 5.07815 10.0011 4.86134 9.98341C4.63284 9.96472 4.36306 9.92045 4.09181 9.78224C3.71557 9.59051 3.40952 9.28446 3.21779 8.90822C3.07959 8.63697 3.03531 8.36718 3.01662 8.13869C2.9989 7.92188 3.00001 7.66378 3.00001 7.4004V5.59962C3.00001 5.33624 2.9989 5.07815 3.01662 4.86134C3.03531 4.63284 3.07958 4.36306 3.21779 4.09181C3.40952 3.71557 3.71557 3.40952 4.09181 3.21779C4.36306 3.07958 4.63284 3.03531 4.86134 3.01662C5.07815 2.9989 5.33624 3.00001 5.59962 3.00001H7.00001V10Z\" fill=\"currentColor\"/><Path d=\"M18.4004 3.00001C18.6638 3.00001 18.9219 2.9989 19.1387 3.01662C19.3672 3.03531 19.637 3.07959 19.9082 3.21779C20.2374 3.38556 20.5129 3.64088 20.7051 3.95412L20.7822 4.09181L20.8692 4.29494C20.9406 4.49576 20.9694 4.69007 20.9834 4.86134C21.0011 5.07815 21 5.33624 21 5.59962V7.4004C21 7.66378 21.0011 7.92188 20.9834 8.13869C20.9647 8.36719 20.9205 8.63696 20.7822 8.90822C20.5905 9.28447 20.2845 9.59051 19.9082 9.78224C19.637 9.92045 19.3672 9.96472 19.1387 9.98341C18.9219 10.0011 18.6638 10 18.4004 10H9.00001V3.00001H18.4004Z\" 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,wBAA60C,EAA70C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gMAAgM,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,igBAAigB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uhBAAuhB,KAAK,eAAc,CAAI,GAGv0C",
9
+ "debugId": "F952A1DE9FAA8FD464756E2164756E21",
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.00001 19H11V12H19V19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H4.00001C3.44774 21 3.00001 20.5523 3.00001 20C3.00002 19.4477 3.44774 19 4.00001 19H5.00001V12H9.00001V19Z",fill:"currentColor"}),o.createElement(t,{d:"M7.00001 10H5.59962C5.33624 10 5.07815 10.0011 4.86134 9.98341C4.63284 9.96472 4.36306 9.92045 4.09181 9.78224C3.71557 9.59051 3.40952 9.28446 3.21779 8.90822C3.07959 8.63697 3.03531 8.36718 3.01662 8.13869C2.9989 7.92188 3.00001 7.66378 3.00001 7.4004V5.59962C3.00001 5.33624 2.9989 5.07815 3.01662 4.86134C3.03531 4.63284 3.07958 4.36306 3.21779 4.09181C3.40952 3.71557 3.71557 3.40952 4.09181 3.21779C4.36306 3.07958 4.63284 3.03531 4.86134 3.01662C5.07815 2.9989 5.33624 3.00001 5.59962 3.00001H7.00001V10Z",fill:"currentColor"}),o.createElement(t,{d:"M18.4004 3.00001C18.6638 3.00001 18.9219 2.9989 19.1387 3.01662C19.3672 3.03531 19.637 3.07959 19.9082 3.21779C20.2374 3.38556 20.5129 3.64088 20.7051 3.95412L20.7822 4.09181L20.8692 4.29494C20.9406 4.49576 20.9694 4.69007 20.9834 4.86134C21.0011 5.07815 21 5.33624 21 5.59962V7.4004C21 7.66378 21.0011 7.92188 20.9834 8.13869C20.9647 8.36719 20.9205 8.63696 20.7822 8.90822C20.5905 9.28447 20.2845 9.59051 19.9082 9.78224C19.637 9.92045 19.3672 9.96472 19.1387 9.98341C18.9219 10.0011 18.6638 10 18.4004 10H9.00001V3.00001H18.4004Z",fill:"currentColor"}))},V=a;export{V as default,a as IconPipe};
2
+
3
+ //# debugId=ED561776205F63AF64756E2164756E21
@@ -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.00001 19H11V12H19V19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H4.00001C3.44774 21 3.00001 20.5523 3.00001 20C3.00002 19.4477 3.44774 19 4.00001 19H5.00001V12H9.00001V19Z\" fill=\"currentColor\"/><Path d=\"M7.00001 10H5.59962C5.33624 10 5.07815 10.0011 4.86134 9.98341C4.63284 9.96472 4.36306 9.92045 4.09181 9.78224C3.71557 9.59051 3.40952 9.28446 3.21779 8.90822C3.07959 8.63697 3.03531 8.36718 3.01662 8.13869C2.9989 7.92188 3.00001 7.66378 3.00001 7.4004V5.59962C3.00001 5.33624 2.9989 5.07815 3.01662 4.86134C3.03531 4.63284 3.07958 4.36306 3.21779 4.09181C3.40952 3.71557 3.71557 3.40952 4.09181 3.21779C4.36306 3.07958 4.63284 3.03531 4.86134 3.01662C5.07815 2.9989 5.33624 3.00001 5.59962 3.00001H7.00001V10Z\" fill=\"currentColor\"/><Path d=\"M18.4004 3.00001C18.6638 3.00001 18.9219 2.9989 19.1387 3.01662C19.3672 3.03531 19.637 3.07959 19.9082 3.21779C20.2374 3.38556 20.5129 3.64088 20.7051 3.95412L20.7822 4.09181L20.8692 4.29494C20.9406 4.49576 20.9694 4.69007 20.9834 4.86134C21.0011 5.07815 21 5.33624 21 5.59962V7.4004C21 7.66378 21.0011 7.92188 20.9834 8.13869C20.9647 8.36719 20.9205 8.63696 20.7822 8.90822C20.5905 9.28447 20.2845 9.59051 19.9082 9.78224C19.637 9.92045 19.3672 9.96472 19.1387 9.98341C18.9219 10.0011 18.6638 10 18.4004 10H9.00001V3.00001H18.4004Z\" 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,gBAA60C,EAA70C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gMAAgM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,igBAAigB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uhBAAuhB,KAAK,eAAc,CAAI,GAGv0C",
9
+ "debugId": "ED561776205F63AF64756E2164756E21",
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:s,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 m=o?F??=new WeakMap:S??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?g(h(r)):{};let C=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let l of s(r))if(!i.call(C,l))t(C,l,{get:u.bind(r,l),enumerable:!0});if(n)m.set(r,C);return C},B=(r)=>{var o=(f??=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 s(r))if(!i.call(o,n))t(o,n,{get:u.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return f.set(r,o),o},f;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:()=>L});module.exports=B(Z);var v=d(require("react")),x=require("react-native-svg"),L=({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 a=require("react-native-svg"),P=(r)=>{return p.default.createElement(L,{...r},p.default.createElement(a.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.6333 14.28L18.4419 14.4724C18.136 14.7779 17.739 14.9767 17.311 15.0379L14.4712 15.4431L8.41357 21.5007C7.63255 22.2811 6.36631 22.2814 5.58544 21.5007L2.49951 18.4148C1.71874 17.634 1.71909 16.3678 2.49951 15.5867L8.55712 9.52907L8.9624 6.68923C9.02355 6.26128 9.22235 5.86422 9.52783 5.55837L9.91748 5.16774L18.6333 14.28ZM11.7065 12.2937C11.316 11.9032 10.683 11.9032 10.2925 12.2937L9.29248 13.2937C8.90241 13.6843 8.9021 14.3174 9.29248 14.7078C9.68285 15.0981 10.316 15.0978 10.7065 14.7078L11.7065 13.7078C12.0971 13.3173 12.0971 12.6842 11.7065 12.2937Z",fill:"currentColor"}),p.default.createElement(a.Path,{d:"M12.5854 2.50075C13.3665 1.7198 14.6325 1.7198 15.4136 2.50075L21.4995 8.58669L21.6372 8.73805C22.2777 9.52357 22.2316 10.6826 21.4995 11.4148L19.8364 13.0769L11.1206 3.96462L12.5854 2.50075Z",fill:"currentColor"}))},$=P;
2
+
3
+ //# debugId=7770E204FF4673A864756E2164756E21
@@ -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.6333 14.28L18.4419 14.4724C18.136 14.7779 17.739 14.9767 17.311 15.0379L14.4712 15.4431L8.41357 21.5007C7.63255 22.2811 6.36631 22.2814 5.58544 21.5007L2.49951 18.4148C1.71874 17.634 1.71909 16.3678 2.49951 15.5867L8.55712 9.52907L8.9624 6.68923C9.02355 6.26128 9.22235 5.86422 9.52783 5.55837L9.91748 5.16774L18.6333 14.28ZM11.7065 12.2937C11.316 11.9032 10.683 11.9032 10.2925 12.2937L9.29248 13.2937C8.90241 13.6843 8.9021 14.3174 9.29248 14.7078C9.68285 15.0981 10.316 15.0978 10.7065 14.7078L11.7065 13.7078C12.0971 13.3173 12.0971 12.6842 11.7065 12.2937Z\" fill=\"currentColor\"/><Path d=\"M12.5854 2.50075C13.3665 1.7198 14.6325 1.7198 15.4136 2.50075L21.4995 8.58669L21.6372 8.73805C22.2777 9.52357 22.2316 10.6826 21.4995 11.4148L19.8364 13.0769L11.1206 3.96462L12.5854 2.50075Z\" 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,wBAAw3B,EAAx3B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wjBAAwjB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kMAAkM,KAAK,eAAc,CAAI,GAGl3B",
9
+ "debugId": "7770E204FF4673A864756E2164756E21",
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 L=(o)=>{return e.createElement(n,{...o},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.6333 14.28L18.4419 14.4724C18.136 14.7779 17.739 14.9767 17.311 15.0379L14.4712 15.4431L8.41357 21.5007C7.63255 22.2811 6.36631 22.2814 5.58544 21.5007L2.49951 18.4148C1.71874 17.634 1.71909 16.3678 2.49951 15.5867L8.55712 9.52907L8.9624 6.68923C9.02355 6.26128 9.22235 5.86422 9.52783 5.55837L9.91748 5.16774L18.6333 14.28ZM11.7065 12.2937C11.316 11.9032 10.683 11.9032 10.2925 12.2937L9.29248 13.2937C8.90241 13.6843 8.9021 14.3174 9.29248 14.7078C9.68285 15.0981 10.316 15.0978 10.7065 14.7078L11.7065 13.7078C12.0971 13.3173 12.0971 12.6842 11.7065 12.2937Z",fill:"currentColor"}),e.createElement(t,{d:"M12.5854 2.50075C13.3665 1.7198 14.6325 1.7198 15.4136 2.50075L21.4995 8.58669L21.6372 8.73805C22.2777 9.52357 22.2316 10.6826 21.4995 11.4148L19.8364 13.0769L11.1206 3.96462L12.5854 2.50075Z",fill:"currentColor"}))},v=L;export{v as default,L as IconTorch};
2
+
3
+ //# debugId=030B503EE6DF94A364756E2164756E21
@@ -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.6333 14.28L18.4419 14.4724C18.136 14.7779 17.739 14.9767 17.311 15.0379L14.4712 15.4431L8.41357 21.5007C7.63255 22.2811 6.36631 22.2814 5.58544 21.5007L2.49951 18.4148C1.71874 17.634 1.71909 16.3678 2.49951 15.5867L8.55712 9.52907L8.9624 6.68923C9.02355 6.26128 9.22235 5.86422 9.52783 5.55837L9.91748 5.16774L18.6333 14.28ZM11.7065 12.2937C11.316 11.9032 10.683 11.9032 10.2925 12.2937L9.29248 13.2937C8.90241 13.6843 8.9021 14.3174 9.29248 14.7078C9.68285 15.0981 10.316 15.0978 10.7065 14.7078L11.7065 13.7078C12.0971 13.3173 12.0971 12.6842 11.7065 12.2937Z\" fill=\"currentColor\"/><Path d=\"M12.5854 2.50075C13.3665 1.7198 14.6325 1.7198 15.4136 2.50075L21.4995 8.58669L21.6372 8.73805C22.2777 9.52357 22.2316 10.6826 21.4995 11.4148L19.8364 13.0769L11.1206 3.96462L12.5854 2.50075Z\" 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,gBAAw3B,EAAx3B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wjBAAwjB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kMAAkM,KAAK,eAAc,CAAI,GAGl3B",
9
+ "debugId": "030B503EE6DF94A364756E2164756E21",
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