diff --git a/packages/desktop/src/components/KeyboardShortcutLabel.tsx b/packages/desktop/src/components/KeyboardShortcutLabel.tsx index d540a3f..72d22ae 100644 --- a/packages/desktop/src/components/KeyboardShortcutLabel.tsx +++ b/packages/desktop/src/components/KeyboardShortcutLabel.tsx @@ -1,20 +1,21 @@ import React from 'react'; -import { Box, Typography } from '@mui/material'; +import { Box, Paper, Typography } from '@mui/material'; import { blueGrey } from '@mui/material/colors'; export default function KeyboardShortcutLabel({ label }: { label: string }) { return ( - {label} - + ); }