library/frontend/components/Table/Thead.vue
2023-07-13 14:29:43 -07:00

13 lines
167 B
Vue

<script setup lang="ts">
</script>
<template>
<thead><slot /></thead>
</template>
<style lang="postcss">
thead {
@apply border-b border-pink-400/80;
}
</style>