poker-chips-helper/containers/Button.tsx
2025-03-02 16:21:33 -08:00

10 lines
325 B
TypeScript

import { ButtonProps, Button } from "react-native";
import { COLORS } from "@/styles/styles";
// More styling can be done, or swap this out with more flexible component like a TouchableOpacity if needed
const AppButton = (props: ButtonProps) => (
<Button color={COLORS.PRIMARY} {...props} />
);
export default AppButton;