displayMenu(e)}
id="floatButtonNav"
className={clsx(styles.container, 'floatButtonNav', dragging ? styles.notrans : '')}
data-open={isOpen}
onMouseEnter={(e) => {
if (suction !== Suction.None) return;
+ if (isRightClick) return;
onOpen();
}}
onMouseLeave={(e) => {
@@ -283,6 +312,22 @@ export default function Index(props: any) {
height={24}
/>
+
{dragging && (
diff --git a/frontend/desktop/src/components/icons/index.tsx b/frontend/desktop/src/components/icons/index.tsx
new file mode 100644
index 00000000000..b399bfd1c86
--- /dev/null
+++ b/frontend/desktop/src/components/icons/index.tsx
@@ -0,0 +1,357 @@
+import { Icon, IconProps } from '@chakra-ui/react';
+
+export function ArrowLeftIcon(props: IconProps) {
+ return (
+