/* eslint-disable react/display-name */ import React from 'react'; export const IndeterminateCheckbox = React.forwardRef( ({indeterminate, ...rest}: any, ref) => { const defaultRef = React.useRef(); const resolvedRef: any = ref || defaultRef; React.useEffect(() => { resolvedRef.current.indeterminate = indeterminate; }, [resolvedRef, indeterminate]); return ( <> ); }, );