import * as React from 'react'; import copy from 'copy-text-to-clipboard'; import * as styles from './CopyText.scss'; import { Button } from './Button'; import { useI18n } from '../util/i18n'; export type Props = { value: string; label: string; onCopy?: () => unknown; }; export const CopyText = React.memo(({ label, onCopy, value }: Props) => { const i18n = useI18n(); const handleClick = React.useCallback(() => { copy(value); if (onCopy) { onCopy(); } }, [onCopy, value]); return (