import React from 'react' import PropTypes from 'prop-types' import Radium from 'radium' import CardPopup from './CardPopup.jsx' require('./CardPopupCreateContent.styl') const PopupCreateContent = props => { return (
{props.label}
) } PopupCreateContent.propTypes = { onClose: PropTypes.func.isRequired, onValidate: PropTypes.func.isRequired, contentName: PropTypes.string.isRequired, onChangeContentName: PropTypes.func.isRequired, label: PropTypes.string, customColor: PropTypes.string, faIcon: PropTypes.string, btnValidateLabel: PropTypes.string, inputPlaceholder: PropTypes.string } PopupCreateContent.defaultProps = { label: '', customColor: '#333', inputPlaceHolder: '', btnValidateLabel: '' } export default Radium(PopupCreateContent)