import { Button as RNButton, StyleSheet, View, Platform } from 'react-native'; import React from 'react'; export const Button = props => ( ); const styles = StyleSheet.create({ margin: { ...Platform.select({ android: { margin: 10, }, }), }, });