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/TitleBar/TitleBar.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/components/TitleBar') 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