\r\n
\r\n
{title}
\r\n
\r\n Click Get Started below to continue.\r\n
\r\n {\"(We have sent you a confirmation email with your credentials.)\"}\r\n
\r\n\r\n
\r\n
\r\n
\r\n
\r\n);\r\n\r\nexport default Thanks;\r\n","import { Dialog, IconButton } from \"@material-ui/core\";\r\nimport { makeStyles, Theme } from \"@material-ui/core/styles\";\r\nimport CloseIcon from \"@material-ui/icons/Close\";\r\nimport styles from \"./ThanksModal.module.css\";\r\n// import { useState } from \"react\";\r\nimport ThanksView from \"../Thanks/Thanks\";\r\n\r\nexport interface IThanksModal {\r\n /* Controls to open the modal */\r\n isOpen: boolean;\r\n /* Callback to update the isOpen on the parent*/\r\n handleOnClose: () => void;\r\n /* URL to redirect */\r\n urlRedirect: string;\r\n}\r\n\r\n/* Custom style for Dialog */\r\nconst useStyles = makeStyles((theme: Theme) => ({\r\n paper: { maxWidth: \"624px\", width: \"100%\" },\r\n titleText: {\r\n color: theme.palette.secondary.light,\r\n fontWeight: 600,\r\n marginLeft: 8,\r\n },\r\n}));\r\n\r\nconst ThanksModal: React.FC