Files
ostandari/components/SideBarLineTxt.vue
2024-10-21 10:22:26 +03:30

19 lines
242 B
Vue

<template>
<div class="sidebar-line-txt">
<span>{{ label }}</span>
<div class="red-line"></div>
</div>
</template>
<script>
export default {
props: {
label: {
type: String,
required: true
}
}
}
</script>