34 lines
564 B
TypeScript
34 lines
564 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
import sharedStyles from '../../views/Styles';
|
|
|
|
export const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
padding: 16,
|
|
backgroundColor: '#fff'
|
|
},
|
|
iconContainer: {
|
|
alignItems: 'center',
|
|
padding: 24
|
|
},
|
|
title: {
|
|
fontSize: 20,
|
|
lineHeight: 30,
|
|
marginBottom: 24,
|
|
...sharedStyles.textBold
|
|
},
|
|
subtitle: {
|
|
fontSize: 16,
|
|
lineHeight: 24,
|
|
marginBottom: 24,
|
|
...sharedStyles.textBold
|
|
},
|
|
description: {
|
|
fontSize: 16,
|
|
lineHeight: 24,
|
|
marginBottom: 24,
|
|
...sharedStyles.textRegular
|
|
}
|
|
});
|