import { Button } from "@pswui/Button.tsx";
import { Popover, PopoverContent, PopoverTrigger } from "@pswui/Popover.tsx";
import { useState } from "react";
const DarkIcon = () => {
// ic:baseline-dark-mode
return (
);
};
const LightIcon = () => {
// ic:baseline-light-mode
return (
);
};
export const ThemeSelector = () => {
const [theme, setTheme] = useState<"light" | "dark">("dark");
return (
);
};