import { Box, Paper, Typography } from '@mui/material'; import { KeyboardShortcuts } from '../util/keyboard'; import React from 'react'; import { blueGrey } from '@mui/material/colors'; export default function KeyboardShortcutLabel({ label, }: { label: keyof typeof KeyboardShortcuts; }) { return ( {label} ); }