mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-16 04:02:15 +01:00
add break time entries and simplified time tracker ui
This commit is contained in:
14
resources/js/packages/ui/src/TimeEntry/BreakLabel.vue
Normal file
14
resources/js/packages/ui/src/TimeEntry/BreakLabel.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<script setup lang="ts">
|
||||
import { Coffee } from '@lucide/vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div
|
||||
data-testid="break_badge"
|
||||
class="flex items-center space-x-1.5 text-sm font-medium text-text-secondary">
|
||||
<Coffee class="w-4 h-4 text-text-tertiary" />
|
||||
<span>Break</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
||||
Reference in New Issue
Block a user