forked from mirrors/gecko-dev
Depends on D3482 Differential Revision: https://phabricator.services.mozilla.com/D3483 --HG-- extra : moz-landing-system : lando
30 lines
859 B
JavaScript
30 lines
859 B
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
"use strict";
|
|
|
|
const dom = require("devtools/client/shared/vendor/react-dom-factories");
|
|
|
|
const { l10n } = require("devtools/client/webconsole/utils/messages");
|
|
const messageToggleDetails = l10n.getStr("messageToggleDetails");
|
|
|
|
function CollapseButton(props) {
|
|
const {
|
|
open,
|
|
onClick,
|
|
title = messageToggleDetails,
|
|
} = props;
|
|
|
|
return dom.button({
|
|
"aria-expanded": open ? "true" : "false",
|
|
"aria-label": title,
|
|
className: "arrow collapse-button",
|
|
onClick,
|
|
title: title,
|
|
});
|
|
}
|
|
|
|
module.exports = CollapseButton;
|