1
0
forked from fr/deguapp
deguapp/frontend/components/Button.js

42 lines
778 B
JavaScript
Raw Normal View History

2024-05-05 17:44:42 +02:00
import React from "react";
import { Text, StyleSheet, Pressable } from "react-native";
export default function Button(props) {
const { onPress, title = "Button", color = "black" } = props;
return (
<Pressable
style={({ pressed }) => [
{
backgroundColor: pressed
? "rgb(210, 230, 255 )"
: color
? color
: "black",
},
styles.button,
]}
onPress={onPress}
>
<Text style={styles.text}>{title}</Text>
</Pressable>
);
2024-05-05 17:44:42 +02:00
}
const styles = StyleSheet.create({
button: {
alignItems: "center",
justifyContent: "center",
paddingVertical: 12,
paddingHorizontal: 32,
borderRadius: 4,
elevation: 3,
},
text: {
fontSize: 16,
lineHeight: 21,
fontWeight: "bold",
letterSpacing: 0.25,
color: "white",
},
2024-05-05 17:44:42 +02:00
});