import copy from "copy-to-clipboard"; interface Props { copyText: string; stroke?: string; strokeWidth?: number; } const CopyAndPaste = (props: Props) => (
copy(props.copyText)}>
); export default CopyAndPaste;