Spaces:
Paused
Paused
| import { IconCheck, IconKey, IconX } from '@tabler/icons-react'; | |
| import { FC, KeyboardEvent, useEffect, useRef, useState } from 'react'; | |
| import { useTranslation } from 'next-i18next'; | |
| import { SidebarButton } from '../Sidebar/SidebarButton'; | |
| interface Props { | |
| apiKey: string; | |
| onApiKeyChange: (apiKey: string) => void; | |
| } | |
| export const Key: FC<Props> = ({ apiKey, onApiKeyChange }) => { | |
| return null; | |
| }; | |