mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-04 13:54:21 +01:00
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
|
import React from 'react';
|
||
|
import { IconCode, IconStack, IconGitPullRequest, IconUser, IconUsers, IconSettings, IconLayoutGrid } from '@tabler/icons';
|
||
|
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">
|
||
|
<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;
|