UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

11 lines (8 loc) 273 B
'use client'; import { useMachine, normalizeProps } from '@zag-js/react'; import * as toggle from '@zag-js/toggle'; function useToggle(props) { const service = useMachine(toggle.machine, props); return toggle.connect(service, normalizeProps); } export { useToggle };