summaryrefslogtreecommitdiff
path: root/ui/lib/components/Channel.svelte
blob: 3dc5c87a6ef102ce1af6be83446b0b1b01b067ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<script>
	export let id;
	export let name;
	export let active = false;
</script>

<li class="rounded-full" class:bg-slate-400={active}>
	<a href="/ch/{id}">
		<span class="badge bg-primary-500">#</span>
		<span class="flex-auto">{name}</span>
	</a>
</li>