primevue-mirror/apps/showcase/components/template/TemplateSeparator.vue

10 lines
338 B
Vue
Raw Normal View History

2024-04-08 05:20:44 +00:00
<template>
2024-06-26 09:26:19 +00:00
<div class="flex items-center w-full gap-6">
<Divider class="flex-1" />
<div class="w-12 h-12 overflow-hidden flex items-center justify-center border border-surface rounded-full bg-surface-0 dark:bg-surface-900">
2024-04-08 05:20:44 +00:00
<slot />
</div>
2024-06-26 09:26:19 +00:00
<Divider class="flex-1" />
2024-04-08 05:20:44 +00:00
</div>
</template>