native_convex_CRM/app/components/leadDetailHeader/leadDetailHeader.props.ts
2026-07-16 18:26:01 +05:30

13 lines
278 B
TypeScript

export interface LeadDetailHeaderProps {
name: string;
company?: string;
email?: string;
phonenumber?: string;
statusName: string;
statusColor: string;
avatarColor?: string;
onStatusPress?: () => void;
onEmailPress?: () => void;
onPhonePress?: () => void;
}