import React from 'react' import PropTypes from 'prop-types' import Radium from 'radium' import color from 'color' import classnames from 'classnames' require('./ContentTypeBtn.styl') export const ContentTypeBtn = props =>
{props.creationLabel}
export default Radium(ContentTypeBtn) ContentTypeBtn.propTypes = { hexcolor: PropTypes.string.isRequired, label: PropTypes.string.isRequired, faIcon: PropTypes.string.isRequired, creationLabel: PropTypes.string.isRequired, customClass: PropTypes.string, onClickBtn: PropTypes.func } ContentTypeBtn.defaultProps = { customClass: '' }