NamH 9ca6487183
chore: clean up use os hook (#1418)
Signed-off-by: James <james@jan.ai>
Co-authored-by: James <james@jan.ai>
2024-01-07 13:16:56 +07:00

11 lines
331 B
TypeScript

export default function ShortCut(props: { menu: string }) {
const { menu } = props
const symbol = isMac ? '⌘' : 'Ctrl'
return (
<div className="inline-flex items-center justify-center rounded-full bg-secondary px-1 py-0.5 text-xs font-bold text-muted-foreground">
<p>{symbol + ' + ' + menu}</p>
</div>
)
}