File size: 659 Bytes
4304c6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { memo } from 'react'
import cn from 'classnames'
import { getKeyboardKeyNameBySystem } from './utils'

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)