'use client' import React, { useState } from 'react' import { useTranslation } from 'react-i18next' import { RiFileCopyLine } from '@remixicon/react' import copy from 'copy-to-clipboard' import { debounce } from 'lodash-es' import Tooltip from '@/app/components/base/tooltip' type Props = { content: string } const prefixEmbedded = 'appOverview.overview.appInfo.embedded' const CopyFeedbackNew = ({ content }: Props) => { const { t } = useTranslation() const [isCopied, setIsCopied] = useState(false) const onClickCopy = debounce(() => { copy(content) setIsCopied(true) }, 100) const onMouseLeave = debounce(() => { setIsCopied(false) }, 100) return (
e.stopPropagation()} onMouseLeave={onMouseLeave}>
{content}
) } export default CopyFeedbackNew