31 lines
626 B
TypeScript
31 lines
626 B
TypeScript
// components/Button/buttonStyles.js
|
|
|
|
import { StyleSheet } from "react-native";
|
|
|
|
export default function buttonStyles({
|
|
backgroundColor = "#007AFF",
|
|
textColor = "#FFFFFF",
|
|
borderRadius = 8,
|
|
}) {
|
|
return StyleSheet.create({
|
|
button: {
|
|
backgroundColor,
|
|
paddingVertical: 12,
|
|
paddingHorizontal: 20,
|
|
borderRadius,
|
|
flexDirection: "row", // 👈 Tambahkan baris ini
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
gap: 8,
|
|
},
|
|
buttonText: {
|
|
color: textColor,
|
|
fontSize: 16,
|
|
fontWeight: "600",
|
|
},
|
|
disabled: {
|
|
opacity: 0.5,
|
|
},
|
|
});
|
|
}
|