import React from 'react'; import { Text, StyleSheet, Platform } from 'react-native'; import { withTheme } from '../config'; const DialogTitle = ({ title, titleStyle, titleProps, }) => { return ( {title} ); }; const styles = StyleSheet.create({ title: { fontSize: 18, fontWeight: Platform.OS === 'ios' ? '600' : '700', marginBottom: 10, }, }); export default withTheme(DialogTitle, 'DialogTitle');