Merged in feature/blau_blau_blau (pull request #162)

feature/blau_blau_blau
This commit is contained in:
Maren Süwer
2019-01-28 12:47:18 +00:00
3 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,5 @@
//@flow
import React from "react";
import Button, { type ButtonProps } from "./Button";
import type {File} from "@scm-manager/ui-types";
type Props = {
displayName: string,
@@ -10,9 +8,9 @@ type Props = {
class DownloadButton extends React.Component<Props> {
render() {
const {displayName, url} = this.props;
const { displayName, url } = this.props;
return (
<a className="button is-large is-info" href={url}>
<a className="button is-large is-link" href={url}>
<span className="icon is-medium">
<i className="fas fa-arrow-circle-down" />
</span>