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>