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; redirectUrl?: string; showHomeButton?: boolean; backgroundColor?: string; } const TitleBar: React.FC = ({ title, redirectUrl, showHomeButton, backgroundColor }) => { return ( <>
{title} {showHomeButton && ( )}
); }; export default TitleBar;