aboutsummaryrefslogtreecommitdiff
path: root/src/lib/List/ListTitle.svelte
blob: 2aa580d32c1825398d893ca38fd3c07def76f1e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<script lang="ts">
	export let time: number | string = '...';
	export let count: number | string = '...';
	export let anime = false;
	export let custom = '';
</script>

<summary>
	{custom.length !== 0 ? custom : anime ? 'Anime' : 'Manga & Light Novels'} [{count}]
	<small style="opacity: 50%">{time}s</small>
	<slot />
</summary>