import {VisuallyHidden, useSwitch} from "@heroui/react"; export const MoonIcon = (props) => { return ( ); }; export const SunIcon = (props) => { return ( ); }; const ThemeSwitch = (props) => { const {Component, slots, isSelected, getBaseProps, getInputProps, getWrapperProps} = useSwitch(props); return (
Lights: {isSelected ? "on" : "off"}