Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions frontend/src/app/assets/icons/schedule.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions frontend/src/app/assets/icons/schedule.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import React from "react";

interface Props {
height: number;
width: number;
className: string;
}

const schedule = ({ height = 24, width = 24, className = "" }: Props) => {
return (
<svg
width={width}
height={height}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<mask
id="mask0_1274_4255"
style={{ maskType: "alpha" }}
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="24"
height="24"
>
<rect width="24" height="24" fill="#D9D9D9" />
</mask>
<g mask="url(#mask0_1274_4255)">
<path
d="M6 9.1731H16.5V7.6731H6V9.1731ZM6 19.6731C5.5875 19.6731 5.23438 19.5262 4.94063 19.2325C4.64688 18.9387 4.5 18.5856 4.5 18.1731V7.6731C4.5 7.2606 4.64688 6.90747 4.94063 6.61372C5.23438 6.31997 5.5875 6.1731 6 6.1731H6.75V4.6731H8.25V6.1731H14.25V4.6731H15.75V6.1731H16.5C16.9125 6.1731 17.2656 6.31997 17.5594 6.61372C17.8531 6.90747 18 7.2606 18 7.6731V11.9293C17.7625 11.8168 17.5188 11.7231 17.2687 11.6481C17.0187 11.5731 16.7625 11.5168 16.5 11.4793V10.6731H6V18.1731H10.725C10.8125 18.4481 10.9156 18.7106 11.0344 18.9606C11.1531 19.2106 11.2938 19.4481 11.4563 19.6731H6ZM13.0969 19.3262C12.3656 18.595 12 17.7106 12 16.6731C12 15.6356 12.3656 14.7512 13.0969 14.02C13.8281 13.2887 14.7125 12.9231 15.75 12.9231C16.7875 12.9231 17.6719 13.2887 18.4031 14.02C19.1344 14.7512 19.5 15.6356 19.5 16.6731C19.5 17.7106 19.1344 18.595 18.4031 19.3262C17.6719 20.0575 16.7875 20.4231 15.75 20.4231C14.7125 20.4231 13.8281 20.0575 13.0969 19.3262ZM17.0063 18.4543L17.5312 17.9293L16.125 16.5231V14.4231H15.375V16.8231L17.0063 18.4543Z"
fill="#FCF7FF"
/>
</g>
</svg>
);
};

export default schedule;
4 changes: 3 additions & 1 deletion frontend/src/app/components/Navbar/NavbarMob.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import hamburgerBorder from "@/app/assets/icons/rounded.svg";

import organizersIcon from "@/app/assets/icons/organizers.svg";
import homeIcon from "@/app/assets/icons/homeIcon.svg";
import schedulesvg from "@/app/assets/icons/schedule.svg";
import legacyIcon from "@/app/assets/icons/legacy.svg";
import judgingIcon from "@/app/assets/icons/judging-criteria.svg";
import cocIcon from "@/app/assets/icons/code-of-conduct.svg";
Expand Down Expand Up @@ -123,7 +124,8 @@ const Navbar = () => {
<SidebarButton
href="/schedule"
label="Schedule"
icon={Schedule}
icon={schedulesvg}
route="/schedule"
/>
<SidebarButton href="/legacy" label="Legacy" icon={legacyIcon} />
<SidebarButton href="/organizers" label="Organizers" icon={organizersIcon} />
Expand Down
Loading