src/components/OutLinkButton.astro 292 B raw
1
---
2
const { link, site, image } = Astro.props;
3
import { Image } from "@astrojs/image/components";
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={`Link to ${site}`} />
8
	Read this post on {site}
9
</a>