diff --git a/src/assets/images/HomeIcon.js b/src/assets/images/HomeIcon.js
new file mode 100644
index 0000000..3eb238a
--- /dev/null
+++ b/src/assets/images/HomeIcon.js
@@ -0,0 +1,28 @@
+import React from 'react';
+
+export default function HomeIcon({ width = 24, height = 24, stroke = 'white' }) {
+ return (
+
+ );
+}
+
+HomeIcon.propTypes = {
+ width: Number,
+ height: Number,
+ stroke: String
+};
diff --git a/src/assets/images/SearchInventoryIcon.js b/src/assets/images/SearchInventoryIcon.js
index 8db5cb0..6ddbe56 100644
--- a/src/assets/images/SearchInventoryIcon.js
+++ b/src/assets/images/SearchInventoryIcon.js
@@ -1,6 +1,6 @@
import PropTypes from 'prop-types';
-const SearchInventoryIcon = ({ width = '78', height = '86', color = '#007AFF', ...props }) => (
+const SearchInventoryIcon = ({ width = 78, height = 86, color = '#007AFF', ...props }) => (