UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

20 lines (19 loc) 590 B
import React from "react"; import { Claim } from "../types"; interface ClaimReviewFeedProps { profile: { name: string; avatarUrl?: string; verificationStatus: "pending" | "verified" | "rejected"; metaInfo: string[]; reviewerName?: string; verifiedAt?: string; }; claims: Claim[]; onProfileVerify?: () => void; onProfileReject?: () => void; onClaimVerify?: (id: string) => void; onClaimDecline?: (id: string) => void; } declare const ClaimReviewFeed: React.FC<ClaimReviewFeedProps>; export default ClaimReviewFeed;