import { Video, Mic, ChevronDown } from "lucide-react"; import { useRecordingStore } from "@/stores/recording-store"; import { cn } from "@/lib/utils"; import { Button } from "@/components/ui/button"; interface ControlsIndicatorProps { type: "reply" | "new"; } export default function ControlsIndicator({ type }: ControlsIndicatorProps) { const recordingMode = useRecordingStore((s) => s.recordingMode); const setRecordingMode = useRecordingStore((s) => s.setRecordingMode); return (
Hold{" "} ` {" "} to {type === "reply" ? "reply " : "start "} ยท Press{" "} T {" "} for text
); }