UNPKG

@nodeject/ui-components

Version:

UI library for non-trivial components

10 lines (9 loc) 235 B
export interface UseToggleProps { initialState?: boolean; } export declare const useToggle: (args?: UseToggleProps) => { active: boolean; toggle: () => void; toggleOff: () => void; toggleOn: () => void; };