"use client" import Image from "next/image" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/components/ui/select" import { LayoutName, allLayoutLabels, defaultLayout, layoutIcons } from "@/app/layouts" export function SelectLayout({ defaultValue = defaultLayout, onLayoutChange, disabled = false, layouts = [], }: { defaultValue?: string | undefined onLayoutChange?: ((name: LayoutName) => void) disabled?: boolean layouts: string[] }) { return ( ) }