8 lines
169 B
TypeScript

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