diff --git a/src/assets/images/ReportsIcon.js b/src/assets/images/ReportsIcon.js
new file mode 100644
index 0000000..ad607b4
--- /dev/null
+++ b/src/assets/images/ReportsIcon.js
@@ -0,0 +1,31 @@
+import PropTypes from 'prop-types';
+const ReportsIcon = ({ width = 96, height = 96, color = '#007aff', ...props }) => (
+
+);
+export default ReportsIcon;
+
+ReportsIcon.propTypes = {
+ width: PropTypes.string,
+ height: PropTypes.string,
+ color: PropTypes.string
+};
diff --git a/src/assets/images/ScanIcon.js b/src/assets/images/ScanIcon.js
new file mode 100644
index 0000000..5193b97
--- /dev/null
+++ b/src/assets/images/ScanIcon.js
@@ -0,0 +1,45 @@
+import PropTypes from 'prop-types';
+
+const ScanIcon = ({ width = '96', height = '96', color = '#007AFF', ...props }) => (
+
+);
+
+export default ScanIcon;
+
+ScanIcon.propTypes = {
+ width: PropTypes.string,
+ height: PropTypes.string,
+ color: PropTypes.string
+};
diff --git a/src/assets/images/SearchInventoryIcon.js b/src/assets/images/SearchInventoryIcon.js
new file mode 100644
index 0000000..8db5cb0
--- /dev/null
+++ b/src/assets/images/SearchInventoryIcon.js
@@ -0,0 +1,51 @@
+import PropTypes from 'prop-types';
+
+const SearchInventoryIcon = ({ width = '78', height = '86', color = '#007AFF', ...props }) => (
+
+);
+
+export default SearchInventoryIcon;
+
+SearchInventoryIcon.propTypes = {
+ width: PropTypes.string,
+ height: PropTypes.string,
+ color: PropTypes.string
+};
diff --git a/src/assets/images/SetupIcon.js b/src/assets/images/SetupIcon.js
index b3cfed6..2db6f87 100644
--- a/src/assets/images/SetupIcon.js
+++ b/src/assets/images/SetupIcon.js
@@ -1,6 +1,6 @@
import PropTypes from 'prop-types';
-const SetupIcon = ({ width = 25, height = 24, color = '#292D32', ...props }) => (
+const SetupIcon = ({ width = 96, height = 96, color = '#007aff', ...props }) => (