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);