Files
martials.no/src/components/badge/Badge.astro

9 lines
116 B
Plaintext
Raw Normal View History

2024-09-25 22:20:47 +02:00
---
interface Props {
tag: string
}
const { tag } = Astro.props
---
<div class="badge badge-outline">{tag}</div>