mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-21 14:47:46 -04: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;
|