// @ts-nocheck import React from 'react'; import { Intent } from '@blueprintjs/core'; import { Form } from 'formik'; import styled from 'styled-components'; import { FInputGroup, FFormGroup, FormattedMessage as T } from '@/components'; import { AuthSubmitButton } from './_components'; /** * Send reset password form. */ export default function SendResetPasswordForm({ isSubmitting }) { return (
); } const TopParagraph = styled.p` margin-bottom: 1.6rem; opacity: 0.8; `;