mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
33 lines
635 B
TypeScript
33 lines
635 B
TypeScript
import { memo } from 'react'
|
|
import { getKeyboardKeyNameBySystem } from './utils'
|
|
import cn from '@/utils/classnames'
|
|
|
|
type ShortcutsNameProps = {
|
|
keys: string[]
|
|
className?: string
|
|
}
|
|
const ShortcutsName = ({
|
|
keys,
|
|
className,
|
|
}: ShortcutsNameProps) => {
|
|
return (
|
|
<div className={cn(
|
|
'flex items-center gap-0.5 h-4 text-xs text-gray-400',
|
|
className,
|
|
)}>
|
|
{
|
|
keys.map(key => (
|
|
<div
|
|
key={key}
|
|
className='capitalize'
|
|
>
|
|
{getKeyboardKeyNameBySystem(key)}
|
|
</div>
|
|
))
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default memo(ShortcutsName)
|