Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions client/src/components/Header.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
/* eslint-disable react/prop-types */
import { FaBars } from "react-icons/fa";

function Header(props) {
return (
<div className="flex py-5 justify-around bg-gradient-to-r from-indigo-500 from-10% via-sky-500 via-30% to-emerald-500 to-90% w-full items-center">
<h1 className="font-sans text-2xl antialiased font-extrabold text-white">
drawRTC
</h1>
<div className="cursor-pointer" id="options">
<FaBars size={25} onClick={props.toggleMenu} />
<span className="text-white hover:text-emerald-300 text-2xl" onClick={props.toggleMenu}>≡</span>
</div>
</div>
);
Expand Down