martials.no/src/components/links/GiteaLink.astro
Martin Berg Alstad beefabb908
Links page.
Icons using npm package instead of svgs.

Props and types.

Signed-off-by: Martin Berg Alstad <git@martials.no>
2024-10-06 13:27:18 +02:00

17 lines
347 B
Plaintext

---
import ExternalLink from "./ExternalLink.astro"
import * as m from "@/paraglide/messages"
import Gitea from "../icons/Gitea.astro"
interface Props {
href: string
}
const { href } = Astro.props
---
<div>
<ExternalLink href={href} class="flex items-center gap-1">
<Gitea class="w-6 h-6" />
{m.sourceCode()}
</ExternalLink>
</div>