import { StatCard } from "./StatCard" interface SummaryStripProps { income: { value: string; budgeted: string } expenses: { value: string; budgeted: string } balance: { value: string isPositive: boolean carryoverSubtitle?: string carryoverIsNegative?: boolean } t: (key: string) => string } export function SummaryStrip({ income, expenses, balance, t, }: SummaryStripProps) { return (
) }