import React from 'react'; import { CopyToClipboard } from '../utils'; export interface ILinkWithClipboardProps { url: string; text: string; } export const LinkWithClipboard = ({ url, text }: ILinkWithClipboardProps) => ( <> {text} );