blanchon's picture
Add eslint with eslint-plugin-better-tailwindcss
8899818
<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
>