import React from 'react'; import { Box, Paper, Typography } from '@mui/material'; import { blueGrey } from '@mui/material/colors'; export default function KeyboardShortcutLabel({ label }: { label: string }) { return ( {label} ); }