Files
yaak/src-web/components/core/HotKeyLabel.tsx
2024-05-21 17:56:06 -07:00

12 lines
310 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">{label}</span>;
}