import { Loader2, Volume2 } from "lucide-solid" import type { JSX } from "solid-js" interface SpeechActionButtonProps { class?: string title: string isLoading: boolean isPlaying: boolean onClick: JSX.EventHandlerUnion type?: "button" | "submit" | "reset" } export default function SpeechActionButton(props: SpeechActionButtonProps) { return ( ) }