1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-08 04:12:26 +04:00
Files
tabler/docs/components/DownloadButton.astro
T

13 lines
215 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">{title}</a>
</div>