@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.211 → 1.1.213

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 IconBurnTokens: FC<CentralIconBaseProps>;
4
+ export default IconBurnTokens;
@@ -0,0 +1,2 @@
1
+ "use strict";var l=Object.create;var C=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of f(o))!L.call(r,n)&&n!==e&&C(r,n,{get:()=>o[n],enumerable:!(p=m(o,n))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?l(B(r)):{},i(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>i(C({},"__esModule",{value:!0}),r);var P={};I(P,{IconBurnTokens:()=>k,default:()=>x});module.exports=h(P);var t=a(require("react"));var u=a(require("react")),d=require("react-native-svg"),c=({children:r,size:o=24,...e})=>u.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 s=require("react-native-svg"),k=r=>t.default.createElement(c,{...r},t.default.createElement(s.Path,{d:"M19.8811 13.2032C20.5541 13.8534 20.8445 14.6929 20.9534 15.5692C21.6444 21.08 14.4567 23.0565 12.3639 18.3759C11.744 16.9852 11.9367 15.6115 12.7855 14.3593C13.0732 13.9353 13.4306 13.5509 13.7964 13.1948C14.771 12.2478 15.7232 11.4896 16.142 10C18.0214 11.4359 18.5659 13.0195 18.1917 15.1706H18.3622C18.7441 14.7448 19.6392 13.5492 19.8811 13.2032Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M17.6153 6.5C16.1753 4.38723 13.7497 3 11 3C6.58172 3 3 6.58172 3 11C3 14.5452 5.30607 17.5518 8.5 18.6016",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M12.7323 8L11.5002 7.28868C11.1908 7.11004 10.8096 7.11004 10.5002 7.28868L8.03613 8.71132C7.72673 8.88996 7.53613 9.22008 7.53613 9.57735V12.4226C7.53613 12.7799 7.72673 13.11 8.03613 13.2887L8.83517 13.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),x=k;0&&(module.exports={IconBurnTokens});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconBurnTokens/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBurnTokens: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.8811 13.2032C20.5541 13.8534 20.8445 14.6929 20.9534 15.5692C21.6444 21.08 14.4567 23.0565 12.3639 18.3759C11.744 16.9852 11.9367 15.6115 12.7855 14.3593C13.0732 13.9353 13.4306 13.5509 13.7964 13.1948C14.771 12.2478 15.7232 11.4896 16.142 10C18.0214 11.4359 18.5659 13.0195 18.1917 15.1706H18.3622C18.7441 14.7448 19.6392 13.5492 19.8811 13.2032Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.6153 6.5C16.1753 4.38723 13.7497 3 11 3C6.58172 3 3 6.58172 3 11C3 14.5452 5.30607 17.5518 8.5 18.6016\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.7323 8L11.5002 7.28868C11.1908 7.11004 10.8096 7.11004 10.5002 7.28868L8.03613 8.71132C7.72673 8.88996 7.53613 9.22008 7.53613 9.57735V12.4226C7.53613 12.7799 7.72673 13.11 8.03613 13.2887L8.83517 13.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBurnTokens;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,oBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kWACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6GACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iNACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconBurnTokens_exports","__export","IconBurnTokens","IconBurnTokens_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBurnTokens","props","React","CentralIconBase","IconBurnTokens_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import s from"react";import{Svg as p}from"react-native-svg";var t=({children:e,size:r=24,...C})=>s.createElement(p,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var i=e=>o.createElement(t,{...e},o.createElement(n,{d:"M19.8811 13.2032C20.5541 13.8534 20.8445 14.6929 20.9534 15.5692C21.6444 21.08 14.4567 23.0565 12.3639 18.3759C11.744 16.9852 11.9367 15.6115 12.7855 14.3593C13.0732 13.9353 13.4306 13.5509 13.7964 13.1948C14.771 12.2478 15.7232 11.4896 16.142 10C18.0214 11.4359 18.5659 13.0195 18.1917 15.1706H18.3622C18.7441 14.7448 19.6392 13.5492 19.8811 13.2032Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M17.6153 6.5C16.1753 4.38723 13.7497 3 11 3C6.58172 3 3 6.58172 3 11C3 14.5452 5.30607 17.5518 8.5 18.6016",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M12.7323 8L11.5002 7.28868C11.1908 7.11004 10.8096 7.11004 10.5002 7.28868L8.03613 8.71132C7.72673 8.88996 7.53613 9.22008 7.53613 9.57735V12.4226C7.53613 12.7799 7.72673 13.11 8.03613 13.2887L8.83517 13.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),L=i;export{i as IconBurnTokens,L as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconBurnTokens/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBurnTokens: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.8811 13.2032C20.5541 13.8534 20.8445 14.6929 20.9534 15.5692C21.6444 21.08 14.4567 23.0565 12.3639 18.3759C11.744 16.9852 11.9367 15.6115 12.7855 14.3593C13.0732 13.9353 13.4306 13.5509 13.7964 13.1948C14.771 12.2478 15.7232 11.4896 16.142 10C18.0214 11.4359 18.5659 13.0195 18.1917 15.1706H18.3622C18.7441 14.7448 19.6392 13.5492 19.8811 13.2032Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.6153 6.5C16.1753 4.38723 13.7497 3 11 3C6.58172 3 3 6.58172 3 11C3 14.5452 5.30607 17.5518 8.5 18.6016\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.7323 8L11.5002 7.28868C11.1908 7.11004 10.8096 7.11004 10.5002 7.28868L8.03613 8.71132C7.72673 8.88996 7.53613 9.22008 7.53613 9.57735V12.4226C7.53613 12.7799 7.72673 13.11 8.03613 13.2887L8.83517 13.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBurnTokens;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kWACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6GACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iNACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBurnTokens","props","React","CentralIconBase","IconBurnTokens_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCarTaxi: FC<CentralIconBaseProps>;
4
+ export default IconCarTaxi;
@@ -0,0 +1,2 @@
1
+ "use strict";var c=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=L(o,s))||p.enumerable});return r};var d=(r,o,e)=>(e=r!=null?c(h(r)):{},C(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>C(i({},"__esModule",{value:!0}),r);var I={};x(I,{IconCarTaxi:()=>l,default:()=>H});module.exports=B(I);var n=d(require("react"));var k=d(require("react")),u=require("react-native-svg"),a=({children:r,size:o=24,...e})=>k.default.createElement(u.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 t=require("react-native-svg"),l=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M3 18V11.6056C3 11.2107 3.11688 10.8247 3.3359 10.4962L6.40627 5.8906C6.7772 5.3342 7.40166 5 8.07037 5H15.9296C16.5983 5 17.2228 5.3342 17.5937 5.8906L20.6641 10.4962C20.8831 10.8247 21 11.2107 21 11.6056V18C21 18.5523 20.5523 19 20 19H18C17.4477 19 17 18.5523 17 18V17H7V18C7 18.5523 6.55228 19 6 19H4C3.44772 19 3 18.5523 3 18Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M2 10H3.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M20.5 10H22",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M6 13H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M17 13H18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M10 5V3L14 3V5",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),H=l;0&&(module.exports={IconCarTaxi});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconCarTaxi/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCarTaxi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 18V11.6056C3 11.2107 3.11688 10.8247 3.3359 10.4962L6.40627 5.8906C6.7772 5.3342 7.40166 5 8.07037 5H15.9296C16.5983 5 17.2228 5.3342 17.5937 5.8906L20.6641 10.4962C20.8831 10.8247 21 11.2107 21 11.6056V18C21 18.5523 20.5523 19 20 19H18C17.4477 19 17 18.5523 17 18V17H7V18C7 18.5523 6.55228 19 6 19H4C3.44772 19 3 18.5523 3 18Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2 10H3.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 10H22\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6 13H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17 13H18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 5V3L14 3V5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCarTaxi;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,6UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCarTaxi_exports","__export","IconCarTaxi","IconCarTaxi_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCarTaxi","props","React","CentralIconBase","IconCarTaxi_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:o=24,...s})=>i.createElement(p,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var C=n=>r.createElement(t,{...n},r.createElement(e,{d:"M3 18V11.6056C3 11.2107 3.11688 10.8247 3.3359 10.4962L6.40627 5.8906C6.7772 5.3342 7.40166 5 8.07037 5H15.9296C16.5983 5 17.2228 5.3342 17.5937 5.8906L20.6641 10.4962C20.8831 10.8247 21 11.2107 21 11.6056V18C21 18.5523 20.5523 19 20 19H18C17.4477 19 17 18.5523 17 18V17H7V18C7 18.5523 6.55228 19 6 19H4C3.44772 19 3 18.5523 3 18Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M2 10H3.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M20.5 10H22",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M6 13H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M17 13H18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M10 5V3L14 3V5",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),f=C;export{C as IconCarTaxi,f as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconCarTaxi/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCarTaxi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 18V11.6056C3 11.2107 3.11688 10.8247 3.3359 10.4962L6.40627 5.8906C6.7772 5.3342 7.40166 5 8.07037 5H15.9296C16.5983 5 17.2228 5.3342 17.5937 5.8906L20.6641 10.4962C20.8831 10.8247 21 11.2107 21 11.6056V18C21 18.5523 20.5523 19 20 19H18C17.4477 19 17 18.5523 17 18V17H7V18C7 18.5523 6.55228 19 6 19H4C3.44772 19 3 18.5523 3 18Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2 10H3.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 10H22\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6 13H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17 13H18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 5V3L14 3V5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCarTaxi;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,6UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCarTaxi","props","React","CentralIconBase","IconCarTaxi_default"]}
package/README.md CHANGED
@@ -160,6 +160,7 @@ Below is a complete list of available icons:
160
160
  - IconBroomSparkle
161
161
  - IconBubbleSparkle
162
162
  - IconBubbleWideSparkle
163
+ - IconBurnTokens
163
164
  - IconCalenderSparkle
164
165
  - IconCameraSparkle
165
166
  - IconClapboardSparkle
@@ -2164,6 +2165,7 @@ Below is a complete list of available icons:
2164
2165
  ### Vehicles
2165
2166
 
2166
2167
  - IconBoat
2168
+ - IconCarTaxi
2167
2169
  - IconSteeringWheel1
2168
2170
 
2169
2171
  ### Vehicles & Aircrafts
@@ -4858,6 +4858,20 @@
4858
4858
  "packageName": "round-outlined-radius-2-stroke-2",
4859
4859
  "componentName": "IconBurger"
4860
4860
  },
4861
+ {
4862
+ "category": "AI & Magic",
4863
+ "svg": "<path d=\"M19.8811 13.2032C20.5541 13.8534 20.8445 14.6929 20.9534 15.5692C21.6444 21.08 14.4567 23.0565 12.3639 18.3759C11.744 16.9852 11.9367 15.6115 12.7855 14.3593C13.0732 13.9353 13.4306 13.5509 13.7964 13.1948C14.771 12.2478 15.7232 11.4896 16.142 10C18.0214 11.4359 18.5659 13.0195 18.1917 15.1706H18.3622C18.7441 14.7448 19.6392 13.5492 19.8811 13.2032Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.6153 6.5C16.1753 4.38723 13.7497 3 11 3C6.58172 3 3 6.58172 3 11C3 14.5452 5.30607 17.5518 8.5 18.6016\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.7323 8L11.5002 7.28868C11.1908 7.11004 10.8096 7.11004 10.5002 7.28868L8.03613 8.71132C7.72673 8.88996 7.53613 9.22008 7.53613 9.57735V12.4226C7.53613 12.7799 7.72673 13.11 8.03613 13.2887L8.83517 13.75\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
4864
+ "iconName": "burn-tokens, limit",
4865
+ "variant": {
4866
+ "join": "round",
4867
+ "filled": "off",
4868
+ "radius": "2",
4869
+ "stroke": "2"
4870
+ },
4871
+ "createdAt": "2026-04-24T12:02:37.809295+00:00",
4872
+ "packageName": "round-outlined-radius-2-stroke-2",
4873
+ "componentName": "IconBurnTokens"
4874
+ },
4861
4875
  {
4862
4876
  "category": "Things",
4863
4877
  "svg": "<path d=\"M12 2V4M12 20V22M2 12H4M20 12H22M5 5L7.5 7.5M16.5 16.5L19 19M5 19L7.5 16.5M16.5 7.5L19 5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
@@ -5768,6 +5782,20 @@
5768
5782
  "packageName": "round-outlined-radius-2-stroke-2",
5769
5783
  "componentName": "IconCarFrontView"
5770
5784
  },
5785
+ {
5786
+ "category": "Vehicles",
5787
+ "svg": "<path d=\"M3 18V11.6056C3 11.2107 3.11688 10.8247 3.3359 10.4962L6.40627 5.8906C6.7772 5.3342 7.40166 5 8.07037 5H15.9296C16.5983 5 17.2228 5.3342 17.5937 5.8906L20.6641 10.4962C20.8831 10.8247 21 11.2107 21 11.6056V18C21 18.5523 20.5523 19 20 19H18C17.4477 19 17 18.5523 17 18V17H7V18C7 18.5523 6.55228 19 6 19H4C3.44772 19 3 18.5523 3 18Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2 10H3.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 10H22\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 13H7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 13H18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 5V3L14 3V5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
5788
+ "iconName": "car-taxi, uber",
5789
+ "variant": {
5790
+ "join": "round",
5791
+ "filled": "off",
5792
+ "radius": "2",
5793
+ "stroke": "2"
5794
+ },
5795
+ "createdAt": "2026-04-24T15:01:54.4139+00:00",
5796
+ "packageName": "round-outlined-radius-2-stroke-2",
5797
+ "componentName": "IconCarTaxi"
5798
+ },
5771
5799
  {
5772
5800
  "category": "Layout",
5773
5801
  "svg": "<path d=\"M15 4H9C7.89543 4 7 4.89543 7 6V18C7 19.1046 7.89543 20 9 20H15C16.1046 20 17 19.1046 17 18V6C17 4.89543 16.1046 4 15 4Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 6H19C20.1046 6 21 6.89543 21 8V16C21 17.1046 20.1046 18 19 18H17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 18H5C3.89543 18 3 17.1046 3 16V8C3 6.89543 3.89543 6 5 6H7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
package/icons/index.d.ts CHANGED
@@ -346,6 +346,7 @@ export type CentralIconName =
346
346
  | "IconBulletList"
347
347
  | "IconBun"
348
348
  | "IconBurger"
349
+ | "IconBurnTokens"
349
350
  | "IconBurst"
350
351
  | "IconBus"
351
352
  | "IconCabinet"
@@ -411,6 +412,7 @@ export type CentralIconName =
411
412
  | "IconCar9"
412
413
  | "IconCar9Ev"
413
414
  | "IconCarFrontView"
415
+ | "IconCarTaxi"
414
416
  | "IconCarussel"
415
417
  | "IconCash"
416
418
  | "IconCat"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-2-stroke-2",
3
- "version": "1.1.211",
3
+ "version": "1.1.213",
4
4
  "style": "round-outlined-radius-2-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-2/IconHome';",
@@ -11,10 +11,10 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 1972,
14
+ "totalIcons": 1974,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 83,
17
+ "count": 84,
18
18
  "icons": [
19
19
  "IconAiSlop",
20
20
  "IconAiTokens",
@@ -29,6 +29,7 @@
29
29
  "IconBroomSparkle",
30
30
  "IconBubbleSparkle",
31
31
  "IconBubbleWideSparkle",
32
+ "IconBurnTokens",
32
33
  "IconCalenderSparkle",
33
34
  "IconCameraSparkle",
34
35
  "IconClapboardSparkle",
@@ -2100,8 +2101,8 @@
2100
2101
  ]
2101
2102
  },
2102
2103
  "Vehicles": {
2103
- "count": 2,
2104
- "icons": ["IconBoat", "IconSteeringWheel1"]
2104
+ "count": 3,
2105
+ "icons": ["IconBoat", "IconCarTaxi", "IconSteeringWheel1"]
2105
2106
  },
2106
2107
  "Vehicles & Aircrafts": {
2107
2108
  "count": 35,
@@ -2521,6 +2522,7 @@
2521
2522
  "IconBulletList": "bullet-list",
2522
2523
  "IconBun": "bun",
2523
2524
  "IconBurger": "burger, hamburger, sandwich",
2525
+ "IconBurnTokens": "burn-tokens, limit",
2524
2526
  "IconBurst": "burst, pop, boom",
2525
2527
  "IconBus": "bus, school-bus",
2526
2528
  "IconCabinet": "cabinet",
@@ -2586,6 +2588,7 @@
2586
2588
  "IconCar9": "car-9, van",
2587
2589
  "IconCar9Ev": "car-9-ev, van",
2588
2590
  "IconCarFrontView": "car-front-view",
2591
+ "IconCarTaxi": "car-taxi, uber",
2589
2592
  "IconCarussel": "carussel, slides",
2590
2593
  "IconCash": "cash",
2591
2594
  "IconCat": "cat, image, animal, cute",
package/index.d.ts CHANGED
@@ -345,6 +345,7 @@ export { IconBuildings, default as IconBuildingsDefault, } from "./IconBuildings
345
345
  export { IconBulletList, default as IconBulletListDefault, } from "./IconBulletList";
346
346
  export { IconBun, default as IconBunDefault } from "./IconBun";
347
347
  export { IconBurger, default as IconBurgerDefault } from "./IconBurger";
348
+ export { IconBurnTokens, default as IconBurnTokensDefault, } from "./IconBurnTokens";
348
349
  export { IconBurst, default as IconBurstDefault } from "./IconBurst";
349
350
  export { IconBus, default as IconBusDefault } from "./IconBus";
350
351
  export { IconCabinet, default as IconCabinetDefault } from "./IconCabinet";
@@ -410,6 +411,7 @@ export { IconCar8Ev, default as IconCar8EvDefault } from "./IconCar8Ev";
410
411
  export { IconCar9, default as IconCar9Default } from "./IconCar9";
411
412
  export { IconCar9Ev, default as IconCar9EvDefault } from "./IconCar9Ev";
412
413
  export { IconCarFrontView, default as IconCarFrontViewDefault, } from "./IconCarFrontView";
414
+ export { IconCarTaxi, default as IconCarTaxiDefault } from "./IconCarTaxi";
413
415
  export { IconCarussel, default as IconCarusselDefault } from "./IconCarussel";
414
416
  export { IconCash, default as IconCashDefault } from "./IconCash";
415
417
  export { IconCat, default as IconCatDefault } from "./IconCat";