native_convex_CRM/app/components/leadDetailHeader/leadDetailHeader.props.ts

15 lines
346 B
TypeScript

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