From 181351aa187e5a151cbe80dc87bc58ede3be5d79 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Wed, 4 Oct 2023 06:15:09 -0600 Subject: [PATCH] Add face icon --- web/src/icons/Face.jsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 web/src/icons/Face.jsx diff --git a/web/src/icons/Face.jsx b/web/src/icons/Face.jsx new file mode 100644 index 000000000..f68218711 --- /dev/null +++ b/web/src/icons/Face.jsx @@ -0,0 +1,22 @@ +import { h } from 'preact'; +import { memo } from 'preact/compat'; + +export function Zone({ className = 'h-6 w-6', stroke = 'currentColor', fill = 'none', onClick = () => {} }) { + return ( + + + + ); +} + +export default memo(Zone);