import classNames from "classnames"; import { Laptop, Smartphone } from "lucide-react"; import { useEditor } from "@/hooks/useEditor"; const DEVICES = [ { name: "desktop", icon: Laptop, }, { name: "mobile", icon: Smartphone, }, ]; export const SwitchDevice = () => { const { device, setDevice } = useEditor(); return (