/** * Device Switcher Component * Toggle between desktop and mobile preview */ import { Button } from '@/components/ui/button'; import { Monitor, Smartphone } from 'lucide-react'; import type { DevicePreview } from '../types'; interface DeviceSwitcherProps { device: DevicePreview; onChange: (device: DevicePreview) => void; } export function DeviceSwitcher({ device, onChange }: DeviceSwitcherProps) { return (
); } export default DeviceSwitcher;