import { Video, Mic } from "lucide-react";
import { useRecordingMode } from "@/hooks/use-recording-mode";
import { cn } from "@/lib/utils";
import { Button } from "@/components/ui/button";
interface ControlsIndicatorProps {
type: "reply" | "new";
}
export default function ControlsIndicator({ type }: ControlsIndicatorProps) {
const [recordingMode, setRecordingMode] = useRecordingMode();
return (
Hold{" "}
`
{" "}
to {type === "reply" ? "reply " : "start "}
ยท Press{" "}
T
{" "}
for text
);
}