UNPKG

@upv/react-ui-core

Version:

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

10 lines (9 loc) 281 B
import React from "react"; import { Claim } from "../types"; interface ClaimItemCardProps { claim: Claim; onVerify: (id: string) => void; onDecline: (id: string) => void; } export declare const ClaimItemCard: React.FC<ClaimItemCardProps>; export default ClaimItemCard;