From 7b762bf7eb6e2e7c9a0f4fa44c0e42c8717bbb55 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Wed, 20 Mar 2024 11:34:02 -0700 Subject: add house icon for home button --- src/components/SubscriberTable/SubscriberTable.tsx | 2 +- src/components/TitleBar/TitleBar.tsx | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/components/SubscriberTable/SubscriberTable.tsx b/src/components/SubscriberTable/SubscriberTable.tsx index 31ca24f..a666284 100644 --- a/src/components/SubscriberTable/SubscriberTable.tsx +++ b/src/components/SubscriberTable/SubscriberTable.tsx @@ -26,7 +26,7 @@ return (

Subscriber Count

Last Updated: {timestamp}

-
+
diff --git a/src/components/TitleBar/TitleBar.tsx b/src/components/TitleBar/TitleBar.tsx index 05a0e5d..171e03a 100644 --- a/src/components/TitleBar/TitleBar.tsx +++ b/src/components/TitleBar/TitleBar.tsx @@ -1,5 +1,7 @@ import React from 'react'; import '../TitleBar/TitleBarStyle.css' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { faHouse } from '@fortawesome/free-solid-svg-icons' interface TitleBarProps { title: string; @@ -17,8 +19,8 @@ const TitleBar: React.FC = ({ title, redirectUrl, showHomeButton, {title} {showHomeButton && ( - - + + )} -- cgit v1.2.3