mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
28 lines
581 B
Vue
28 lines
581 B
Vue
<script>
|
|
export default {
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
bg: {
|
|
type: String,
|
|
default: 'bg-white dark:bg-n-solid-2',
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="relative my-4 section-separator">
|
|
<div class="absolute inset-0 flex items-center" aria-hidden="true">
|
|
<div class="w-full border-t border-n-strong" />
|
|
</div>
|
|
<div v-if="label" class="relative flex justify-center text-sm">
|
|
<span class="px-2 text-n-slate-10" :class="bg">
|
|
{{ label }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template>
|