import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; interface ThemeSelectorProps { value?: string; onValueChange: (value: string) => void; className?: string; } const THEMES = [ { value: "default", label: "Default" }, { value: "paper", label: "Paper" }, ] as const; export const ThemeSelector = ({ value = "default", onValueChange, className }: ThemeSelectorProps) => { return ( ); }; export default ThemeSelector;