src/components/common/OutLinkButton.astro 276 B raw
1
---
2
const { link, site, image } = Astro.props;
3
import { Image } from "astro:assets";
4
---
5
6
<a class="flex items-center justify-start gap-2 font-bold" href={link} target="_blank">
7
	<Image src={image} width={30} height={30} alt={`${site} logo`} />
8
	Read this post on {site}
9
</a>