Chatwoot/app/javascript/dashboard/modules/contact/components/ContactDropdownItem.vue
Nithin David Thomas 104ae8de2e
feat: Create component to merge contacts (#2412)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-07-06 13:02:37 +05:30

34 lines
546 B
Vue

<template>
<div class="option-item--user">
<thumbnail :src="thumbnail" size="24px" :username="name" />
<span class="option__title">
{{ name }}
</span>
</div>
</template>
<script>
import Thumbnail from '../../../components/widgets/Thumbnail';
export default {
components: {
Thumbnail,
},
props: {
name: {
type: String,
default: '',
},
thumbnail: {
type: String,
default: '',
},
},
};
</script>
<style lang="scss" scoped>
.option-item--user {
display: flex;
}
</style>