You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
400 B
17 lines
400 B
3 years ago
|
import React from "react";
|
||
|
|
||
|
export const Checkbox = React.forwardRef(({ indeterminate, ...rest }, ref) => {
|
||
|
const defaultRef = React.useRef();
|
||
|
const resolvedRef = ref || defaultRef;
|
||
|
|
||
|
React.useEffect(() => {
|
||
|
resolvedRef.current.indeterminate = indeterminate;
|
||
|
}, [resolvedRef, indeterminate]);
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<input type="checkbox" ref={resolvedRef} {...rest} />
|
||
|
</>
|
||
|
);
|
||
|
});
|