aboutsummaryrefslogtreecommitdiff
path: root/src/lib/components/actions/topic.svelte
blob: 1311d0680d0c72f944c23802bfb740767b59b85f (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/action';
	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>