Files
yaak/src-web/components/core/HotKeyLabel.tsx
2024-05-29 12:10:01 -07:00

12 lines
328 B
TypeScript

import type { HotkeyAction } from '../../hooks/useHotKey';
import { useHotKeyLabel } from '../../hooks/useHotKey';
interface Props {
action: HotkeyAction;
}
export function HotKeyLabel({ action }: Props) {
const label = useHotKeyLabel(action);
return <span className="text-fg-subtle whitespace-nowrap">{label}</span>;
}