2022-01-31 06:06:29 +01:00
|
|
|
import React from 'react';
|
2022-02-03 18:55:38 +01:00
|
|
|
import { IconCode, IconStack, IconGitPullRequest, IconUser, IconUsers, IconSettings, IconLayoutGrid, IconBuilding } from '@tabler/icons';
|
2022-01-31 06:06:29 +01:00
|
|
|
import StyledWrapper from './StyledWrapper';
|
|
|
|
|
|
|
|
const MenuBar = () => {
|
|
|
|
return (
|
|
|
|
<StyledWrapper className="h-full flex flex-col">
|
|
|
|
<div className="flex flex-col">
|
|
|
|
<div className="menu-item active">
|
|
|
|
<IconCode size={28} strokeWidth={1.5}/>
|
|
|
|
</div>
|
|
|
|
<div className="menu-item">
|
|
|
|
<IconStack size={28} strokeWidth={1.5}/>
|
|
|
|
</div>
|
|
|
|
<div className="menu-item">
|
|
|
|
<IconGitPullRequest size={28} strokeWidth={1.5}/>
|
|
|
|
</div>
|
|
|
|
<div className="menu-item">
|
|
|
|
<IconUsers size={28} strokeWidth={1.5}/>
|
|
|
|
</div>
|
|
|
|
<div className="menu-item">
|
|
|
|
<IconLayoutGrid size={28} strokeWidth={1.5}/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="flex flex-col flex-grow justify-end">
|
2022-02-03 18:55:38 +01:00
|
|
|
{/* Teams Icon */}
|
|
|
|
{/* <div className="menu-item">
|
|
|
|
<IconBuilding size={28} strokeWidth={1.5}/>
|
|
|
|
</div> */}
|
2022-01-31 06:06:29 +01:00
|
|
|
<div className="menu-item">
|
|
|
|
<IconUser size={28} strokeWidth={1.5}/>
|
|
|
|
</div>
|
|
|
|
<div className="menu-item">
|
|
|
|
<IconSettings size={28} strokeWidth={1.5}/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</StyledWrapper>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default MenuBar;
|