import React, { FC } from 'react'; import { Button, IconButton, Tooltip } from '@grafana/ui'; import cn from 'classnames/bind'; import CopyToClipboard from 'react-copy-to-clipboard'; import { openNotification } from 'utils/utils'; import styles from './SourceCode.module.scss'; const cx = cn.bind(styles); interface SourceCodeProps { noMaxHeight?: boolean; showClipboardIconOnly?: boolean; showCopyToClipboard?: boolean; children?: any; className?: string; } export const SourceCode: FC = (props) => { const { children, noMaxHeight = false, showClipboardIconOnly = false, showCopyToClipboard = true, className } = props; const showClipboardCopy = showClipboardIconOnly || showCopyToClipboard; return (
{showClipboardCopy && ( { openNotification('Copied!'); }} > {showClipboardIconOnly ? ( ) : ( )} )}
        {children}
      
); };