Files
graff-mate-client/src/components/Sidebar.tsx
T
2025-03-20 14:26:57 +05:00

46 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import AddressBookIcon from "./icons/AddressBookIcon";
import DisplayIcon from "./icons/DisplayIcon";
import HomeIcon from "./icons/HomeIcon";
import LibIcon from "./icons/LibIcon";
import PeoplesIcon from "./icons/PeopleIcon";
import SidebarButton from "./SidebarButton";
function Sidebar() {
return (
<div className="space-y-[0.278vw]">
<SidebarButton active>
<span className="w-[1.111vw] h-[1.111vw]">
<HomeIcon />
</span>{" "}
Главная
</SidebarButton>
<SidebarButton>
<span className="w-[1.111vw] h-[1.111vw]">
<DisplayIcon />
</span>{" "}
Сеансы
</SidebarButton>
<SidebarButton>
<span className="w-[1.111vw] h-[1.111vw]">
<PeoplesIcon />
</span>{" "}
Менеджеры
</SidebarButton>
<SidebarButton>
<span className="w-[1.111vw] h-[1.111vw]">
<AddressBookIcon />
</span>{" "}
Клиенты
</SidebarButton>
<SidebarButton>
<span className="w-[1.111vw] h-[1.111vw]">
<LibIcon />
</span>{" "}
Контент
</SidebarButton>
</div>
);
}
export default Sidebar;