You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
699 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="ContactInfo tw-bg-neutrals-0 tw-rounded-[20px] tw-text-base-primary tw-p-[20px] tw-h-auto">
  3. <div class="tw-text-[20px] tw-font-bold tw-mb-[19px]">
  4. {{ $t('Contact Info')}}
  5. </div>
  6. <div class="tw-text-[16px] tw-font-norma1 tw-mb-[15px]">
  7. {{ ContactInfo.FirstName }} {{ ContactInfo.LastName }}
  8. </div>
  9. <div class="tw-text-[16px] tw-font-normal tw-mb-[15px]">
  10. {{ ContactInfo.Email }}
  11. </div>
  12. <div class="tw-text-[16px] tw-font-normal">
  13. {{ ContactInfo.PhoneNo }}
  14. </div>
  15. </div>
  16. </template>
  17. <script>
  18. export default {
  19. props: {
  20. ContactInfo: {
  21. type: Object,
  22. }
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. </style>