Files
tabler/shared/components/modals/ModalHeader.astro
T

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>