summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/content-src/components/DiscoveryStreamComponents/DSMessage/DSMessage.jsx
blob: df9ad4f641f5001b0c91a12e82fab5c47ab7692a (plain)
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
29
30
31
32
33
34
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

import React from "react";
import { SafeAnchor } from "../SafeAnchor/SafeAnchor";
import { FluentOrText } from "content-src/components/FluentOrText/FluentOrText";

export class DSMessage extends React.PureComponent {
  render() {
    return (
      <div className="ds-message">
        <header className="title">
          {this.props.icon && (
            <div
              className="glyph"
              style={{ backgroundImage: `url(${this.props.icon})` }}
            />
          )}
          {this.props.title && (
            <span className="title-text">
              <FluentOrText message={this.props.title} />
            </span>
          )}
          {this.props.link_text && this.props.link_url && (
            <SafeAnchor className="link" url={this.props.link_url}>
              <FluentOrText message={this.props.link_text} />
            </SafeAnchor>
          )}
        </header>
      </div>
    );
  }
}