import { ChevronLeft } from '@liam-hq/ui' import type { FC } from 'react' import styles from './ShowModeMenu.module.css' import { ShowModeMenuRadioGroup } from './ShowModeMenuRadioGroup' type Props = { toggleOpenClose: () => void toggleShowModeMenu: () => void } export const ShowModeMenu: FC = ({ toggleOpenClose, toggleShowModeMenu, }) => { return (

) }