mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
36 lines
695 B
JavaScript
36 lines
695 B
JavaScript
|
import React, { Component } from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
|
||
|
export default class PageContainerHeader extends Component {
|
||
|
|
||
|
static propTypes = {
|
||
|
title: PropTypes.string,
|
||
|
subtitle: PropTypes.string,
|
||
|
onClose: PropTypes.func,
|
||
|
};
|
||
|
|
||
|
render () {
|
||
|
const { title, subtitle, onClose } = this.props
|
||
|
|
||
|
return (
|
||
|
<div className="page-container__header">
|
||
|
|
||
|
<div className="page-container__title">
|
||
|
{title}
|
||
|
</div>
|
||
|
|
||
|
<div className="page-container__subtitle">
|
||
|
{subtitle}
|
||
|
</div>
|
||
|
|
||
|
<div
|
||
|
className="page-container__header-close"
|
||
|
onClick={() => onClose()}
|
||
|
/>
|
||
|
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|