Deskripsi: - fitur ganti mode tema - penerapan tema pada semua fitur NO Issues
25 lines
807 B
TypeScript
25 lines
807 B
TypeScript
import Styles from "@/constants/Styles";
|
|
import { useTheme } from "@/providers/ThemeProvider";
|
|
import React from "react";
|
|
import { TouchableWithoutFeedback, View } from "react-native";
|
|
import Text from "./Text";
|
|
|
|
type Props = {
|
|
onPress?: () => void;
|
|
icon: React.ReactNode;
|
|
text: string;
|
|
};
|
|
|
|
export function ButtonFiturMenu({ onPress, icon, text }: Props) {
|
|
const { colors } = useTheme();
|
|
return (
|
|
<TouchableWithoutFeedback onPress={onPress}>
|
|
<View style={{ alignItems: 'center' }}>
|
|
<View style={[Styles.btnFiturMenu, { backgroundColor: colors.card, borderColor: colors.icon + '20', shadowColor: colors.text }]}>
|
|
{icon}
|
|
</View>
|
|
<Text style={[Styles.mt05]}>{text}</Text>
|
|
</View>
|
|
</TouchableWithoutFeedback>
|
|
)
|
|
} |