import * as React from "react"; import Modal from "react-modal"; const SliceMachineModal: React.FunctionComponent = (props) => { const modalStyle = { content: { padding: "0px", top: "10%", maxWidth: "950px", margin: "auto", border: "0", background: "0", borderRadius: "6px", ...props.style?.content, }, overlay: { backgroundColor: "rgba(11, 11, 12, 0.9)", backdropFilter: "blur(3px)", overflow: "auto", ...props.style?.overlay, }, }; return ; }; export default SliceMachineModal;