From 48b906b887e6f44cf446d77a2bf7a3bc2715a2de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Tue, 8 Oct 2019 21:24:41 +0100 Subject: [PATCH] chore(ui): use mug-hot icon for empty grid --- .../Grid/EmptyGrid/__snapshots__/index.test.js.snap | 6 +++--- ui/src/Components/Grid/EmptyGrid/index.js | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/src/Components/Grid/EmptyGrid/__snapshots__/index.test.js.snap b/ui/src/Components/Grid/EmptyGrid/__snapshots__/index.test.js.snap index 5b20e7684..9e3f2b5fa 100644 --- a/ui/src/Components/Grid/EmptyGrid/__snapshots__/index.test.js.snap +++ b/ui/src/Components/Grid/EmptyGrid/__snapshots__/index.test.js.snap @@ -6,15 +6,15 @@ exports[` matches snapshot 1`] = ` diff --git a/ui/src/Components/Grid/EmptyGrid/index.js b/ui/src/Components/Grid/EmptyGrid/index.js index 9bdb71b21..beeadd886 100644 --- a/ui/src/Components/Grid/EmptyGrid/index.js +++ b/ui/src/Components/Grid/EmptyGrid/index.js @@ -1,13 +1,13 @@ import React from "react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; -import { faCheckCircle } from "@fortawesome/free-solid-svg-icons/faCheckCircle"; +import { faMugHot } from "@fortawesome/free-solid-svg-icons/faMugHot"; import "./index.scss"; const EmptyGrid = () => (

- +

);