Files
yaak/src-web/components/core/HotKey.tsx
Gregory Schier a209a486aa Move stuff around
2023-03-13 23:30:14 -07:00

16 lines
374 B
TypeScript

import classnames from 'classnames';
import type { HTMLAttributes } from 'react';
export function HotKey({ children }: HTMLAttributes<HTMLSpanElement>) {
return (
<span
className={classnames(
'bg-gray-400 bg-opacity-20 px-1.5 py-0.5 rounded text-sm',
'font-mono text-gray-500 tracking-widest',
)}
>
{children}
</span>
);
}