2025-03-03 03:39:02 +00:00
|
|
|
"use client";
|
|
|
|
|
2025-03-12 13:15:44 +00:00
|
|
|
import { Settings } from "lucide-react";
|
2025-03-12 03:48:41 +00:00
|
|
|
import { useSettingsStore } from "@/store/useSettingsStore";
|
2025-03-12 13:15:44 +00:00
|
|
|
import { DropdownMenuItem } from "@/components/ui/dropdown-menu";
|
2025-03-03 03:39:02 +00:00
|
|
|
|
2025-03-12 13:15:44 +00:00
|
|
|
export function SettingsButton() {
|
2025-03-12 03:48:41 +00:00
|
|
|
const { setDialogOpen } = useSettingsStore();
|
|
|
|
|
2025-03-03 03:39:02 +00:00
|
|
|
return (
|
2025-03-12 13:15:44 +00:00
|
|
|
<DropdownMenuItem onClick={() => setDialogOpen(true)}>
|
|
|
|
<Settings />
|
|
|
|
Settings
|
|
|
|
</DropdownMenuItem>
|
2025-03-03 03:39:02 +00:00
|
|
|
);
|
|
|
|
}
|