# useToggle
A state hook for managing a boolean value with easy-to-use methods for toggling or explicitly setting its value.
## Usage
```tsx
import { useToggle } from '@gilbarbara/hooks';
function Component() {
const [value, { toggle, toggleOn, toggleOff }] = useToggle(true);
return (