import { View, Text, StyleSheet, ColorValue } from 'react-native' import React from 'react' import { useThemeColor } from '../../../hooks/hooks'; import CustomCard from "../../common/customCard/CustomCard"; import { SIZES } from '../../../constants/theme'; export type ExpenseItemProps = {color: ColorValue, category: string, title: string, date: string, value : string} export default function ExpenseItem(itemProps : ExpenseItemProps) { const textColor = useThemeColor("primaryText"); const backgroundColor = useThemeColor("backgroundColor") return ( {itemProps.category} {itemProps.title} {itemProps.date} {itemProps.value} ) } const styles = StyleSheet.create({ colorTip: { width: 20, borderTopLeftRadius: 20, borderBottomLeftRadius: 20, }, textSection: { flexDirection: "column", alignContent: "space-between", alignItems:"flex-start", paddingLeft: 10, flex:1, alignSelf: "stretch", paddingVertical: 5 }, valueSection: { justifyContent:"center", borderTopRightRadius: 20, borderBottomRightRadius: 20, } })