13 lines
278 B
TypeScript
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;
|
|
}
|