You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
470 B
15 lines
470 B
import React from 'react';
|
|
import { View, StyleSheet } from 'react-native';
|
|
export const DialogActions = ({ children, }) => {
|
|
return (React.createElement(View, { style: styles.actionsView, testID: "Button__View" }, children));
|
|
};
|
|
const styles = StyleSheet.create({
|
|
actionsView: {
|
|
marginTop: 10,
|
|
flexDirection: 'row-reverse',
|
|
justifyContent: 'flex-start',
|
|
flexWrap: 'wrap',
|
|
},
|
|
});
|
|
DialogActions.displayName = 'Dialog.Actions';
|