import styles from "./CheckboxOrRadio.module.css";
export function RawCheckboxOrRadio({ type, name, value, checked, disabled, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, onChange, onFocus, onBlur, children, }) {
    return (<div className={styles.container}>
      {children}
      <input className={styles.input} {...{
        type,
        name,
        value,
        checked,
        disabled,
        "aria-label": ariaLabel,
        "aria-labelledby": ariaLabelledBy,
        onChange,
        onFocus,
        onBlur,
    }}/>
    </div>);
}
//# sourceMappingURL=CheckboxOrRadio.jsx.map