diff --git a/web/src/icons/Clock.jsx b/web/src/icons/Clock.jsx new file mode 100644 index 000000000..e813e006d --- /dev/null +++ b/web/src/icons/Clock.jsx @@ -0,0 +1,24 @@ +import { h } from 'preact'; +import { memo } from 'preact/compat'; + +export function Clock({ className = 'h-6 w-6', stroke = 'currentColor', fill = 'none', onClick = () => {} }) { + return ( + + + + ); +} + +export default memo(Clock);