import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter, } from "@/components/ui/dialog"; import { Button } from "@/components/ui/button"; interface ThemeApplyConfirmDialogProps { open: boolean; onConfirm: () => void; onCancel: () => void; } export function ThemeApplyConfirmDialog({ open, onConfirm, onCancel, }: ThemeApplyConfirmDialogProps) { return ( { if (!isOpen) onCancel(); }}> Apply theme? This will update your Nexus color scheme. You can revert from Settings. ); }