mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
import { BsCommand } from 'react-icons/bs';
|
|
import { Ruby } from '../Ruby';
|
|
|
|
export function MacCommandKey({ className }: { className?: string }) {
|
|
return (
|
|
<Ruby caption="command" className={className}>
|
|
<kbd className="kbd">
|
|
<BsCommand className="text-sm" />
|
|
</kbd>
|
|
</Ruby>
|
|
);
|
|
}
|