import React from 'react'; // import Clipboard from '../svg/Clipboard'; import EditIcon from '../svg/EditIcon'; export default function HoverButtons({ visible, onClick, endpoint }) { const enabled = endpoint in ['azureOpenAI', 'openAI', 'chatGPTBrowser']; return (
{visible && enabled ? ( <> ) : null} {/* */}
); }