import { CheckCircle2 } from 'lucide-react' import { numberToKorean } from '@/features/chat/lib/koreanNumber' interface BidSummaryProps { itemName: string itemCode: string bidPrice: number deliveryType: string isVAT: boolean } // 투찰 결과 요약 카드 (보고서식 final-summary) export function BidSummary({ itemName, itemCode, bidPrice, deliveryType, isVAT }: BidSummaryProps) { const priceStr = (bidPrice || 0).toLocaleString() return (

투찰 결과 요약

투찰 가격 {priceStr}원 ({numberToKorean(bidPrice || 0)}원) {isVAT ? 'VAT포함' : 'VAT별도'}
) } function Row({ label, value, mono }: { label: string; value: string; mono?: boolean }) { return (
{label} {value}
) }