diff --git a/src/dashboard/dashboard-button-group.js b/src/dashboard/dashboard-button-group.js index 785ac48..756a09d 100644 --- a/src/dashboard/dashboard-button-group.js +++ b/src/dashboard/dashboard-button-group.js @@ -22,6 +22,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { Button } from 'react-bootstrap'; +import Icon from "../common/icon"; class DashboardButtonGroup extends React.Component { render() { @@ -38,17 +39,20 @@ class DashboardButtonGroup extends React.Component { if (this.props.editing) { buttons.push( - , - ); } else { if (this.props.fullscreen !== true) { buttons.push( - ); @@ -56,20 +60,23 @@ class DashboardButtonGroup extends React.Component { if (this.props.paused) { buttons.push( - ); } else { buttons.push( - ); } buttons.push( - );