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
673 B

<template>
<div class="ContactInfo tw-bg-neutrals-0 tw-rounded-[20px] tw-text-base-primary tw-p-5 tw-h-auto">
<div class="tw-body-3 tw-font-bold tw-mb-[11px]">
{{ $t('Contact Info')}}
</div>
<div class="tw-body-3 tw-font-norma tw-mb-[10px]">
{{ ContactInfo.first_name }} {{ ContactInfo.last_name }}
</div>
<div class="tw-body-3 tw-font-normal tw-mb-[10px]">
{{ ContactInfo.email }}
</div>
<div class="tw-body-3 tw-font-normal">
{{ ContactInfo.phone }}
</div>
</div>
</template>
<script>
export default {
props: {
ContactInfo: {
type: Object,
}
}
}
</script>
<style lang="scss" scoped>
</style>