import { View, Text, Image } from 'react-native'; import type { ICardProps } from './Card.types'; import { styles } from './CardStyles'; import Button from '../Button/Button'; const Card = (props: ICardProps) => { return ( {props.image && ( )} {props.title} {props.hasDivider !== false && } {props.children} {props.description} {props.buttonEnabled && (