File size: 711 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import { Icon, bell } from '@wordpress/icons';
import PropTypes from 'prop-types';
import { PureComponent } from 'react';
import { getLabelForStream } from './locales';
export default class extends PureComponent {
static displayName = 'NotificationSettingsFormHeader';
static propTypes = {
stream: PropTypes.string,
title: PropTypes.string,
};
renderTitle = () => {
return getLabelForStream( this.props.stream ) || this.props.title;
};
render() {
return (
<div className="notification-settings-form-header">
<div className="notification-settings-form-header__title">
{ this.props.stream === 'timeline' ? <Icon icon={ bell } /> : this.renderTitle() }
</div>
</div>
);
}
}
|