mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2024-12-25 00:11:36 +01:00
Add optional close button to ModalHeader component
This commit is contained in:
parent
5a53eca138
commit
66f83b24bd
|
@ -88,18 +88,21 @@ export function Modal({ shown, setShown, scrollable, size, children }) {
|
|||
ModalHeader.propTypes = {
|
||||
setShown: PropTypes.func.isRequired,
|
||||
title: PropTypes.string.isRequired,
|
||||
showCloseButton: PropTypes.bool,
|
||||
};
|
||||
|
||||
export function ModalHeader({ setShown, title }) {
|
||||
export function ModalHeader({ setShown, title, showCloseButton = true }) {
|
||||
return (
|
||||
<div className="modal-header">
|
||||
<h1 className="modal-title fs-5">{title}</h1>
|
||||
{showCloseButton && (
|
||||
<button
|
||||
type="button"
|
||||
className="btn-close"
|
||||
onClick={() => setShown(false)}
|
||||
aria-label={_("Close")}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user