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