import './checkbox.scss' import React from 'react' import { autobind, cssNames } from "../../utils"; interface Props { theme?: "dark" | "light"; className?: string; label?: React.ReactNode; inline?: boolean; disabled?: boolean; value?: T; onChange?(value: T, evt: React.ChangeEvent): void; } export class Checkbox extends React.PureComponent { private input: HTMLInputElement; @autobind() onChange(evt: React.ChangeEvent) { if (this.props.onChange) { this.props.onChange(this.input.checked, evt) } } getValue() { if (this.props.value !== undefined) return this.props.value; return this.input.checked; } render() { const { label, inline, className, value, theme, children, ...inputProps } = this.props; const componentClass = cssNames('Checkbox flex', className, { inline: inline, checked: value, disabled: this.props.disabled, ["theme-" + theme]: theme, }); return ( ); } }