added ticket table row

This commit is contained in:
Mamalizz
2025-02-14 01:25:33 +03:30
parent 20475f1c51
commit 81fe641da0
@@ -0,0 +1,32 @@
<script setup lang="ts"></script>
<template>
<tr
class="odd:bg-white even:bg-gray-50 last:border-none border-b border-slate-200"
>
<td
scope="row"
class="w-3/12 px-6 py-7 font-medium whitespace-nowrap text-black"
>
Apple MacBook Pro 17
</td>
<td class="w-3/12 px-6 py-7">Silver</td>
<td class="w-3/12 px-6 py-7">Laptop</td>
<td class="w-2/12 px-6 py-7">$2999</td>
<td class="w-1/12 px-6 py-7">
<NuxtLink :to="{ name: 'profile-tickets-id', params: { id: 1 } }">
<button
class="size-10 flex-center border border-slate-200 rounded-md"
>
<Icon
name="ci:eye-open"
class="**:stroke-black"
size="20"
/>
</button>
</NuxtLink>
</td>
</tr>
</template>
<style scoped></style>