"use client"; import { ArrowDownRight, ArrowUpRight } from "lucide-react"; import clsx from "clsx"; interface Transaction { id: string; type: "buy" | "sell"; symbol: string; amount: number; shares: number; date: string; } interface TransactionListProps { transactions: Transaction[]; } export function TransactionList({ transactions }: TransactionListProps) { return (