aboutsummaryrefslogtreecommitdiff
path: root/src/lib/components/actions/topic.svelte
blob: 9a9cd7e9963a2ac8b37e3c567cfe7f94f77cd075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<script lang="ts">
	import type { TopicAction } from '$lib/stores/actions';
	export let actions: TopicAction;

	import { _ } from 'svelte-i18n';
</script>

<li>
	<a href="/reply/{actions.id}" title={$_('header.action.reply.title')}>
		{@html $_('header.action.reply.display')}
	</a>
</li>

<style>
	li {
		display: inline;
		margin: 5px;
	}

	a {
		text-decoration: none;
		line-height: 3em;
		display: inline-block;
	}
</style>