native_convex_CRM/app/components/customerDetailHeader/customerDetailHeader.props.ts

13 lines
315 B
TypeScript

export interface CustomerDetailHeaderProps {
company: string;
fullname?: string | null;
active: string;
datecreated?: string | null;
email?: string | null;
phonenumber?: string | null;
website?: string | null;
onEmailPress?: () => void;
onPhonePress?: () => void;
onWebsitePress?: () => void;
}