From 369f793d2e3eb048abc5fc8714f485b96c6d7202 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 13 Jan 2022 12:21:28 -0700 Subject: [PATCH] Add icon for retaining event --- web/src/icons/StarRecording.jsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 web/src/icons/StarRecording.jsx diff --git a/web/src/icons/StarRecording.jsx b/web/src/icons/StarRecording.jsx new file mode 100644 index 000000000..ffe792160 --- /dev/null +++ b/web/src/icons/StarRecording.jsx @@ -0,0 +1,12 @@ +import { h } from 'preact'; +import { memo } from 'preact/compat'; + +export function ArrowDropdown({ className = '' }) { + return ( + + + + ); +} + +export default memo(ArrowDropdown);