UNPKG

@wordpress/components

Version:
34 lines (30 loc) 642 B
import { createElement } from "@wordpress/element"; /** * External dependencies */ import { TouchableOpacity, View, Text } from 'react-native'; /** * Internal dependencies */ import styles from './styles.scss'; const BottomSheetButton = ({ onPress, disabled, text, color }) => createElement(TouchableOpacity, { accessible: true, onPress: onPress, disabled: disabled }, createElement(View, { style: { flexDirection: 'row', justifyContent: 'center' } }, createElement(Text, { style: { ...styles.buttonText, color } }, text))); export default BottomSheetButton; //# sourceMappingURL=button.native.js.map