From 41538561ee6039b02d89f90e1dca48bcc5772c83 Mon Sep 17 00:00:00 2001 From: Gigiaj Date: Sun, 15 Jun 2025 16:06:15 -0500 Subject: [PATCH] Add a placeholder class for now (move to MessageOptionsMenu later) --- src/app/features/room/MobileClickMenu.tsx | 61 +++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/app/features/room/MobileClickMenu.tsx diff --git a/src/app/features/room/MobileClickMenu.tsx b/src/app/features/room/MobileClickMenu.tsx new file mode 100644 index 00000000..48489079 --- /dev/null +++ b/src/app/features/room/MobileClickMenu.tsx @@ -0,0 +1,61 @@ +/* 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} + + + ); +}