({ id, Icon }: Command)
| 40 | } |
| 41 | |
| 42 | function Item({ id, Icon }: Command) { |
| 43 | const t = useTranslations(); |
| 44 | return ( |
| 45 | <div className="h-8 flex items-center whitespace-nowrap overflow-x-hidden" title={t(id as MessageKey)}> |
| 46 | {Icon && <Icon className="icon mr-2" />} |
| 47 | <span className="overflow-hidden text-ellipsis whitespace-nowrap">{t(id as MessageKey)}</span> |
| 48 | </div> |
| 49 | ); |
| 50 | } |