diff --git a/src/components/Toolbar.jsx b/src/components/Toolbar.jsx
index d20810a4..fde9b1ea 100644
--- a/src/components/Toolbar.jsx
+++ b/src/components/Toolbar.jsx
@@ -27,12 +27,28 @@ const IconText = props =>
{props.children}
+const actionStyle = {
+ display: "inline-block",
+ padding: margins[1],
+ fontSize: fontSizes[4],
+ cursor: "pointer",
+color: colors.white,
+ textDecoration: 'none',
+}
+
+const ToolbarLink = props =>
+ {props.children}
+
+
const ToolbarAction = props =>
{props.children}
@@ -60,16 +76,6 @@ export default class Toolbar extends React.Component {
}
}
- saveButton() {
- if(this.props.mapStyle.layers.length > 0) {
- return
-
- Save
-
- }
- return null
- }
-
downloadButton() {
return
@@ -128,7 +134,6 @@ export default class Toolbar extends React.Component {
Open
{this.downloadButton()}
- {this.saveButton()}
Sources
@@ -141,10 +146,10 @@ export default class Toolbar extends React.Component {
Inspect
-
+
Help
-
+
}
}