import { Button } from "@/components/ui/button"; import { Label } from "@/components/ui/label"; import { Palette } from "lucide-react"; import { themeOptions } from "./shared/theme-options"; import type { Theme, Project } from "./types"; interface AppearanceSectionProps { effectiveTheme: Theme; currentProject: Project | null; onThemeChange: (theme: Theme) => void; } export function AppearanceSection({ effectiveTheme, currentProject, onThemeChange, }: AppearanceSectionProps) { return (
Customize the look and feel of your application.