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 ( -