mirror of
https://github.com/CarlGao4/um-react-electron.git
synced 2025-05-23 16:27:43 +08:00
16 lines
270 B
TypeScript
16 lines
270 B
TypeScript
import { Icon, Kbd } from '@chakra-ui/react';
|
|
import { BsShift } from 'react-icons/bs';
|
|
|
|
export function ShiftKey() {
|
|
return (
|
|
<ruby>
|
|
<Kbd>
|
|
<Icon as={BsShift} />
|
|
</Kbd>
|
|
<rp> (</rp>
|
|
<rt>shift</rt>
|
|
<rp>)</rp>
|
|
</ruby>
|
|
);
|
|
}
|