mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
14 lines
463 B
Vue
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>
|