@central-icons-react-native/round-outlined-radius-3-stroke-2 1.1.209 → 1.1.211
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconHomeRoofDoor/index.d.ts +4 -0
- package/IconHomeRoofDoor/index.js +2 -0
- package/IconHomeRoofDoor/index.js.map +1 -0
- package/IconHomeRoofDoor/index.mjs +2 -0
- package/IconHomeRoofDoor/index.mjs.map +1 -0
- package/IconRobotHeadSlop/index.d.ts +4 -0
- package/IconRobotHeadSlop/index.js +2 -0
- package/IconRobotHeadSlop/index.js.map +1 -0
- package/IconRobotHeadSlop/index.mjs +2 -0
- package/IconRobotHeadSlop/index.mjs.map +1 -0
- package/README.md +2 -0
- package/filtered-icons.json +28 -0
- package/icons/index.d.ts +2 -0
- package/icons-index.json +8 -4
- package/index.d.ts +2 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
- package/tsx-icons.json +14 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0})},i=(o,r,e,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of f(r))!I.call(o,t)&&t!==e&&p(o,t,{get:()=>r[t],enumerable:!(C=k(r,t))||C.enumerable});return o};var a=(o,r,e)=>(e=o!=null?l(B(o)):{},i(r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e,o)),h=o=>i(p({},"__esModule",{value:!0}),o);var P={};L(P,{IconHomeRoofDoor:()=>c,default:()=>x});module.exports=h(P);var n=a(require("react"));var u=a(require("react")),d=require("react-native-svg"),m=({children:o,size:r=24,...e})=>u.default.createElement(d.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var s=require("react-native-svg"),c=o=>n.default.createElement(m,{...o},n.default.createElement(s.Path,{d:"M21.5 9.55121L12 2.75L2.5 9.55121",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M5 7.76141V15.2C5 16.8802 5 17.7202 5.32698 18.362C5.6146 18.9265 6.07354 19.3854 6.63803 19.673C7.27976 20 8.11984 20 9.8 20H14.2C15.8802 20 16.7202 20 17.362 19.673C17.9265 19.3854 18.3854 18.9265 18.673 18.362C19 17.7202 19 16.8802 19 15.2V7.76141",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M14 20V16C14 14.8954 13.1046 14 12 14C10.8954 14 10 14.8954 10 16V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),x=c;0&&(module.exports={IconHomeRoofDoor});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHomeRoofDoor/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 IconHomeRoofDoor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.5 9.55121L12 2.75L2.5 9.55121\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5 7.76141V15.2C5 16.8802 5 17.7202 5.32698 18.362C5.6146 18.9265 6.07354 19.3854 6.63803 19.673C7.27976 20 8.11984 20 9.8 20H14.2C15.8802 20 16.7202 20 17.362 19.673C17.9265 19.3854 18.3854 18.9265 18.673 18.362C19 17.7202 19 16.8802 19 15.2V7.76141\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14 20V16C14 14.8954 13.1046 14 12 14C10.8954 14 10 14.8954 10 16V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHomeRoofDoor;\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,sBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6PACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconHomeRoofDoor_exports","__export","IconHomeRoofDoor","IconHomeRoofDoor_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconHomeRoofDoor","props","React","CentralIconBase","IconHomeRoofDoor_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:o=24,...p})=>s.createElement(C,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var i=e=>r.createElement(n,{...e},r.createElement(t,{d:"M21.5 9.55121L12 2.75L2.5 9.55121",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M5 7.76141V15.2C5 16.8802 5 17.7202 5.32698 18.362C5.6146 18.9265 6.07354 19.3854 6.63803 19.673C7.27976 20 8.11984 20 9.8 20H14.2C15.8802 20 16.7202 20 17.362 19.673C17.9265 19.3854 18.3854 18.9265 18.673 18.362C19 17.7202 19 16.8802 19 15.2V7.76141",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M14 20V16C14 14.8954 13.1046 14 12 14C10.8954 14 10 14.8954 10 16V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=i;export{i as IconHomeRoofDoor,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHomeRoofDoor/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 IconHomeRoofDoor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.5 9.55121L12 2.75L2.5 9.55121\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5 7.76141V15.2C5 16.8802 5 17.7202 5.32698 18.362C5.6146 18.9265 6.07354 19.3854 6.63803 19.673C7.27976 20 8.11984 20 9.8 20H14.2C15.8802 20 16.7202 20 17.362 19.673C17.9265 19.3854 18.3854 18.9265 18.673 18.362C19 17.7202 19 16.8802 19 15.2V7.76141\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14 20V16C14 14.8954 13.1046 14 12 14C10.8954 14 10 14.8954 10 16V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHomeRoofDoor;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6PACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconHomeRoofDoor","props","React","CentralIconBase","IconHomeRoofDoor_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var s=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of a(o))!h.call(r,C)&&C!==t&&s(r,C,{get:()=>o[C],enumerable:!(i=m(o,C))||i.enumerable});return r};var d=(r,o,t)=>(t=r!=null?f(L(r)):{},l(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>l(s({},"__esModule",{value:!0}),r);var M={};x(M,{IconRobotHeadSlop:()=>c,default:()=>I});module.exports=B(M);var e=d(require("react"));var p=d(require("react")),u=require("react-native-svg"),k=({children:r,size:o=24,...t})=>p.default.createElement(u.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),c=r=>e.default.createElement(k,{...r},e.default.createElement(n.Path,{d:"M10 16H8.5C6.29086 16 4.5 14.2091 4.5 12V7C4.5 5.34315 5.84315 4 7.5 4H16.5C18.1569 4 19.5 5.34315 19.5 7V12C19.5 14.2091 17.7091 16 15.5 16H14",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),e.default.createElement(n.Circle,{cx:"9.25",cy:"8.25",r:"1.5",fill:"currentColor"}),e.default.createElement(n.Circle,{cx:"14.75",cy:"8.25",r:"1.5",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M12 4V2.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(n.Path,{d:"M4.5 7C3.94772 7 3.5 7.44772 3.5 8V9C3.5 9.55228 3.94772 10 4.5 10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(n.Path,{d:"M19.5 7C20.0523 7 20.5 7.44772 20.5 8V9C20.5 9.55228 20.0523 10 19.5 10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(n.Path,{d:"M9.25 12.5C11.1469 11.8333 12.8531 11.8333 14.75 12.5",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round"}),e.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"}),e.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"}),e.default.createElement(n.Path,{d:"M13.5002 12.5L14.3445 17.9205C14.3677 18.1063 14.5115 18.2535 14.6957 18.2875C16.1045 18.5482 17.0395 19.0076 17.0395 19.5302C17.0395 20.3419 14.7834 21 12.0002 21C9.21711 21 6.96094 20.3419 6.96094 19.5302C6.96094 19.0077 7.89565 18.5482 9.30408 18.2875C9.48817 18.2535 9.63192 18.1063 9.65516 17.9206L10.5002 12.5",stroke:"currentColor",strokeWidth:"1.9"})),I=c;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, Path } from \"react-native-svg\";\n\nexport const IconRobotHeadSlop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 16H8.5C6.29086 16 4.5 14.2091 4.5 12V7C4.5 5.34315 5.84315 4 7.5 4H16.5C18.1569 4 19.5 5.34315 19.5 7V12C19.5 14.2091 17.7091 16 15.5 16H14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"9.25\" cy=\"8.25\" r=\"1.5\" fill=\"currentColor\" />\n <Circle cx=\"14.75\" cy=\"8.25\" r=\"1.5\" fill=\"currentColor\" />\n <Path\n d=\"M12 4V2.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.5 7C3.94772 7 3.5 7.44772 3.5 8V9C3.5 9.55228 3.94772 10 4.5 10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 7C20.0523 7 20.5 7.44772 20.5 8V9C20.5 9.55228 20.0523 10 19.5 10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.25 12.5C11.1469 11.8333 12.8531 11.8333 14.75 12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.6\"\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 <Path\n d=\"M13.5002 12.5L14.3445 17.9205C14.3677 18.1063 14.5115 18.2535 14.6957 18.2875C16.1045 18.5482 17.0395 19.0076 17.0395 19.5302C17.0395 20.3419 14.7834 21 12.0002 21C9.21711 21 6.96094 20.3419 6.96094 19.5302C6.96094 19.0077 7.89565 18.5482 9.30408 18.2875C9.48817 18.2535 9.63192 18.1063 9.65516 17.9206L10.5002 12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.9\"\n />\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,EAA6B,4BAEhBC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kJACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,OAAO,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,UAAO,GAAG,QAAQ,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EACzD,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wDACF,OAAO,eACP,YAAY,MACZ,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,QACC,EAAE,8TACF,OAAO,eACP,YAAY,MACd,CACF,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 i from"react";import{Svg as l}from"react-native-svg";var t=({children:n,size:e=24,...s})=>i.createElement(l,{...s,width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},n);import{Circle as C,Path as o}from"react-native-svg";var d=n=>r.createElement(t,{...n},r.createElement(o,{d:"M10 16H8.5C6.29086 16 4.5 14.2091 4.5 12V7C4.5 5.34315 5.84315 4 7.5 4H16.5C18.1569 4 19.5 5.34315 19.5 7V12C19.5 14.2091 17.7091 16 15.5 16H14",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),r.createElement(C,{cx:"9.25",cy:"8.25",r:"1.5",fill:"currentColor"}),r.createElement(C,{cx:"14.75",cy:"8.25",r:"1.5",fill:"currentColor"}),r.createElement(o,{d:"M12 4V2.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M4.5 7C3.94772 7 3.5 7.44772 3.5 8V9C3.5 9.55228 3.94772 10 4.5 10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M19.5 7C20.0523 7 20.5 7.44772 20.5 8V9C20.5 9.55228 20.0523 10 19.5 10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M9.25 12.5C11.1469 11.8333 12.8531 11.8333 14.75 12.5",stroke:"currentColor",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{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(o,{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(o,{d:"M13.5002 12.5L14.3445 17.9205C14.3677 18.1063 14.5115 18.2535 14.6957 18.2875C16.1045 18.5482 17.0395 19.0076 17.0395 19.5302C17.0395 20.3419 14.7834 21 12.0002 21C9.21711 21 6.96094 20.3419 6.96094 19.5302C6.96094 19.0077 7.89565 18.5482 9.30408 18.2875C9.48817 18.2535 9.63192 18.1063 9.65516 17.9206L10.5002 12.5",stroke:"currentColor",strokeWidth:"1.9"})),x=d;export{d as IconRobotHeadSlop,x 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, Path } from \"react-native-svg\";\n\nexport const IconRobotHeadSlop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10 16H8.5C6.29086 16 4.5 14.2091 4.5 12V7C4.5 5.34315 5.84315 4 7.5 4H16.5C18.1569 4 19.5 5.34315 19.5 7V12C19.5 14.2091 17.7091 16 15.5 16H14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"9.25\" cy=\"8.25\" r=\"1.5\" fill=\"currentColor\" />\n <Circle cx=\"14.75\" cy=\"8.25\" r=\"1.5\" fill=\"currentColor\" />\n <Path\n d=\"M12 4V2.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.5 7C3.94772 7 3.5 7.44772 3.5 8V9C3.5 9.55228 3.94772 10 4.5 10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 7C20.0523 7 20.5 7.44772 20.5 8V9C20.5 9.55228 20.0523 10 19.5 10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.25 12.5C11.1469 11.8333 12.8531 11.8333 14.75 12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.6\"\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 <Path\n d=\"M13.5002 12.5L14.3445 17.9205C14.3677 18.1063 14.5115 18.2535 14.6957 18.2875C16.1045 18.5482 17.0395 19.0076 17.0395 19.5302C17.0395 20.3419 14.7834 21 12.0002 21C9.21711 21 6.96094 20.3419 6.96094 19.5302C6.96094 19.0077 7.89565 18.5482 9.30408 18.2875C9.48817 18.2535 9.63192 18.1063 9.65516 17.9206L10.5002 12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.9\"\n />\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,QAAAC,MAAY,mBAEtB,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kJACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,OAAO,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EACxDI,EAAA,cAACJ,EAAA,CAAO,GAAG,QAAQ,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EACzDI,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wDACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kNACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2MACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8TACF,OAAO,eACP,YAAY,MACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconRobotHeadSlop","props","React","CentralIconBase","IconRobotHeadSlop_default"]}
|
package/README.md
CHANGED
|
@@ -202,6 +202,7 @@ Below is a complete list of available icons:
|
|
|
202
202
|
- IconRobot
|
|
203
203
|
- IconRobot2
|
|
204
204
|
- IconRobot3
|
|
205
|
+
- IconRobotHeadSlop
|
|
205
206
|
- IconScanTextSparkle
|
|
206
207
|
- IconScriptAi
|
|
207
208
|
- IconSearchIntelligence
|
|
@@ -417,6 +418,7 @@ Below is a complete list of available icons:
|
|
|
417
418
|
- IconHomeOpen
|
|
418
419
|
- IconHomePersonalFeed
|
|
419
420
|
- IconHomeRoof
|
|
421
|
+
- IconHomeRoofDoor
|
|
420
422
|
- IconHomeRoundDoor
|
|
421
423
|
- IconMall
|
|
422
424
|
- IconSchool
|
package/filtered-icons.json
CHANGED
|
@@ -13776,6 +13776,20 @@
|
|
|
13776
13776
|
"packageName": "round-outlined-radius-3-stroke-2",
|
|
13777
13777
|
"componentName": "IconHomeRoof"
|
|
13778
13778
|
},
|
|
13779
|
+
{
|
|
13780
|
+
"category": "Building",
|
|
13781
|
+
"svg": "<path d=\"M21.5 9.55121L12 2.75L2.5 9.55121\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5 7.76141V15.2C5 16.8802 5 17.7202 5.32698 18.362C5.6146 18.9265 6.07354 19.3854 6.63803 19.673C7.27976 20 8.11984 20 9.8 20H14.2C15.8802 20 16.7202 20 17.362 19.673C17.9265 19.3854 18.3854 18.9265 18.673 18.362C19 17.7202 19 16.8802 19 15.2V7.76141\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 20V16C14 14.8954 13.1046 14 12 14C10.8954 14 10 14.8954 10 16V20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
13782
|
+
"iconName": "home-roof-door, house",
|
|
13783
|
+
"variant": {
|
|
13784
|
+
"join": "round",
|
|
13785
|
+
"filled": "off",
|
|
13786
|
+
"radius": "3",
|
|
13787
|
+
"stroke": "2"
|
|
13788
|
+
},
|
|
13789
|
+
"createdAt": "2026-04-24T06:02:17.817002+00:00",
|
|
13790
|
+
"packageName": "round-outlined-radius-3-stroke-2",
|
|
13791
|
+
"componentName": "IconHomeRoofDoor"
|
|
13792
|
+
},
|
|
13779
13793
|
{
|
|
13780
13794
|
"category": "Building",
|
|
13781
13795
|
"svg": "<path d=\"M9.5 16.5V20H7C5.34315 20 4 18.6569 4 17V10.5383C4 9.57254 4.4649 8.66586 5.24909 8.10222L10.2491 4.50847C11.2953 3.75653 12.7047 3.75653 13.7509 4.50847L18.7509 8.10222C19.5351 8.66586 20 9.57254 20 10.5383V17C20 18.6569 18.6569 20 17 20H14.5V16.5C14.5 15.1193 13.3807 14 12 14C10.6193 14 9.5 15.1193 9.5 16.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
@@ -20846,6 +20860,20 @@
|
|
|
20846
20860
|
"packageName": "round-outlined-radius-3-stroke-2",
|
|
20847
20861
|
"componentName": "IconRobot3"
|
|
20848
20862
|
},
|
|
20863
|
+
{
|
|
20864
|
+
"category": "AI & Magic",
|
|
20865
|
+
"svg": "<path d=\"M10 16H8.5C6.29086 16 4.5 14.2091 4.5 12V7C4.5 5.34315 5.84315 4 7.5 4H16.5C18.1569 4 19.5 5.34315 19.5 7V12C19.5 14.2091 17.7091 16 15.5 16H14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><circle cx=\"9.25\" cy=\"8.25\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"14.75\" cy=\"8.25\" r=\"1.5\" fill=\"currentColor\"/><path d=\"M12 4V2.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.5 7C3.94772 7 3.5 7.44772 3.5 8V9C3.5 9.55228 3.94772 10 4.5 10\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 7C20.0523 7 20.5 7.44772 20.5 8V9C20.5 9.55228 20.0523 10 19.5 10\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 12.5C11.1469 11.8333 12.8531 11.8333 14.75 12.5\" stroke=\"currentColor\" stroke-width=\"1.6\" 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\"/><path d=\"M13.5002 12.5L14.3445 17.9205C14.3677 18.1063 14.5115 18.2535 14.6957 18.2875C16.1045 18.5482 17.0395 19.0076 17.0395 19.5302C17.0395 20.3419 14.7834 21 12.0002 21C9.21711 21 6.96094 20.3419 6.96094 19.5302C6.96094 19.0077 7.89565 18.5482 9.30408 18.2875C9.48817 18.2535 9.63192 18.1063 9.65516 17.9206L10.5002 12.5\" stroke=\"currentColor\" stroke-width=\"1.9\"/>",
|
|
20866
|
+
"iconName": "robot-head-slop",
|
|
20867
|
+
"variant": {
|
|
20868
|
+
"join": "round",
|
|
20869
|
+
"filled": "off",
|
|
20870
|
+
"radius": "3",
|
|
20871
|
+
"stroke": "2"
|
|
20872
|
+
},
|
|
20873
|
+
"createdAt": "2026-04-24T08:02:21.900979+00:00",
|
|
20874
|
+
"packageName": "round-outlined-radius-3-stroke-2",
|
|
20875
|
+
"componentName": "IconRobotHeadSlop"
|
|
20876
|
+
},
|
|
20849
20877
|
{
|
|
20850
20878
|
"category": "Vehicles & Aircrafts",
|
|
20851
20879
|
"svg": "<path d=\"M3 21H5C6.10457 21 7 20.1046 7 19C7 17.8954 6.10457 17 5 17C3.89543 17 3 17.8954 3 19V21Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M7.00098 13H4.76717C3.98987 13 3.50976 12.152 3.90968 11.4855L5.12707 9.45651C5.66924 8.5529 6.64576 8 7.69955 8H11.251C13.7671 5.25513 16.4925 3.3474 20.0017 3.04278C20.5519 2.99502 21.006 3.44906 20.9582 3.99927C20.6536 7.50845 18.7459 10.2339 16.001 12.75V16.3014C16.001 17.3552 15.4481 18.3317 14.5445 18.8739L12.5155 20.0913C11.849 20.4912 11.001 20.0111 11.001 19.2338V17L7.00098 13Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M7 13L11.25 8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M16 12.75L11 17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -983,6 +983,7 @@ export type CentralIconName =
|
|
|
983
983
|
| "IconHomeOpen"
|
|
984
984
|
| "IconHomePersonalFeed"
|
|
985
985
|
| "IconHomeRoof"
|
|
986
|
+
| "IconHomeRoofDoor"
|
|
986
987
|
| "IconHomeRoundDoor"
|
|
987
988
|
| "IconHook"
|
|
988
989
|
| "IconHorizontalAlignmentBottom"
|
|
@@ -1488,6 +1489,7 @@ export type CentralIconName =
|
|
|
1488
1489
|
| "IconRobot"
|
|
1489
1490
|
| "IconRobot2"
|
|
1490
1491
|
| "IconRobot3"
|
|
1492
|
+
| "IconRobotHeadSlop"
|
|
1491
1493
|
| "IconRocket"
|
|
1492
1494
|
| "IconRockingHorse"
|
|
1493
1495
|
| "IconRoller"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-3-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.211",
|
|
4
4
|
"style": "round-outlined-radius-3-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-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":
|
|
14
|
+
"totalIcons": 1972,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 83,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAiSlop",
|
|
20
20
|
"IconAiTokens",
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
"IconRobot",
|
|
72
72
|
"IconRobot2",
|
|
73
73
|
"IconRobot3",
|
|
74
|
+
"IconRobotHeadSlop",
|
|
74
75
|
"IconScanTextSparkle",
|
|
75
76
|
"IconScriptAi",
|
|
76
77
|
"IconSearchIntelligence",
|
|
@@ -276,7 +277,7 @@
|
|
|
276
277
|
]
|
|
277
278
|
},
|
|
278
279
|
"Building": {
|
|
279
|
-
"count":
|
|
280
|
+
"count": 26,
|
|
280
281
|
"icons": [
|
|
281
282
|
"IconBank",
|
|
282
283
|
"IconBank2",
|
|
@@ -294,6 +295,7 @@
|
|
|
294
295
|
"IconHomeOpen",
|
|
295
296
|
"IconHomePersonalFeed",
|
|
296
297
|
"IconHomeRoof",
|
|
298
|
+
"IconHomeRoofDoor",
|
|
297
299
|
"IconHomeRoundDoor",
|
|
298
300
|
"IconMall",
|
|
299
301
|
"IconSchool",
|
|
@@ -3156,6 +3158,7 @@
|
|
|
3156
3158
|
"IconHomeOpen": "home-open, house",
|
|
3157
3159
|
"IconHomePersonalFeed": "home-personal-feed, for-you",
|
|
3158
3160
|
"IconHomeRoof": "home-roof, house",
|
|
3161
|
+
"IconHomeRoofDoor": "home-roof-door, house",
|
|
3159
3162
|
"IconHomeRoundDoor": "home-round-door",
|
|
3160
3163
|
"IconHook": "hook, phishing",
|
|
3161
3164
|
"IconHorizontalAlignmentBottom": "horizontal-alignment-bottom",
|
|
@@ -3661,6 +3664,7 @@
|
|
|
3661
3664
|
"IconRobot": "robot",
|
|
3662
3665
|
"IconRobot2": "robot-2, agent, scout",
|
|
3663
3666
|
"IconRobot3": "robot-3, agent, scout",
|
|
3667
|
+
"IconRobotHeadSlop": "robot-head-slop",
|
|
3664
3668
|
"IconRocket": "rocket, startup, launch",
|
|
3665
3669
|
"IconRockingHorse": "rocking-horse, child, kids, toy",
|
|
3666
3670
|
"IconRoller": "roller, scooter",
|
package/index.d.ts
CHANGED
|
@@ -982,6 +982,7 @@ export { IconHomeLine, default as IconHomeLineDefault } from "./IconHomeLine";
|
|
|
982
982
|
export { IconHomeOpen, default as IconHomeOpenDefault } from "./IconHomeOpen";
|
|
983
983
|
export { IconHomePersonalFeed, default as IconHomePersonalFeedDefault, } from "./IconHomePersonalFeed";
|
|
984
984
|
export { IconHomeRoof, default as IconHomeRoofDefault } from "./IconHomeRoof";
|
|
985
|
+
export { IconHomeRoofDoor, default as IconHomeRoofDoorDefault, } from "./IconHomeRoofDoor";
|
|
985
986
|
export { IconHomeRoundDoor, default as IconHomeRoundDoorDefault, } from "./IconHomeRoundDoor";
|
|
986
987
|
export { IconHook, default as IconHookDefault } from "./IconHook";
|
|
987
988
|
export { IconHorizontalAlignmentBottom, default as IconHorizontalAlignmentBottomDefault, } from "./IconHorizontalAlignmentBottom";
|
|
@@ -1487,6 +1488,7 @@ export { IconRobinhood, default as IconRobinhoodDefault, } from "./IconRobinhood
|
|
|
1487
1488
|
export { IconRobot, default as IconRobotDefault } from "./IconRobot";
|
|
1488
1489
|
export { IconRobot2, default as IconRobot2Default } from "./IconRobot2";
|
|
1489
1490
|
export { IconRobot3, default as IconRobot3Default } from "./IconRobot3";
|
|
1491
|
+
export { IconRobotHeadSlop, default as IconRobotHeadSlopDefault, } from "./IconRobotHeadSlop";
|
|
1490
1492
|
export { IconRocket, default as IconRocketDefault } from "./IconRocket";
|
|
1491
1493
|
export { IconRockingHorse, default as IconRockingHorseDefault, } from "./IconRockingHorse";
|
|
1492
1494
|
export { IconRoller, default as IconRollerDefault } from "./IconRoller";
|