mirror of
https://git.unlock-music.dev/um/um-react.git
synced 2025-05-23 16:27:41 +08:00
13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
import { BsShift } from 'react-icons/bs';
|
|
import { Ruby } from '../Ruby';
|
|
|
|
export function ShiftKey({ className }: { className?: string }) {
|
|
return (
|
|
<Ruby caption="shift" className={className}>
|
|
<kbd className="kbd">
|
|
<BsShift className="text-sm" />
|
|
</kbd>
|
|
</Ruby>
|
|
);
|
|
}
|