@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
11 lines (10 loc) • 322 B
TypeScript
import React from "react";
import { Claim } from "../types";
interface ClaimSwipeStackProps {
claims: Claim[];
onVerify: (id: string) => void;
onDecline: (id: string) => void;
onSelect?: (id: string) => void;
}
declare const ClaimSwipeStack: React.FC<ClaimSwipeStackProps>;
export default ClaimSwipeStack;