Repository URL to install this package:
|
Version:
2.8.4 ▾
|
export interface ItemProps {
identifier: string;
firstName?: string;
lastName?: string;
email?: string;
phoneNumber?: string;
}
export interface MyProfileProps {
className?: string;
headingLabel?: string;
item?: ItemProps;
hasPhoneNumber?: boolean;
}