From 8290a1feaf4bec966be00919cbe5963d4b6e3867 Mon Sep 17 00:00:00 2001
From: Kai Reinhard <k.reinhard@micromata.de>
Date: Mon, 14 Jan 2019 16:23:37 +0000
Subject: [PATCH] Merge pull request #18 from kreinhard/master
---
borgbutler-webapp/src/components/general/IconComponents.jsx | 14 +++++++++++---
1 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/borgbutler-webapp/src/components/general/IconComponents.jsx b/borgbutler-webapp/src/components/general/IconComponents.jsx
index 1bb6474..f8707cf 100644
--- a/borgbutler-webapp/src/components/general/IconComponents.jsx
+++ b/borgbutler-webapp/src/components/general/IconComponents.jsx
@@ -1,5 +1,6 @@
import React from 'react';
import {
+ faBan,
faCaretDown,
faCaretUp,
faCheck,
@@ -8,12 +9,12 @@
faExclamationTriangle,
faInfoCircle,
faPlus,
+ faSkullCrossbones,
faSortDown,
faSortUp,
faSync,
- faTrash,
faTimes,
- faSkullCrossbones,
+ faTrash,
faUpload
} from '@fortawesome/free-solid-svg-icons'
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
@@ -24,6 +25,12 @@
);
}
+function IconBan() {
+ return (
+ <FontAwesomeIcon icon={faBan}/>
+ );
+}
+
function IconCancel() {
return (
<FontAwesomeIcon icon={faTimes}/>
@@ -80,7 +87,7 @@
function IconSpinner() {
return (
- <FontAwesomeIcon icon={faCircleNotch} spin={true} size={'3x'} color={'#aaaaaa'} />
+ <FontAwesomeIcon icon={faCircleNotch} spin={true} size={'3x'} color={'#aaaaaa'}/>
);
}
@@ -110,6 +117,7 @@
export {
IconAdd,
+ IconBan,
IconCancel,
IconCheck,
IconCollapseClose,
--
Gitblit v1.10.0