mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
09.44.2019 3aecd74a7982ebea9ab5ac10ee8847e7268cd982
IconBan added.
1 files modified
14 ■■■■ changed files
borgbutler-webapp/src/components/general/IconComponents.jsx 14 ●●●● patch | view | raw | blame | history
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,