import React from 'react' import { buildClassName } from '../../Util' import css from './BoxHeader.module.styl' import Row from '../../Row' import Col from '../../Col' import Text from '../../Text' export interface Props { title?: string titleColSize?: number subtitle?: string delimiter?: boolean titleClassName?: string // image?: ImageProps } export default class BoxHeader extends React.Component { public render = () => ( <> {/* {this.props.image && ( )} */}
{this.props.title} {this.props.subtitle} {this.props.children}
) } /* Header delimiter?: boolean picture?: string // url category?: string // subtitle but above title title string subtitle string center?: boolean // if Center children is not used children?: content */