"use client"; import { Button } from "@/components/ui/button"; import { Bluetooth, LoaderCircle } from "lucide-react"; interface DeviceScanPanelProps { scanning: boolean; onScan: () => void; onStopScan: () => void; } export function DeviceScanPanel({ scanning, onScan, onStopScan }: DeviceScanPanelProps) { return ( ); }