import React from "react";
import { useDispatch } from "react-redux";
import { modalActions } from "../../../store/modalSlice";
import IconWrapper from "../../globals/IconWrapper";
function AttachFileOrRecordDuration({ isRecording, formattedTime }) {
const dispatch = useDispatch();
// If user is not recording, show them option to attach an image or video
if (!isRecording)
return (