Files
solidtime/resources/js/Components/CurrentSidebarTimer.vue
2024-03-11 18:02:54 +01:00

14 lines
463 B
Vue

<script setup lang="ts">
import TimeTrackerStartStop from '@/Components/common/TimeTrackerStartStop.vue';
</script>
<template>
<div class="py-4 px-2 flex justify-between items-center">
<div>
<div class="text-muted font-extrabold text-xs">Current Timer</div>
<div class="text-white font-medium text-lg py-1">1h 23min</div>
</div>
<TimeTrackerStartStop size="base"></TimeTrackerStartStop>
</div>
</template>