From 1d74e6749fb642d7fec73e9c477e8be8a3a6c49a Mon Sep 17 00:00:00 2001 From: Scott Roach Date: Sat, 27 Feb 2021 17:55:40 -0800 Subject: [PATCH] added missing icon file --- web/src/icons/Delete.jsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 web/src/icons/Delete.jsx diff --git a/web/src/icons/Delete.jsx b/web/src/icons/Delete.jsx new file mode 100644 index 000000000..fc865b732 --- /dev/null +++ b/web/src/icons/Delete.jsx @@ -0,0 +1,13 @@ +import { h } from 'preact'; +import { memo } from 'preact/compat'; + +export function Delete({ className = '' }) { + return ( + + + + + ); +} + +export default memo(Delete);