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/Blocks/Info.vue

47 lines
1.2 KiB

<template>
<div class="info-block" :class='direction'>
<div class="Label"><v-icon>WMi-{{icon}}</v-icon> {{ label }} </div>
<div class="Value" :class='valueClass' v-html="value"></div>
</div>
</template>
<script>
export default {
props: {
icon: { default: 'check' },
label: { default: " عنوان " },
value: { default: "" },
direction: { default: '' },
valueClass: { default: '' },
},
};
</script>
<style lang="scss" scoped>
.info-block {
text-align: right;
padding: 5px 10px 10px 10px;
margin: 0px 2px 10px;
border-right: 1px solid #dcdcdc;
}
.info-block.LTR {
text-align: left;
direction: ltr;
font-family: "BYekan-Edited",'Montserrat-Regular' !important;
border-right: 0px;
border-left: 1px solid #dcdcdc;
}
.info-block .Label {
color: #797979;
font-size: 12px;
}
.info-block .Value {
color: #000;
font-size: 16px;
}
.info-block .v-icon {
margin-top: -5px;
line-height: 1.6;
font-size: 14px;
}
</style>