import React from 'react'; import styled from '../'; const PageHeaderContainer = styled.div(({ theme }) => ({ display: 'flex', alignItems: 'center', overflow: 'hidden', boxSizing: 'border-box', width: '100%', paddingBottom: 24, '@media print': { display: 'none', }, [theme.breakpoints.mobileAndLower]: { paddingBottom: 16, minHeight: 0, }, })); const Title = styled.h1(({ theme }) => ({ margin: 0, font: theme.fonts.desktop.xxl, fontWeight: 700, [theme.breakpoints.mobileAndLower]: { font: theme.fonts.mobile.xxl, fontWeight: 700, }, })); export interface PageHeaderProps { title?: string; } export const PageHeader: React.FC = ({ title, children }) => ( {title ? {title} : children} );