Files
react-native-web/packages/react-native-web-examples/shared/button.js
T
2023-04-12 10:59:31 -07:00

24 lines
506 B
JavaScript

import { StyleSheet, Text, Pressable } from 'react-native';
export default function Button(props) {
const { title, ...other } = props;
return (
<Pressable {...other} style={styles.button}>
<Text style={styles.buttonText}>{title}</Text>
</Pressable>
);
}
const styles = StyleSheet.create({
button: {
backgroundColor: 'lightblue',
borderRadius: 10,
paddingBlock: 5,
paddingInline: 10
},
buttonText: {
fontWeight: 'bold',
textTransform: 'uppercase'
}
});