import React from 'react'; import { ICommand, IMarkdownEditor, ToolBarProps } from '@uiw/react-markdown-editor'; import toast from 'react-hot-toast'; import styled from 'styled-components'; const Button = styled.button` /* white-space: nowrap; width: initial !important; display: flex; align-items: center; */ `; const CopyView: React.FC<{ command: ICommand; editorProps: IMarkdownEditor & ToolBarProps }> = (props) => { const { editorProps } = props; const handleClick = () => { const dom: HTMLDivElement | null = editorProps.preview.current; if (!dom) { toast.error(