mirror of
https://github.com/tabler/tabler.git
synced 2026-08-30 13:51:28 +04:00
13 lines
260 B
Plaintext
13 lines
260 B
Plaintext
---
|
|
interface Props {
|
|
title?: string;
|
|
}
|
|
|
|
const { title = 'Modal title' } = Astro.props;
|
|
---
|
|
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">{title}</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|