Spaces:
Running
Running
| <script lang="ts"> | |
| import { formatLongDuration } from '$lib/utils/format'; | |
| interface Props { | |
| seconds: number; | |
| } | |
| let { seconds }: Props = $props(); | |
| </script> | |
| <span class="font-mono text-xs text-muted-foreground tabular-nums" | |
| >{formatLongDuration(seconds)}</span | |
| > | |