import { useId } from "react"; import { Label } from "../../cmp/label"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "../../cmp/select"; import type { ThemePolarity } from "../types"; import { useTheme } from "../Provider"; export function PolarityPicker() { const id = useId(); const { themePolarity, setThemePolarity } = useTheme(); return (
); }