Thread viewer for Bluesky
at 2.0 10 lines 337 B view raw
1<script lang="ts"> 2 import { linkToPostThread } from '../../router.js'; 3 import { Post } from '../../models/posts.js'; 4 5 let { post, title = '' }: { post: Post, title?: string } = $props(); 6</script> 7 8<a href="{linkToPostThread(post)}" class="action" {title}> 9 <i class="fa-solid fa-arrows-split-up-and-left fa-rotate-180"></i> 10</a>