import React from 'react' import PropTypes from 'prop-types' import Icon from './icon' import Text from './text' import Button from './button' class DeckColumnHeader extends React.PureComponent { render() { const { title, subtitle, icon, children, } = this.props return (
{title} { !!subtitle && {subtitle} }
) } } DeckColumnHeader.propTypes = { title: PropTypes.string, subtitle: PropTypes.string, icon: PropTypes.string, } export default DeckColumnHeader