mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
21 lines
501 B
JavaScript
21 lines
501 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
const ModalHeader = (props) => (
|
||
|
<div className="modal__header bg-light">
|
||
|
<div className="grid">
|
||
|
<div className="grid__cell pad">
|
||
|
<div className={props.className}>
|
||
|
{props.children}
|
||
|
</div>
|
||
|
</div>
|
||
|
<div className="grid--v">
|
||
|
<button className="btn btn--compact txt-lg" data-close-modal="true">
|
||
|
<i className="fa fa-times"></i>
|
||
|
</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
export default ModalHeader;
|