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