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