'use client'; /** * LatestStatementsCard — Displays a list of recent downloadable statements. * * Shows "Últimas declaraciones" heading with a list of quarterly statements * (period date range + download icon) and a "Mostrar todo" link at the bottom. * * Requirements: 7.1, 7.2, 7.3 */ import Link from 'next/link'; import type { PortalStatement } from '@/lib/mock-data/types'; import { useTranslation } from '@/lib/hooks/useTranslation'; interface LatestStatementsCardProps { statements: PortalStatement[]; } export default function LatestStatementsCard({ statements }: LatestStatementsCardProps) { const t = useTranslation(); return (