1
1
<script setup>
2
+ import { ArrowRightLeft , CirclePlus , House , LogOut } from ' lucide-vue-next' ;
2
3
import { computed } from ' vue' ;
3
4
import { Link , usePage } from ' @inertiajs/vue3' ;
4
5
@@ -13,20 +14,20 @@ const user = computed(() => page.props.auth.user);
13
14
<div class =" mx-auto flex-1 flex items-center justify-between max-w-3xl" >
14
15
<div class =" flex space-x-10" >
15
16
<Link class =" flex items-center text-gray-500 hover:text-black" href =" /dashboard" >
16
- <svg class = " h-3.5 " xmlns = " http://www.w3.org/2000/svg " width = " 24 " height = " 24 " viewBox = " 0 0 24 24 " fill = " none " stroke = " currentColor " stroke-width = " 2 " stroke-linecap = " round " stroke-linejoin = " round " >< path d = " M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8 " />< path d = " M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z " /></ svg >
17
- <div class =" ml-1 text-sm" >Dashboard</div >
17
+ <House :size = " 16 " / >
18
+ <div class =" ml-2 text-sm" >Dashboard</div >
18
19
</Link >
19
20
<Link class =" flex items-center text-gray-500 hover:text-black" href =" /transactions" >
20
- <svg class = " h-3.5 " xmlns = " http://www.w3.org/2000/svg " width = " 24 " height = " 24 " viewBox = " 0 0 24 24 " fill = " none " stroke = " currentColor " stroke-width = " 2 " stroke-linecap = " round " stroke-linejoin = " round " >< path d = " M8 3 4 7l4 4 " />< path d = " M4 7h16 " />< path d = " m16 21 4-4-4-4 " />< path d = " M20 17H4 " /></ svg >
21
- <div class =" ml-1 text-sm" >Transactions</div >
21
+ <ArrowRightLeft :size = " 16 " / >
22
+ <div class =" ml-2 text-sm" >Transactions</div >
22
23
</Link >
23
24
</div >
24
25
<div class =" flex space-x-5" >
25
26
<Link class =" flex items-center text-gray-500 hover:text-black" href =" /transactions/create" >
26
- <svg class = " h-4 " xmlns = " http://www.w3.org/2000/svg " width = " 24 " height = " 24 " viewBox = " 0 0 24 24 " fill = " none " stroke = " currentColor " stroke-width = " 2 " stroke-linecap = " round " stroke-linejoin = " round " >< circle cx = " 12 " cy = " 12 " r = " 10 " />< path d = " M8 12h8 " />< path d = " M12 8v8 " /></ svg >
27
+ <CirclePlus :size = " 16 " / >
27
28
</Link >
28
29
<Link class =" flex items-center text-gray-500 hover:text-black" href =" /log-out" >
29
- <svg class = " h-3.5 " xmlns = " http://www.w3.org/2000/svg " width = " 24 " height = " 24 " viewBox = " 0 0 24 24 " fill = " none " stroke = " currentColor " stroke-width = " 2 " stroke-linecap = " round " stroke-linejoin = " round " >< path d = " M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4 " />< polyline points = " 16 17 21 12 16 7 " />< line x1 = " 21 " x2 = " 9 " y1 = " 12 " y2 = " 12 " /></ svg >
30
+ <LogOut :size = " 16 " / >
30
31
</Link >
31
32
</div >
32
33
</div >
0 commit comments