pacificclimate/climate-explorer-frontend

View on GitHub
src/components/GeoExporter/GeoExporterButton.js

Summary

Maintainability
A
1 hr
Test Coverage
import React from "react";
import { Button, Glyphicon } from "react-bootstrap";

export default function (props) {
  return (
    <Button bsSize="small" onClick={props.open} title={props.title}>
      <Glyphicon glyph="save-file" />
    </Button>
  );
}