| 47 | </View> |
| 48 | ) |
| 49 | } |
| 50 | |
| 51 | function getStyles(theme: Theme) { |
| 52 | return StyleSheet.create({ |
| 53 | closeIconContainer: { |
| 54 | position: 'absolute', |
| 55 | right: 3, |
| 56 | top: 3, |
| 57 | }, |
| 58 | chatOptionsTextContainer: { |
| 59 | flexDirection: 'row', |
| 60 | justifyContent:'center', |
| 61 | }, |
| 62 | logo: { |
| 63 | width: 22, height: 17, |
| 64 | marginRight: 10 |
| 65 | }, |
| 66 | chatOptionsText: { |
| 67 | color: theme.textColor, |
| 68 | marginBottom: 22, |
| 69 | textAlign: 'center', |
| 70 | fontSize: 16, |
| 71 | fontFamily: theme.semiBoldFont, |
| 72 | marginLeft: 10 |
| 73 | }, |
| 74 | bottomSheetContainer: { |
| 75 | borderColor: theme.borderColor, |
| 76 | borderWidth: 1, |
| 77 | padding: 24, |
| 78 | justifyContent: 'center', |
| 79 | backgroundColor: theme.backgroundColor, |
| 80 | marginHorizontal: 14, |
| 81 | marginBottom: 24, |
| 82 | borderRadius: 20 |
| 83 | } |
| 84 | }) |
| 85 | } |
| 86 | |