diff --git a/src/components/WhisperButton.tsx b/src/components/WhisperButton.tsx index b856dd6..30a6c53 100644 --- a/src/components/WhisperButton.tsx +++ b/src/components/WhisperButton.tsx @@ -3,6 +3,12 @@ import { createRef } from "preact"; import { ChatStore } from "@/types/chatstore"; import { StateUpdater, useEffect, useState, Dispatch } from "preact/hooks"; import { Button } from "@/components/ui/button"; +import { + AudioWaveform, + AudioWaveformIcon, + MicIcon, + VoicemailIcon, +} from "lucide-react"; const WhisperButton = (props: { chatStore: ChatStore; @@ -14,11 +20,14 @@ const WhisperButton = (props: { const [isRecording, setIsRecording] = useState("Mic"); return ( ); };