Skip to main content
Version: 2026.04.0

Claim Tracker

Detailed claims tracking with documents, timeline, and status.

Preview ยท Claim Tracker

Codeโ€‹

<div class="card" style="max-width:340px;padding:1.25rem">
<div style="display:flex;justify-content:space-between;align-items:center;margin-bottom:0.75rem">
<h3 style="margin:0;font-size:0.9rem">CLM-2048</h3>
<span class="badge accent">Submitted</span>
</div>
<progress value="25" max="100"></progress>
<p style="margin:0.5rem 0 0;font-size:0.75rem;color:var(--muted-foreground)">Step 1 of 4 โ€” Awaiting adjuster assignment</p>
</div>

Propsโ€‹

PropTypeDefaultDescription
claimClaimrequiredClaim data to display
currencystring'USD'Currency for amount display
onContactSupport() => voidโ€”Contact support callback

TypeScript interfacesโ€‹

interface Claim {
id: string;
claimNumber: string;
type: string;
status: 'submitted' | 'under_review' | 'approved' | 'processing' | 'paid' | 'denied';
amount: number;
submittedDate: string; // ISO 8601
updatedDate: string; // ISO 8601
steps: { label: string; completed: boolean; date?: string }[];
}
Version history

See the Changelog for version history and breaking changes.