15 lines
277 B
Text
15 lines
277 B
Text
---
|
|
import { IconBrandMastodon } from "@tabler/icons-preact";
|
|
|
|
const { url } = Astro.props;
|
|
---
|
|
<div class="banner mastodon">
|
|
<p>
|
|
<a
|
|
class="mastodon"
|
|
href={url}
|
|
>
|
|
<IconBrandMastodon size={24} /> Discuss this post on Mastodon.
|
|
</a>
|
|
</p>
|
|
</div>
|