import React, { forwardRef } from 'react' import { WidgetBlock, type CheckboxProps } from 'mireco' import { CheckboxInput } from './checkbox-input' export type { CheckboxProps } export const Checkbox = forwardRef((props, ref) => { const { children, block, ...inputProps } = props return ( ) })