You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
orario/src/components/Popup.jsx

18 lines
525 B
JavaScript

import { Icon } from './Icon.jsx'
export const Popup = ({ title, children, onClose }) => {
return (
<div class="popup-container">
<div class="popup">
<div class="header">
<div class="title">{title}</div>
<button class="flat icon" onClick={onClose}>
<Icon name="close" />
</button>
</div>
<div class="content">{children}</div>
</div>
</div>
)
}