import { View, Text } from '@tarojs/components' interface StatCardProps { label: string value: string | number sub?: string subColor?: string color?: string } export default function StatCard({ label, value, sub, subColor, color = '#3b82f6' }: StatCardProps) { return ( {label} {value} {sub && ( {sub} )} ) }