A control that allows the user to toggle between on and off.
npx ghost-ui-native add switch
import { Switch } from '@/components/ui/switch';
const [on, setOn] = useState(false) <Switch checked={on} onCheckedChange={setOn} />