/* 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 . */
// @flow
import classnames from "classnames";
import React from "react";
import "./styles/CommandBarButton.css";
type Props = {
children: React$Element,
className: string,
pressed?: boolean
};
export function debugBtn(
onClick: ?Function,
type: string,
className: string,
tooltip: string,
disabled: boolean = false,
ariaPressed: boolean = false
) {
return (
);
}
const CommandBarButton = (props: Props) => {
const { children, className, pressed = false, ...rest } = props;
return (
);
};
export default CommandBarButton;