Files
tabler/docs/components/DownloadButton.astro
Paweł KunaandStarDev 39634cb4b9 Improve docs SEO, performance and content quality (#2841)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-08-11 14:45:31 +02:00

13 lines
241 B
Plaintext

---
interface Props {
href: string
title: string
}
const { href, title }: Props = Astro.props
---
<div class="my-6 text-center">
<a href={href} class="btn btn btn-primary" target="_blank" rel="noopener noreferrer">{title}</a>
</div>