import type { InputHTMLAttributes } from 'react'
import React, { forwardRef } from 'react'
export interface CheckboxProps
extends Omit, 'type'> {
/**
* ID to find this component in testing tools (e.g.: cypress, testing library, and jest).
*/
testId?: string
/**
* Boolean that represents a partial state.
*/
partial?: boolean
}
const Checkbox = forwardRef(function Checkbox(
{ testId = 'fs-checkbox', partial, ...otherProps }: CheckboxProps,
ref
) {
return (
)
})
export default Checkbox