// @ts-nocheck import React from 'react'; import { useFormikContext } from 'formik'; import { Intent, Button } from '@blueprintjs/core'; import { DialogFooter, DialogFooterActions, FormattedMessage as T, } from '@/components'; /** * */ export default function NotifyViaSMSFormFloatingActions({ onCancel }) { // Formik context. const { isSubmitting } = useFormikContext(); // Handle close button click. const handleCancelBtnClick = (event) => { onCancel && onCancel(event); }; return ( ); }