import Radium from 'radium' import PropTypes from 'prop-types' import React, { Component } from 'react' import style from './Input.style' class Input extends Component { static propTypes = { password: PropTypes.bool, children: PropTypes.node } render() { return ( {this.props.children} ) } } export default Radium(Input)