import styled from '@emotion/styled'; import { FaInfo } from 'react-icons/fa'; import { Toolbar, useOnOff } from 'react-science/ui'; import { StandardDialog } from '../elements/StandardDialog.tsx'; import { StyledDialogBody } from '../elements/StyledDialogBody.js'; const DialogBody = styled(StyledDialogBody)` ul { list-style-type: disc; margin-left: 25px; } p, li { font-size: 1.1em; user-select: text; } a { color: #00bcd4; } a:hover, a:focus { text-decoration: underline; } .header span { color: #464646; flex: 1; font-size: 15px; user-select: none; } p { padding: 0.8em 0; } `; function AboutPredictionModal() { const [isOpenDialog, openDialog, closeDialog] = useOnOff(false); return ( <> } onClick={openDialog} tooltip="About prediction" />

If you are using our tools please cite us:

1H NMR prediction is possible thanks to the tool of the FCT-Universidade NOVA de Lisboa developed by Yuri Binev and Joao Aires-de-Sousa:

13C NMR prediction was possible thanks to NMRshiftDB:

); } export default AboutPredictionModal;