@central-icons-react-native/round-outlined-radius-3-stroke-1 1.1.210 → 1.1.212

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 d=Object.create;var C=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)C(r,n,{get:o[n],enumerable:!0})},a=(r,o,n,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of f(o))!L.call(r,e)&&e!==n&&C(r,e,{get:()=>o[e],enumerable:!(s=k(o,e))||s.enumerable});return r};var u=(r,o,n)=>(n=r!=null?d(B(r)):{},a(o||!r||!r.__esModule?C(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>a(C({},"__esModule",{value:!0}),r);var g={};I(g,{IconBurnTokens:()=>m,default:()=>P});module.exports=x(g);var t=u(require("react"));var i=u(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...n})=>i.default.createElement(c.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),m=r=>t.default.createElement(l,{...r},t.default.createElement(p.Path,{d:"M20.2568 12.9945C21.0045 13.7037 21.3272 14.6195 21.4482 15.5754C22.216 21.5873 14.2297 23.7434 11.9043 18.6374C11.2155 17.1203 11.4296 15.6217 12.3728 14.2556C12.6924 13.7931 13.0896 13.3737 13.496 12.9852C14.5789 11.9522 15.6369 11.125 16.1023 9.5C18.1904 11.0665 18.7954 12.794 18.3797 15.1407H18.5691C18.9935 14.6762 19.988 13.3719 20.2568 12.9945Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M18.814 9C18.0115 5.28424 14.7059 2.5 10.75 2.5C6.19365 2.5 2.5 6.19365 2.5 10.75C2.5 14.8814 5.53682 18.3035 9.5 18.9059",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M9.93814 14.0312L8.00244 12.9137C7.69304 12.735 7.50244 12.4049 7.50244 12.0476V9.45235C7.50244 9.09508 7.69304 8.76496 8.00244 8.58632L10.2059 7.31418C10.5385 7.12211 10.9518 7.13758 11.2692 7.35398L13.5 8.875",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=m;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=\"M20.2568 12.9945C21.0045 13.7037 21.3272 14.6195 21.4482 15.5754C22.216 21.5873 14.2297 23.7434 11.9043 18.6374C11.2155 17.1203 11.4296 15.6217 12.3728 14.2556C12.6924 13.7931 13.0896 13.3737 13.496 12.9852C14.5789 11.9522 15.6369 11.125 16.1023 9.5C18.1904 11.0665 18.7954 12.794 18.3797 15.1407H18.5691C18.9935 14.6762 19.988 13.3719 20.2568 12.9945Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M18.814 9C18.0115 5.28424 14.7059 2.5 10.75 2.5C6.19365 2.5 2.5 6.19365 2.5 10.75C2.5 14.8814 5.53682 18.3035 9.5 18.9059\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.93814 14.0312L8.00244 12.9137C7.69304 12.735 7.50244 12.4049 7.50244 12.0476V9.45235C7.50244 9.09508 7.69304 8.76496 8.00244 8.58632L10.2059 7.31418C10.5385 7.12211 10.9518 7.13758 11.2692 7.35398L13.5 8.875\"\n stroke=\"currentColor\"\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,mWACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4HACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qNACF,OAAO,eACP,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 p from"react";import{Svg as s}from"react-native-svg";var t=({children:n,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var a=n=>o.createElement(t,{...n},o.createElement(e,{d:"M20.2568 12.9945C21.0045 13.7037 21.3272 14.6195 21.4482 15.5754C22.216 21.5873 14.2297 23.7434 11.9043 18.6374C11.2155 17.1203 11.4296 15.6217 12.3728 14.2556C12.6924 13.7931 13.0896 13.3737 13.496 12.9852C14.5789 11.9522 15.6369 11.125 16.1023 9.5C18.1904 11.0665 18.7954 12.794 18.3797 15.1407H18.5691C18.9935 14.6762 19.988 13.3719 20.2568 12.9945Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M18.814 9C18.0115 5.28424 14.7059 2.5 10.75 2.5C6.19365 2.5 2.5 6.19365 2.5 10.75C2.5 14.8814 5.53682 18.3035 9.5 18.9059",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M9.93814 14.0312L8.00244 12.9137C7.69304 12.735 7.50244 12.4049 7.50244 12.0476V9.45235C7.50244 9.09508 7.69304 8.76496 8.00244 8.58632L10.2059 7.31418C10.5385 7.12211 10.9518 7.13758 11.2692 7.35398L13.5 8.875",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),L=a;export{a 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=\"M20.2568 12.9945C21.0045 13.7037 21.3272 14.6195 21.4482 15.5754C22.216 21.5873 14.2297 23.7434 11.9043 18.6374C11.2155 17.1203 11.4296 15.6217 12.3728 14.2556C12.6924 13.7931 13.0896 13.3737 13.496 12.9852C14.5789 11.9522 15.6369 11.125 16.1023 9.5C18.1904 11.0665 18.7954 12.794 18.3797 15.1407H18.5691C18.9935 14.6762 19.988 13.3719 20.2568 12.9945Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M18.814 9C18.0115 5.28424 14.7059 2.5 10.75 2.5C6.19365 2.5 2.5 6.19365 2.5 10.75C2.5 14.8814 5.53682 18.3035 9.5 18.9059\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.93814 14.0312L8.00244 12.9137C7.69304 12.735 7.50244 12.4049 7.50244 12.0476V9.45235C7.50244 9.09508 7.69304 8.76496 8.00244 8.58632L10.2059 7.31418C10.5385 7.12211 10.9518 7.13758 11.2692 7.35398L13.5 8.875\"\n stroke=\"currentColor\"\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,mWACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4HACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qNACF,OAAO,eACP,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 IconRobotHeadSlop: FC<CentralIconBaseProps>;
4
+ export default IconRobotHeadSlop;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var l=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of k(o))!L.call(r,t)&&t!==e&&l(r,t,{get:()=>o[t],enumerable:!(p=m(o,t))||p.enumerable});return r};var i=(r,o,e)=>(e=r!=null?f(x(r)):{},s(o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>s(l({},"__esModule",{value:!0}),r);var P={};B(P,{IconRobotHeadSlop:()=>a,default:()=>y});module.exports=I(P);var C=i(require("react"));var u=i(require("react")),c=require("react-native-svg"),d=({children:r,size:o=24,...e})=>u.default.createElement(c.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 n=require("react-native-svg"),a=r=>C.default.createElement(d,{...r},C.default.createElement(n.Path,{d:"M9.5 15.5H8.5C6.29086 15.5 4.5 13.7091 4.5 11.5V9.5C3.94772 9.5 3.5 9.05228 3.5 8.5V7.5C3.5 6.94772 3.94772 6.5 4.5 6.5C4.5 4.84315 5.84315 3.5 7.5 3.5H16.5C18.1569 3.5 19.5 4.84315 19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V8.5C20.5 9.05228 20.0523 9.5 19.5 9.5V11.5C19.5 13.7091 17.7091 15.5 15.5 15.5H14.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(n.Path,{d:"M12 3.5V2.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(n.Path,{d:"M14.0475 12.5L14.5586 18.2393C14.5839 18.4361 14.7409 18.5919 14.9418 18.628C16.4795 18.904 17.5 19.3904 17.5 19.9437C17.5 20.8032 15.0376 21.5 12 21.5C8.96243 21.5 6.5 20.8032 6.5 19.9437C6.5 19.3905 7.52017 18.904 9.05735 18.628C9.25827 18.5919 9.41517 18.4361 9.44053 18.2394L9.9526 12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(n.Path,{d:"M8.75 12.5C10.9918 11.8333 13.0082 11.8333 15.25 12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(n.Path,{d:"M4.95003 19.7851C4.65188 20.212 3.05646 19.912 2.54004 19.6656C2.02362 19.4191 1.84668 18.8733 2.14484 18.4464C2.44299 18.0195 3.10334 17.8733 3.61976 18.1197C4.13619 18.3662 5.24819 19.3583 4.95003 19.7851Z",fill:"currentColor"}),C.default.createElement(n.Path,{d:"M19.05 19.7851C19.3481 20.212 20.9435 19.912 21.46 19.6656C21.9764 19.4191 22.1533 18.8733 21.8552 18.4464C21.557 18.0195 20.8967 17.8733 20.3802 18.1197C19.8638 18.3662 18.7518 19.3583 19.05 19.7851Z",fill:"currentColor"}),C.default.createElement(n.Ellipse,{cx:"9.25",cy:"7.8",rx:"1.25",ry:"1.3",fill:"currentColor"}),C.default.createElement(n.Circle,{cx:"14.75",cy:"7.75",r:"1.25",fill:"currentColor"})),y=a;0&&(module.exports={IconRobotHeadSlop});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconRobotHeadSlop/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Ellipse, Path } from \"react-native-svg\";\n\nexport const IconRobotHeadSlop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.5 15.5H8.5C6.29086 15.5 4.5 13.7091 4.5 11.5V9.5C3.94772 9.5 3.5 9.05228 3.5 8.5V7.5C3.5 6.94772 3.94772 6.5 4.5 6.5C4.5 4.84315 5.84315 3.5 7.5 3.5H16.5C18.1569 3.5 19.5 4.84315 19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V8.5C20.5 9.05228 20.0523 9.5 19.5 9.5V11.5C19.5 13.7091 17.7091 15.5 15.5 15.5H14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 3.5V2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.0475 12.5L14.5586 18.2393C14.5839 18.4361 14.7409 18.5919 14.9418 18.628C16.4795 18.904 17.5 19.3904 17.5 19.9437C17.5 20.8032 15.0376 21.5 12 21.5C8.96243 21.5 6.5 20.8032 6.5 19.9437C6.5 19.3905 7.52017 18.904 9.05735 18.628C9.25827 18.5919 9.41517 18.4361 9.44053 18.2394L9.9526 12.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.75 12.5C10.9918 11.8333 13.0082 11.8333 15.25 12.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.95003 19.7851C4.65188 20.212 3.05646 19.912 2.54004 19.6656C2.02362 19.4191 1.84668 18.8733 2.14484 18.4464C2.44299 18.0195 3.10334 17.8733 3.61976 18.1197C4.13619 18.3662 5.24819 19.3583 4.95003 19.7851Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.05 19.7851C19.3481 20.212 20.9435 19.912 21.46 19.6656C21.9764 19.4191 22.1533 18.8733 21.8552 18.4464C21.557 18.0195 20.8967 17.8733 20.3802 18.1197C19.8638 18.3662 18.7518 19.3583 19.05 19.7851Z\"\n fill=\"currentColor\"\n />\n <Ellipse cx=\"9.25\" cy=\"7.8\" rx=\"1.25\" ry=\"1.3\" fill=\"currentColor\" />\n <Circle cx=\"14.75\" cy=\"7.75\" r=\"1.25\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconRobotHeadSlop;\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,uBAAAE,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,EAAsC,4BAEzBC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,uTACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qSACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,WAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,KAAK,eAAe,EACnE,EAAAA,QAAA,cAAC,UAAO,GAAG,QAAQ,GAAG,OAAO,EAAE,OAAO,KAAK,eAAe,CAC5D,EAIGE,EAAQJ","names":["IconRobotHeadSlop_exports","__export","IconRobotHeadSlop","IconRobotHeadSlop_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconRobotHeadSlop","props","React","CentralIconBase","IconRobotHeadSlop_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import l from"react";import{Svg as p}from"react-native-svg";var C=({children:e,size:o=24,...t})=>l.createElement(p,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as s,Ellipse as i,Path as n}from"react-native-svg";var u=e=>r.createElement(C,{...e},r.createElement(n,{d:"M9.5 15.5H8.5C6.29086 15.5 4.5 13.7091 4.5 11.5V9.5C3.94772 9.5 3.5 9.05228 3.5 8.5V7.5C3.5 6.94772 3.94772 6.5 4.5 6.5C4.5 4.84315 5.84315 3.5 7.5 3.5H16.5C18.1569 3.5 19.5 4.84315 19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V8.5C20.5 9.05228 20.0523 9.5 19.5 9.5V11.5C19.5 13.7091 17.7091 15.5 15.5 15.5H14.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M12 3.5V2.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M14.0475 12.5L14.5586 18.2393C14.5839 18.4361 14.7409 18.5919 14.9418 18.628C16.4795 18.904 17.5 19.3904 17.5 19.9437C17.5 20.8032 15.0376 21.5 12 21.5C8.96243 21.5 6.5 20.8032 6.5 19.9437C6.5 19.3905 7.52017 18.904 9.05735 18.628C9.25827 18.5919 9.41517 18.4361 9.44053 18.2394L9.9526 12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M8.75 12.5C10.9918 11.8333 13.0082 11.8333 15.25 12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M4.95003 19.7851C4.65188 20.212 3.05646 19.912 2.54004 19.6656C2.02362 19.4191 1.84668 18.8733 2.14484 18.4464C2.44299 18.0195 3.10334 17.8733 3.61976 18.1197C4.13619 18.3662 5.24819 19.3583 4.95003 19.7851Z",fill:"currentColor"}),r.createElement(n,{d:"M19.05 19.7851C19.3481 20.212 20.9435 19.912 21.46 19.6656C21.9764 19.4191 22.1533 18.8733 21.8552 18.4464C21.557 18.0195 20.8967 17.8733 20.3802 18.1197C19.8638 18.3662 18.7518 19.3583 19.05 19.7851Z",fill:"currentColor"}),r.createElement(i,{cx:"9.25",cy:"7.8",rx:"1.25",ry:"1.3",fill:"currentColor"}),r.createElement(s,{cx:"14.75",cy:"7.75",r:"1.25",fill:"currentColor"})),I=u;export{u as IconRobotHeadSlop,I as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconRobotHeadSlop/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Ellipse, Path } from \"react-native-svg\";\n\nexport const IconRobotHeadSlop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.5 15.5H8.5C6.29086 15.5 4.5 13.7091 4.5 11.5V9.5C3.94772 9.5 3.5 9.05228 3.5 8.5V7.5C3.5 6.94772 3.94772 6.5 4.5 6.5C4.5 4.84315 5.84315 3.5 7.5 3.5H16.5C18.1569 3.5 19.5 4.84315 19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V8.5C20.5 9.05228 20.0523 9.5 19.5 9.5V11.5C19.5 13.7091 17.7091 15.5 15.5 15.5H14.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 3.5V2.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.0475 12.5L14.5586 18.2393C14.5839 18.4361 14.7409 18.5919 14.9418 18.628C16.4795 18.904 17.5 19.3904 17.5 19.9437C17.5 20.8032 15.0376 21.5 12 21.5C8.96243 21.5 6.5 20.8032 6.5 19.9437C6.5 19.3905 7.52017 18.904 9.05735 18.628C9.25827 18.5919 9.41517 18.4361 9.44053 18.2394L9.9526 12.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.75 12.5C10.9918 11.8333 13.0082 11.8333 15.25 12.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.95003 19.7851C4.65188 20.212 3.05646 19.912 2.54004 19.6656C2.02362 19.4191 1.84668 18.8733 2.14484 18.4464C2.44299 18.0195 3.10334 17.8733 3.61976 18.1197C4.13619 18.3662 5.24819 19.3583 4.95003 19.7851Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.05 19.7851C19.3481 20.212 20.9435 19.912 21.46 19.6656C21.9764 19.4191 22.1533 18.8733 21.8552 18.4464C21.557 18.0195 20.8967 17.8733 20.3802 18.1197C19.8638 18.3662 18.7518 19.3583 19.05 19.7851Z\"\n fill=\"currentColor\"\n />\n <Ellipse cx=\"9.25\" cy=\"7.8\" rx=\"1.25\" ry=\"1.3\" fill=\"currentColor\" />\n <Circle cx=\"14.75\" cy=\"7.75\" r=\"1.25\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconRobotHeadSlop;\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,UAAAG,EAAQ,WAAAC,EAAS,QAAAC,MAAY,mBAE/B,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,uTACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qSACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kNACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2MACF,KAAK,eACP,EACAG,EAAA,cAACJ,EAAA,CAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,KAAK,eAAe,EACnEI,EAAA,cAACL,EAAA,CAAO,GAAG,QAAQ,GAAG,OAAO,EAAE,OAAO,KAAK,eAAe,CAC5D,EAIGO,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Ellipse","Path","IconRobotHeadSlop","props","React","CentralIconBase","IconRobotHeadSlop_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
@@ -202,6 +203,7 @@ Below is a complete list of available icons:
202
203
  - IconRobot
203
204
  - IconRobot2
204
205
  - IconRobot3
206
+ - IconRobotHeadSlop
205
207
  - IconScanTextSparkle
206
208
  - IconScriptAi
207
209
  - IconSearchIntelligence
@@ -4858,6 +4858,20 @@
4858
4858
  "packageName": "round-outlined-radius-3-stroke-1",
4859
4859
  "componentName": "IconBurger"
4860
4860
  },
4861
+ {
4862
+ "category": "AI & Magic",
4863
+ "svg": "<path d=\"M20.2568 12.9945C21.0045 13.7037 21.3272 14.6195 21.4482 15.5754C22.216 21.5873 14.2297 23.7434 11.9043 18.6374C11.2155 17.1203 11.4296 15.6217 12.3728 14.2556C12.6924 13.7931 13.0896 13.3737 13.496 12.9852C14.5789 11.9522 15.6369 11.125 16.1023 9.5C18.1904 11.0665 18.7954 12.794 18.3797 15.1407H18.5691C18.9935 14.6762 19.988 13.3719 20.2568 12.9945Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.814 9C18.0115 5.28424 14.7059 2.5 10.75 2.5C6.19365 2.5 2.5 6.19365 2.5 10.75C2.5 14.8814 5.53682 18.3035 9.5 18.9059\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.93814 14.0312L8.00244 12.9137C7.69304 12.735 7.50244 12.4049 7.50244 12.0476V9.45235C7.50244 9.09508 7.69304 8.76496 8.00244 8.58632L10.2059 7.31418C10.5385 7.12211 10.9518 7.13758 11.2692 7.35398L13.5 8.875\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
4864
+ "iconName": "burn-tokens, limit",
4865
+ "variant": {
4866
+ "join": "round",
4867
+ "filled": "off",
4868
+ "radius": "3",
4869
+ "stroke": "1"
4870
+ },
4871
+ "createdAt": "2026-04-24T12:02:37.809295+00:00",
4872
+ "packageName": "round-outlined-radius-3-stroke-1",
4873
+ "componentName": "IconBurnTokens"
4874
+ },
4861
4875
  {
4862
4876
  "category": "Things",
4863
4877
  "svg": "<path d=\"M12 1.5V4.5M12 19.5V22.5M1.5 12H4.5M19.5 12H22.5M4.5 4.5L8 8M16 16L19.5 19.5M4.5 19.5L8 16M16 8L19.5 4.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
@@ -20860,6 +20874,20 @@
20860
20874
  "packageName": "round-outlined-radius-3-stroke-1",
20861
20875
  "componentName": "IconRobot3"
20862
20876
  },
20877
+ {
20878
+ "category": "AI & Magic",
20879
+ "svg": "<path d=\"M9.5 15.5H8.5C6.29086 15.5 4.5 13.7091 4.5 11.5V9.5C3.94772 9.5 3.5 9.05228 3.5 8.5V7.5C3.5 6.94772 3.94772 6.5 4.5 6.5C4.5 4.84315 5.84315 3.5 7.5 3.5H16.5C18.1569 3.5 19.5 4.84315 19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V8.5C20.5 9.05228 20.0523 9.5 19.5 9.5V11.5C19.5 13.7091 17.7091 15.5 15.5 15.5H14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 3.5V2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.0475 12.5L14.5586 18.2393C14.5839 18.4361 14.7409 18.5919 14.9418 18.628C16.4795 18.904 17.5 19.3904 17.5 19.9437C17.5 20.8032 15.0376 21.5 12 21.5C8.96243 21.5 6.5 20.8032 6.5 19.9437C6.5 19.3905 7.52017 18.904 9.05735 18.628C9.25827 18.5919 9.41517 18.4361 9.44053 18.2394L9.9526 12.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.75 12.5C10.9918 11.8333 13.0082 11.8333 15.25 12.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.95003 19.7851C4.65188 20.212 3.05646 19.912 2.54004 19.6656C2.02362 19.4191 1.84668 18.8733 2.14484 18.4464C2.44299 18.0195 3.10334 17.8733 3.61976 18.1197C4.13619 18.3662 5.24819 19.3583 4.95003 19.7851Z\" fill=\"currentColor\"/><path d=\"M19.05 19.7851C19.3481 20.212 20.9435 19.912 21.46 19.6656C21.9764 19.4191 22.1533 18.8733 21.8552 18.4464C21.557 18.0195 20.8967 17.8733 20.3802 18.1197C19.8638 18.3662 18.7518 19.3583 19.05 19.7851Z\" fill=\"currentColor\"/><ellipse cx=\"9.25\" cy=\"7.8\" rx=\"1.25\" ry=\"1.3\" fill=\"currentColor\"/><circle cx=\"14.75\" cy=\"7.75\" r=\"1.25\" fill=\"currentColor\"/>",
20880
+ "iconName": "robot-head-slop",
20881
+ "variant": {
20882
+ "join": "round",
20883
+ "filled": "off",
20884
+ "radius": "3",
20885
+ "stroke": "1"
20886
+ },
20887
+ "createdAt": "2026-04-24T08:02:21.900979+00:00",
20888
+ "packageName": "round-outlined-radius-3-stroke-1",
20889
+ "componentName": "IconRobotHeadSlop"
20890
+ },
20863
20891
  {
20864
20892
  "category": "Vehicles & Aircrafts",
20865
20893
  "svg": "<path d=\"M6.79512 13.7929C6.60759 13.6053 6.35323 13.5 6.08802 13.5H4.46232C3.7069 13.5 3.22426 12.6945 3.5805 12.0284L5.15446 9.08522C5.67638 8.1093 6.69321 7.49998 7.79993 7.49998H10.7707C11.051 7.49998 11.3178 7.38133 11.5109 7.17814C14.097 4.45698 16.9112 2.79383 20.5024 2.53538C21.0533 2.49573 21.5064 2.94886 21.467 3.49974C21.2089 7.10424 19.5456 9.99358 16.8239 12.5857C16.6209 12.7791 16.5022 13.0458 16.5022 13.3261V16.2023C16.5022 17.309 15.8929 18.3258 14.917 18.8477L11.9738 20.4217C11.3077 20.778 10.5022 20.2953 10.5022 19.5399V17.9142C10.5022 17.649 10.3969 17.3946 10.2093 17.2071L6.79512 13.7929Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M2.5 21.5H4.50168C5.60625 21.5 6.50168 20.6046 6.50168 19.5C6.50168 18.3954 5.60583 17.5 4.50126 17.5C3.39623 17.5 2.5 18.3958 2.5 19.5008V21.5Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M6.5 13.5L11.2083 7.5\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M16.5 12.8862L10.5 17.5\" stroke=\"currentColor\" 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"
@@ -1489,6 +1490,7 @@ export type CentralIconName =
1489
1490
  | "IconRobot"
1490
1491
  | "IconRobot2"
1491
1492
  | "IconRobot3"
1493
+ | "IconRobotHeadSlop"
1492
1494
  | "IconRocket"
1493
1495
  | "IconRockingHorse"
1494
1496
  | "IconRoller"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-3-stroke-1",
3
- "version": "1.1.210",
3
+ "version": "1.1.212",
4
4
  "style": "round-outlined-radius-3-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-stroke-1/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": 1971,
14
+ "totalIcons": 1973,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 82,
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",
@@ -71,6 +72,7 @@
71
72
  "IconRobot",
72
73
  "IconRobot2",
73
74
  "IconRobot3",
75
+ "IconRobotHeadSlop",
74
76
  "IconScanTextSparkle",
75
77
  "IconScriptAi",
76
78
  "IconSearchIntelligence",
@@ -2520,6 +2522,7 @@
2520
2522
  "IconBulletList": "bullet-list",
2521
2523
  "IconBun": "bun",
2522
2524
  "IconBurger": "burger, hamburger, sandwich",
2525
+ "IconBurnTokens": "burn-tokens, limit",
2523
2526
  "IconBurst": "burst, pop, boom",
2524
2527
  "IconBus": "bus, school-bus",
2525
2528
  "IconCabinet": "cabinet",
@@ -3663,6 +3666,7 @@
3663
3666
  "IconRobot": "robot",
3664
3667
  "IconRobot2": "robot-2, agent, scout",
3665
3668
  "IconRobot3": "robot-3, agent, scout",
3669
+ "IconRobotHeadSlop": "robot-head-slop",
3666
3670
  "IconRocket": "rocket, startup, launch",
3667
3671
  "IconRockingHorse": "rocking-horse, child, kids, toy",
3668
3672
  "IconRoller": "roller, scooter",
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";
@@ -1488,6 +1489,7 @@ export { IconRobinhood, default as IconRobinhoodDefault, } from "./IconRobinhood
1488
1489
  export { IconRobot, default as IconRobotDefault } from "./IconRobot";
1489
1490
  export { IconRobot2, default as IconRobot2Default } from "./IconRobot2";
1490
1491
  export { IconRobot3, default as IconRobot3Default } from "./IconRobot3";
1492
+ export { IconRobotHeadSlop, default as IconRobotHeadSlopDefault, } from "./IconRobotHeadSlop";
1491
1493
  export { IconRocket, default as IconRocketDefault } from "./IconRocket";
1492
1494
  export { IconRockingHorse, default as IconRockingHorseDefault, } from "./IconRockingHorse";
1493
1495
  export { IconRoller, default as IconRollerDefault } from "./IconRoller";