import { Subscriber } from 'react-broadcast';
import isString from 'lodash.isstring';
import { Baseline, typography } from '../../shared/composers';
import { colors } from '../../shared/constants';
import { remcalc, is } from '../../shared/functions';
import styled from 'styled-components';
import React from 'react';
const Container = styled.div`
font-size: ${remcalc(15)};
line-height: 1.5;
color: ${colors.base.secondary};
${typography.bold}
display: flex;
flex-direction: row;
justify-content: flex-start;
flex-grow: 2;
width: 100%;
padding: ${remcalc(12)} ${remcalc(18)} 0 ${remcalc(18)};
${is('fromHeader')`
color: ${colors.base.white};
`};
${is('collapsed')`
flex-grow: 0;
flex-direction: column;
width: auto;
justify-content: center;
padding: 0 ${remcalc(18)};
`};
`;
const Span = styled.span`
display: inline-block;
flex-direction: column;
justify-content: center;
${is('collapsed')`
display: flex;
`};
`;
const Title = ({
children,
...props
}) => {
const _children = !isString(children) ? children : (
{children}
);
const render = ({
collapsed = false,
fromHeader = false
}) => (
{_children}
);
return (
{render}
);
};
Title.propTypes = {
children: React.PropTypes.node,
collapsed: React.PropTypes.bool,
fromHeader: React.PropTypes.bool
};
export default Baseline(
Title
);