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