+
+ {/** TODO: Remove this and actually use the other icons library once we get the query manager merged in */}
+ {value ? (
+
+ ) : (
+
+ )}
+
+
onChange(event.target.value)}
+ />
+
+ );
+};
+
+export default SearchInput;
diff --git a/src/components/common/Input/index.ts b/src/components/common/Input/index.ts
new file mode 100644
index 0000000..8300e87
--- /dev/null
+++ b/src/components/common/Input/index.ts
@@ -0,0 +1,3 @@
+import SearchInput from './SearchInput';
+
+export default SearchInput;
diff --git a/src/components/common/Table/Table.tsx b/src/components/common/Table/Table.tsx
new file mode 100644
index 0000000..0c5c99a
--- /dev/null
+++ b/src/components/common/Table/Table.tsx
@@ -0,0 +1,7 @@
+import React from 'react';
+
+const Table: React.FC<{ className?: string }> = ({ className = '', children }): JSX.Element => {
+ return