'use client'; import { BarChart, CreditCard, Download, FileText } from 'lucide-react'; import { Button } from '@/shared/shadcn-ui/button'; import { Card, CardContent } from '@/shared/shadcn-ui/card'; interface CardsListProps { totalCards: number; } export const CardsList = ({ totalCards }: CardsListProps) => { return (

Топливные карты

{Array.from({ length: 4 }).map((_, index) => (

Карта #{index + 1}

**** **** **** {1000 + index}

Лимит:

{(5000 * (index + 1)).toLocaleString()} сомони

Статус:

Активна
))} {/* Show more cards button */} {totalCards > 4 && ( )}
); };