Use to display customer's or user's contact information.
VStack(alignment: .leading, spacing: Spacing.small) {
PBContact(type: .cell, value: "3491859988", detail: true)
PBContact(value: "5555555555", detail: true)
PBContact(type: .email, value: "email@example.com", detail: true)
PBContact(type: .work, value: "3245627482", detail: true)
PBContact(type: .ext, value: "1234", detail: true)
}