mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
15 lines
383 B
Plaintext
15 lines
383 B
Plaintext
---
|
|
interface Props {
|
|
title?: string
|
|
/** id on the title heading, referenced by the modal root's aria-labelledby */
|
|
titleId?: string
|
|
}
|
|
|
|
const { title = 'Modal title', titleId } = Astro.props
|
|
---
|
|
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id={titleId}>{title}</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|