UNPKG

508 BJavaScriptView Raw
1import React from 'react';
2import { View, StyleSheet } from 'react-native';
3import { withTheme } from '../config';
4const DialogActions = ({ children, }) => {
5 return (<View style={styles.actionsView} testID="Button__View">
6 {children}
7 </View>);
8};
9const styles = StyleSheet.create({
10 actionsView: {
11 marginTop: 10,
12 marginRight: -35,
13 flexDirection: 'row-reverse',
14 justifyContent: 'flex-start',
15 },
16});
17export default withTheme(DialogActions, 'DialogActions');