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.
willaengine/resources/js/Global/components/Misc/InfoBlock-Multiple.vue

45 lines
1.2 KiB

<template>
<div class="WM-Info-Block" :class='direction'>
<div class="Label"><v-icon>fas fa-{{icon}}</v-icon> {{label}} </div>
<div class="Values" >
<v-chip v-for="(value, index) in values" :key="index" color="grey lighten-3"> {{ value }} </v-chip>
</div>
</div>
</template>
<script>
export default {
props: {
icon: { default: 'check' },
label: { default: " عنوان " },
values: { default: [] },
direction: { default: '' },
},
};
</script>
<style lang="scss" scoped>
.WM-Info-Block {
text-align: right;
padding: 5px 10px 10px 10px;
margin-bottom: 10px;
border-right: 1px solid #dcdcdc;
}
.WM-Info-Block.LTR {
text-align: left;
direction: ltr;
font-family: "BYekan-Edited",'Montserrat-Regular' !important;
border-right: 0px;
border-left: 1px solid #dcdcdc;
}
.WM-Info-Block .Label {
color: #797979;
font-size: 14px;
}
.WM-Info-Block .v-icon {
margin-top: -5px;
line-height: 1.6;
margin: 0px 3px;
font-size: 14px;
}
</style>