import * as React from 'react'; import { Component, Styles, Text, Types, View } from 'reactxp'; const styles = { header: { default: Styles.createViewStyle({ flex: 0, paddingTop: 4, paddingRight: 24, paddingLeft: 24, paddingBottom: 24, }), }, title: Styles.createTextStyle({ fontFamily: 'DINPro', fontSize: 32, fontWeight: '900', lineHeight: 32, color: 'rgb(255, 255, 255)', }), subtitle: Styles.createTextStyle({ marginTop: 8, fontFamily: 'Open Sans', fontSize: 13, fontWeight: '600', overflow: 'visible', color: 'rgba(255, 255, 255, 0.8)', // colors.white80 lineHeight: 20, letterSpacing: -0.2, }), }; interface ISettingsHeaderProps { style?: Types.ViewStyleRuleSet; } export default class SettingsHeader extends Component { public render() { return {this.props.children}; } } export class HeaderTitle extends Component { public render() { return {this.props.children}; } } export class HeaderSubTitle extends Component { public render() { return {this.props.children}; } }