import { h } from 'preact'; import PropTypes from 'prop-types'; import { ButtonNew as Button } from '@crayons'; import CopyIcon from '@images/copy.svg'; function linksToMarkdownForm(imageLinks) { return imageLinks .map((imageLink) => ``) .join('\n'); } export const ClipboardButton = ({ onCopy, imageUrls, showCopyMessage = false, }) => (