summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/components/shared/Badge.js
blob: 72571c0f58c5964f3d394b1486a8f45c7e7d77e8 (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
/* 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 "devtools/client/shared/vendor/react";
import PropTypes from "devtools/client/shared/vendor/react-prop-types";

class Badge extends React.Component {
  constructor(props) {
    super(props);
  }

  static get propTypes() {
    return {
      badgeText: PropTypes.node.isRequired,
    };
  }

  render() {
    return React.createElement(
      "span",
      {
        className: "badge text-white text-center",
      },
      this.props.badgeText
    );
  }
}

export default Badge;