import React from "react"; import toast from "react-hot-toast"; import { FiCopy } from "react-icons/fi"; import { Button } from "src/components/Button"; import { Modal } from "src/components/Modal"; import styled from "styled-components"; interface EdgeModalProps { selectedEdge: string; visible: boolean; closeModal: () => void; } const StyledTextarea = styled.textarea` resize: none; width: 100%; min-height: 200px; padding: 10px; background: ${({ theme }) => theme.BACKGROUND_TERTIARY}; color: ${({ theme }) => theme.INTERACTIVE_NORMAL}; outline: none; border-radius: 4px; line-height: 20px; border: none; `; export const EdgeModal = ({ selectedEdge, visible, closeModal }: EdgeModalProps) => { const handleClipboard = () => { toast.success("Content copied to clipboard!"); navigator.clipboard.writeText(selectedEdge); closeModal(); }; return ( Edge Content ); };