This repository has been archived on 2024-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
tailwindui/vue/components/application-ui/layout/dividers/with_title.vue

11 lines
350 B
Vue
Raw Normal View History

2024-01-24 19:02:44 +08:00
<template>
<div class="relative">
<div class="absolute inset-0 flex items-center" aria-hidden="true">
<div class="w-full border-t border-gray-300" />
</div>
<div class="relative flex justify-center">
<span class="bg-white px-3 text-base font-semibold leading-6 text-gray-900">Projects</span>
</div>
</div>
</template>