mirror of
https://github.com/tabler/tabler.git
synced 2026-08-08 04:12:26 +04:00
8962710163
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
13 lines
215 B
Plaintext
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>
|