summaryrefslogtreecommitdiff
path: root/frontend/src/components/ElementView.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/ElementView.tsx')
-rw-r--r--frontend/src/components/ElementView.tsx19
1 files changed, 19 insertions, 0 deletions
diff --git a/frontend/src/components/ElementView.tsx b/frontend/src/components/ElementView.tsx
new file mode 100644
index 0000000..4f9d489
--- /dev/null
+++ b/frontend/src/components/ElementView.tsx
@@ -0,0 +1,19 @@
+import { FC } from 'react';
+import { Element } from '../types';
+
+interface ElementViewProps {
+ element: Element;
+}
+
+const ElementView: FC<ElementViewProps> = ({ element }) => {
+ return (
+ <div className='flex flex-row m-2 rounded-md border border-gray-300 bg-gray-100 w-fit h-fit'>
+ <div className='flex flex-col items-center'>
+ <img src={`data:image/png;base64,${element.icon}`} width='80px' height='80px'/>
+ <p className='my-1 mx-2 text-sm'>{element.name}</p>
+ </div>
+ </div>
+ );
+};
+
+export default ElementView;