summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/components/shared/AccessibleImage.js
blob: e3a59573eaa8ec932b4f58a2efb7d2b11d9034af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 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";

const classnames = require("resource://devtools/client/shared/classnames.js");

const AccessibleImage = props => {
  return React.createElement("span", {
    ...props,
    className: classnames("img", props.className),
  });
};

AccessibleImage.propTypes = {
  className: PropTypes.string.isRequired,
};

export default AccessibleImage;