## Task Create `src/components/StatusBadge.tsx` for transaction status display. ## Props ```ts interface StatusBadgeProps { status: 'pending' | 'success' | 'failed'; } ``` ## Styling - pending → yellow badge - success → green badge - failed → red badge ## Acceptance Criteria - [ ] Correct color per status - [ ] Renders status text
Task
Create
src/components/StatusBadge.tsxfor transaction status display.Props
Styling
Acceptance Criteria