import { ThemedText } from "@/components/themed-text"; import { useAppTheme } from "@/hooks/use-app-theme"; import { View } from "react-native"; interface DescriptionProps { title?: string; description?: string; } export const Description = ({ title = "", description = "", }: DescriptionProps) => { const { colors } = useAppTheme(); return ( {title}: {description} ); };