-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavigation.tsx
More file actions
35 lines (33 loc) · 853 Bytes
/
Navigation.tsx
File metadata and controls
35 lines (33 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import IconButton from '@/components/IconButton';
import MyRoomLogo from '@/svg/logo.svg';
import {
HiMagnifyingGlass,
HiQrCode,
HiWrench,
} from 'react-icons/hi2';
import Image from 'next/image';
const Navigation = () => {
return (
<>
<nav
className="flex justify-between items-center"
style={{
background: 'var(--color-primary)',
color: 'var(--color-primary-contrast)',
borderRadius: '0 0 1em 1em',
height: '4em',
}}
>
<a href="#" className="mx-7">
<MyRoomLogo />
</a>
<div id="button-section" className="mx-6">
<IconButton icon={<HiMagnifyingGlass />} />
<IconButton icon={<HiQrCode />} />
<IconButton icon={<HiWrench />} />
</div>
</nav>
</>
);
};
export default Navigation;