'use client'; import { cn } from '@/lib/utils'; type Props = { recording: boolean; onClick: () => void; disabled?: boolean; }; export function RecordButton({ recording, onClick, disabled }: Props) { return ( ); }