From 05b481187151af1479db682c518610076b8884b3 Mon Sep 17 00:00:00 2001 From: Gigiaj Date: Sun, 15 Jun 2025 22:04:59 -0500 Subject: [PATCH] Remove mobile click menu file --- src/app/features/room/MobileClickMenu.tsx | 61 ----------------------- 1 file changed, 61 deletions(-) delete mode 100644 src/app/features/room/MobileClickMenu.tsx diff --git a/src/app/features/room/MobileClickMenu.tsx b/src/app/features/room/MobileClickMenu.tsx deleted file mode 100644 index 48489079..00000000 --- a/src/app/features/room/MobileClickMenu.tsx +++ /dev/null @@ -1,61 +0,0 @@ -/* eslint-disable react/destructuring-assignment */ -import React from 'react'; -import { Box, Icon, Icons, Text } from 'folds'; -import classNames from 'classnames'; -import * as css from './RoomTimeline.css'; - -export function BottomSheetMenu({ - isOpen, - onClose, - children, -}: { - isOpen: boolean; - onClose: () => void; - children: React.ReactNode; -}) { - return ( -
- - ); -} - -export function MenuItemButton({ - icon, - label, - onClick, - destructive = false, -}: { - icon: string; - label: string; - onClick: () => void; - destructive?: boolean; -}) { - return ( - - - - {label} - - - ); -}