import classnames from 'classnames'; import { Classes } from 'jss'; import { observer } from 'mobx-react'; import React, { Component } from 'react'; import injectSheet from 'react-jss'; import { IFormField } from '../typings/generic'; import styles from './styles'; interface ILabel extends IFormField, React.LabelHTMLAttributes { classes: Classes; } @observer class Label extends Component { static defaultProps = { showLabel: true, }; render() { const { title, showLabel, classes, className, children, htmlFor, } = this.props; return ( ); } } export default injectSheet(styles)(Label);