import { Container, Heading, Stack } from "@chakra-ui/react" import { useTheme } from "next-themes" import { Radio, RadioGroup } from "@/components/ui/radio" const Appearance = () => { const { theme, setTheme } = useTheme() return ( <> Appearance setTheme(e.value)} value={theme} colorPalette="teal" > System Light Mode Dark Mode ) } export default Appearance