2026-07-16 18:26:01 +05:30

7 lines
122 B
TypeScript

import { LeadItem } from '@interfaces';
export interface LeadItemCardProps {
item: LeadItem;
onPress?: () => void;
}