15 lines
346 B
TypeScript
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;
|
|
}
|