import * as React from "react"; const cssStyle = require("./Checkbox.scss"); export interface CheckboxProperties { label?: string; disabled?: boolean; onChange?: (value: boolean) => void; initialValue?: boolean; children?: never; } export interface CheckboxState { checked: boolean; } export class Checkbox extends React.Component { constructor(props) { super(props); this.state = { checked: this.props.initialValue }; } render() { const disabledClass = this.props.disabled ? cssStyle.disabled : ""; return (