Files
Frontend.astro/src/widgets/GitHubButton.astro
2024-02-29 02:39:06 +03:00

21 lines
479 B
Plaintext

---
interface Props {
repository: string;
}
const { repository } = Astro.props;
---
<div class="hidden mr-3 -mb-1 sm:block">
<a
class="github-button"
href={`https://github.com/${repository}`}
data-color-scheme="no-preference: dark; light: light; dark: light;"
data-icon="octicon-star"
data-size="large"
data-show-count="true"
aria-label={`Star ${repository} on GitHub`}>Star</a
>
</div>
<script async defer src="https://buttons.github.io/buttons.js"></script>