/** * Feature Card component for mobile */ import React from 'react'; import { View, Text } from 'react-native'; import type { FeatureItem } from '@manacore/shared-help-types'; interface FeatureCardProps { item: FeatureItem; comingSoonLabel?: string; } export function FeatureCard({ item, comingSoonLabel = 'Coming soon' }: FeatureCardProps) { return ( {item.icon && {item.icon}} {item.title} {item.comingSoon && ( {comingSoonLabel} )} {item.description} {item.highlights && item.highlights.length > 0 && ( {item.highlights.map((highlight, index) => ( {highlight} ))} )} ); }