import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; import Colors from '@/constants/Colors'; type AdhkarCardProps = { title: string; }; export default function AdhkarCard({ title }: AdhkarCardProps) { const colorScheme = 'dark'; return ( {title} ); } const styles = StyleSheet.create({ container: { borderRadius: 15, padding: 20, marginVertical: 10, }, title: { fontSize: 16, fontWeight: 'bold', color: Colors.dark.text, }, });