import { Ionicons } from '@expo/vector-icons'; import React from 'react'; import { Text, View } from 'react-native'; interface BentoFeatureProps { icon: keyof typeof Ionicons.glyphMap; iconBgClass?: string; iconColor?: string; label: string; value: string; } /** * Bento 特性卡片 — 小卡片展示关键指标 * surface-container-lowest 底色,xl 圆角 */ export function BentoFeature({ icon, iconBgClass = 'bg-blue-50', iconColor = '#2563eb', label, value, }: BentoFeatureProps) { return ( {label} {value} ); }