mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 16:22:16 +01:00
18 lines
548 B
Vue
18 lines
548 B
Vue
<script setup lang="ts">
|
|
import TableHeading from '@/Components/Common/TableHeading.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<TableHeading>
|
|
<div class="px-3 py-1.5 text-left text-text-tertiary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12">
|
|
Email
|
|
</div>
|
|
<div class="px-3 py-1.5 text-left text-text-tertiary">Role</div>
|
|
<div class="relative py-1.5 pl-3 pr-4 sm:pr-6 lg:pr-8 3xl:pr-12 bg-row-heading-background">
|
|
<span class="sr-only">Edit</span>
|
|
</div>
|
|
</TableHeading>
|
|
</template>
|
|
|
|
<style scoped></style>
|