import { Party } from '@/lib/db/parties';

interface PartyElectionResultsProps {
  party: Party;
}

const PartyElectionResults = ({ party }: PartyElectionResultsProps) => {
  return (
    <div className="grid grid-cols-1 md:grid-cols-2 gap-6 pt-4 border-t border-gray-100">
      <div>
        <h4 className="text-sm font-bold text-gray-500 uppercase tracking-wider mb-2">
          পূর্ববর্তী সংসদীয় আসন
        </h4>
        <p className="font-semibold text-gray-900">{party.prevSeats}</p>
      </div>
    </div>
  );
};

export default PartyElectionResults;
