From 3d28d8cee26889c9d2330e00742df502724dcb3b Mon Sep 17 00:00:00 2001 From: ElMoribond Date: Mon, 21 Jun 2021 17:04:55 +0200 Subject: [PATCH] Add ability to restart --- web/src/icons/FrigateRestart.jsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 web/src/icons/FrigateRestart.jsx diff --git a/web/src/icons/FrigateRestart.jsx b/web/src/icons/FrigateRestart.jsx new file mode 100644 index 000000000..bb14e03b4 --- /dev/null +++ b/web/src/icons/FrigateRestart.jsx @@ -0,0 +1,13 @@ +import { h } from 'preact'; +import { memo } from 'preact/compat'; + +export function FrigateRestart({ className = '' }) { + return ( + + + + + ); +} + +export default memo(FrigateRestart);